diff --git a/.github/assets.config.yaml b/.github/assets.config.yaml index a74b396305aa2..d5bd6110a768f 100644 --- a/.github/assets.config.yaml +++ b/.github/assets.config.yaml @@ -5,10 +5,10 @@ client_urls: binance: dex: "https://dex.binance.org" explorer: "https://explorer.binance.org" - assets_manager_api: "https://api.assets.trustwallet.com" + assets_manager_api: "https://assets.trustwallet.com/api" urls: - assets_app: "https://assets.trustwalletapp.com" + assets_app: "https://assets-cdn.trustwallet.com" logo: "https://trustwallet.com/assets/images/favicon.png" time_format: "2006-01-02T15:04:05.000000" @@ -48,6 +48,7 @@ validators_settings: allowed_files: - "assets" - "tokenlist.json" + - "chainlist.json" - "tokenlist-extended.json" - "validators" - "info" diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000000..0fe61bb2356aa --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +# 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: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index fae52b10680bb..ef400763cb0c5 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -1,20 +1,25 @@ name: Check + on: push: - branches: [ master ] + branches: + - master + pull_request: + branches: + - master workflow_dispatch: + jobs: check: runs-on: ubuntu-latest steps: - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: - go-version: 1.17 - id: go + go-version: 1.18 - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run check run: make check @@ -23,4 +28,4 @@ jobs: run: make test - name: Lint - run: make lint \ No newline at end of file + run: make lint diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000000000..925d6a1e521f1 --- /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/fix-dryrun.yml b/.github/workflows/fix-dryrun.yml index 6499b8439af7a..a42ef0fbfb59a 100644 --- a/.github/workflows/fix-dryrun.yml +++ b/.github/workflows/fix-dryrun.yml @@ -1,20 +1,19 @@ name: Fix (Dry run) on: pull_request: - branches: master + branches: [ master ] jobs: fix-dryrun: runs-on: ubuntu-latest steps: - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: - go-version: 1.17 - id: go + go-version: 1.18 - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run fix run: make fix @@ -24,6 +23,3 @@ jobs: git config core.ignorecase false git status git diff - - - name: Run check - run: make check \ No newline at end of file diff --git a/.github/workflows/fix.yml b/.github/workflows/fix.yml index 320bd25c97488..8dec678a52ed3 100644 --- a/.github/workflows/fix.yml +++ b/.github/workflows/fix.yml @@ -1,40 +1,32 @@ -name: Fixes -# Runs on: -# - on master branch of trustwallet repo: fix, checkin -# - on other branch of trustwallet repo: fix, checkin -# - on fork repos: fix-sanity only +name: Fix All + on: push: branches: - - 'master' - '*' workflow_dispatch: + jobs: fix-all: runs-on: ubuntu-latest + + if: github.repository_owner == 'trustwallet' && github.event.repository.fork == false + steps: - name: Checkout (trustwallet repo, secret token) - if: github.repository_owner == 'trustwallet' - uses: actions/checkout@v2 - with: - token: ${{ secrets.COMMIT_TOKEN }} - ref: ${{ github.ref }} - - - name: Checkout (fork repo, default token) - if: github.repository_owner != 'trustwallet' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: - token: ${{ secrets.GITHUB_TOKEN }} + # Use trust-ci fine-grained PAT to checkout and later commit the code + # Do not use for forked repos + token: ${{ secrets.CI_GITHUB_TOKEN }} ref: ${{ github.ref }} - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: - go-version: 1.17 - id: go + go-version: 1.18 - name: Run fix - if: github.repository_owner == 'trustwallet' run: make fix - name: Show fix result (diff) @@ -47,8 +39,8 @@ jobs: - name: Commit changes if: success() - uses: stefanzweifel/git-auto-commit-action@v4.1.2 + uses: stefanzweifel/git-auto-commit-action@v4.16.0 with: - commit_user_name: trust-wallet-merge-bot - commit_user_email: mergebot@trustwallet.com - commit_message: Fixes (sanity and consistency, auto) + commit_user_name: trust-ci + commit_user_email: "117647528+trust-ci@users.noreply.github.com" + commit_message: Auto fix all (sanity and consistency) diff --git a/.github/workflows/periodic-update.yml b/.github/workflows/periodic-update.yml index ab7a27eb425fa..5265f72555a32 100644 --- a/.github/workflows/periodic-update.yml +++ b/.github/workflows/periodic-update.yml @@ -8,15 +8,15 @@ jobs: periodic-auto-update: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: - token: ${{ secrets.COMMIT_TOKEN }} - ref: ${{ github.head_ref }} + token: ${{ secrets.CI_GITHUB_TOKEN }} + ref: ${{ github.head_ref }} - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: - go-version: 1.17 + go-version: 1.18 id: go - name: Run update auto @@ -33,8 +33,8 @@ jobs: - name: Commit changes if: success() - uses: stefanzweifel/git-auto-commit-action@v4.1.2 + uses: stefanzweifel/git-auto-commit-action@v4.16.0 with: - commit_user_name: trust-wallet-merge-bot - commit_user_email: mergebot@trustwallet.com - commit_message: External Updates \ No newline at end of file + commit_message: External Updates + commit_user_name: trust-ci + commit_user_email: "117647528+trust-ci@users.noreply.github.com" diff --git a/.github/workflows/pr-ci.yml b/.github/workflows/pr-ci.yml deleted file mode 100644 index 6f56abdb0482d..0000000000000 --- a/.github/workflows/pr-ci.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Pull Request CI -on: - push: - branches: - - '*' - - '!master' - pull_request: - branches: [master] - workflow_dispatch: -jobs: - pull_request_ci: - runs-on: ubuntu-latest - steps: - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.17 - id: go - - - name: Check out code - uses: actions/checkout@v2 - - - name: Run check - run: make check - - - name: Unit Test - run: make test - - - name: Lint - run: make lint \ No newline at end of file diff --git a/.github/workflows/s3_upload.yml b/.github/workflows/s3_upload.yml deleted file mode 100644 index 6b7c458a26b5f..0000000000000 --- a/.github/workflows/s3_upload.yml +++ /dev/null @@ -1,52 +0,0 @@ -name: Upload S3 -on: - push: - branches: - - master - - workflow_dispatch: - -permissions: - id-token: write - -env: - AWS_REGION: us-east-1 - -jobs: - upload-s3: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Confiugre AWS credentials - uses: aws-actions/configure-aws-credentials@v1 - with: - role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} - aws-region: ${{ env.AWS_REGION }} - - - name: Deploy to S3 - if: github.repository_owner == 'trustwallet' - shell: bash - run: aws s3 sync . s3://$AWS_S3_BUCKET --follow-symlinks --delete --exclude '*' --include 'dapps/*' --include 'blockchains/*' --size-only - 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/.github/workflows/upload-ipfs.yml b/.github/workflows/upload-ipfs.yml deleted file mode 100644 index 33f2e336a741b..0000000000000 --- a/.github/workflows/upload-ipfs.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Upload to IPFS -on: - push: - branches: - - master - workflow_dispatch: -jobs: - upload-ipfs: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - # - uses: aquiladev/ipfs-action@v0.1.5 - # id: upload - # with: - # path: ./blockchains - # service: pinata - # pinataKey: ${{ secrets.PINATA_KEY }} - # pinataSecret: ${{ secrets.PINATA_SECRET }} - # pinataPinName: blockchains - # timeout: 180000 - # verbose: false - - uses: aquiladev/ipfs-action@v0.1.5 - id: upload-dapps - with: - path: ./dapps - service: pinata - pinataKey: ${{ secrets.PINATA_KEY }} - pinataSecret: ${{ secrets.PINATA_SECRET }} - pinataPinName: dapps - verbose: false diff --git a/.github/workflows/upload-s3.yml b/.github/workflows/upload-s3.yml new file mode 100644 index 0000000000000..b12301e96aed9 --- /dev/null +++ b/.github/workflows/upload-s3.yml @@ -0,0 +1,52 @@ +name: Upload S3 +on: + push: + branches: + - master + + workflow_dispatch: + +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: aws s3 sync . s3://$AWS_S3_BUCKET --follow-symlinks --delete --exclude '*' --include 'dapps/*' --include 'blockchains/*' --size-only + 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 index ba2901bac1428..9573723cfbdc3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ **/.DS_Store -node_modules/ .idea .vscode/ *~ diff --git a/.golangci.yml b/.golangci.yml index 12e2ce5b36828..6633927eb2295 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -61,7 +61,7 @@ linters-settings: simplify: true gofumpt: # Select the Go version to target - lang-version: "1.17" + lang-version: "1.18" extra-rules: false goimports: # put imports beginning with prefix after 3rd-party packages; @@ -90,7 +90,7 @@ linters-settings: - G101 gosimple: # Select the Go version to target - go: "1.17" + go: "1.18" # https://staticcheck.io/docs/options#checks checks: [ "all" ] govet: @@ -150,12 +150,12 @@ linters-settings: severity: error staticcheck: # Select the Go version to target - go: "1.17" + go: "1.18" # https://staticcheck.io/docs/options#checks checks: [ "all" ] stylecheck: # Select the Go version to target - go: "1.17" + 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 @@ -167,7 +167,7 @@ linters-settings: http-status-code-whitelist: [ "200", "400", "404", "500" ] unused: # Select the Go version to target - go: "1.17" + 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 @@ -232,15 +232,9 @@ linters: # - goerr113 # - nestif - prealloc - - testpackage # - revive # - wsl - # don't enable: - # - interfacer - # - maligned - # - scopelint - output: format: colored-line-number print-issued-lines: true diff --git a/LICENSE b/LICENSE index 844c13634e013..3a5c05c78d69a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019-2020 Trust Wallet +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 diff --git a/Makefile b/Makefile index 02833fa64d3c3..4ebbac0063633 100644 --- a/Makefile +++ b/Makefile @@ -1,57 +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}') -# Go related variables. -GOBASE := $(shell pwd) -GOBIN := $(GOBASE)/bin +# 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" - GOBIN=$(GOBIN) go test -cover -race -coverprofile=coverage.txt -covermode=atomic -v ./... + go test -cover -race -coverprofile=coverage.txt -covermode=atomic -v ./... fmt: @echo " > Format all go files" - GOBIN=$(GOBIN) gofmt -w ${GOFMT_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 + 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: - go run cmd/main.go check - -fix: - go run cmd/main.go fix - -update-auto: - go run cmd/main.go update-auto +check: build + bin/assets check -update-manual: - go run cmd/main.go update-manual +fix: build + bin/assets fix +update-auto: build + bin/assets update-auto # Helper commands. -add-token: - go run cmd/main.go add-token $(asset_id) +add-token: build + bin/assets add-token $(asset_id) -add-tokenlist: - go run cmd/main.go add-tokenlist $(asset_id) +add-tokenlist: build + bin/assets add-tokenlist $(asset_id) -add-tokenlist-extended: - go run cmd/main.go add-tokenlist-extended $(asset_id) +add-tokenlist-extended: build + bin/assets add-tokenlist-extended $(asset_id) diff --git a/README.md b/README.md index 44dce55054eb3..f7f55372f43b5 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Such a large collection can be maintained only through a community effort, so _f 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 ). +(for limit details see ). ### Assets App @@ -28,7 +28,7 @@ The [Assets web app](https://assets.trustwallet.com) can be used for most new to ### Quick starter Details of the repository structure and contribution guidelines are listed on the -[Developers site](https://developer.trustwallet.com/assets/new-asset). +[Developers site](https://developer.trustwallet.com/listing-new-assets/new-asset). Here is a quick starter summary for the most common use case. @@ -36,9 +36,9 @@ Here is a quick starter summary for the most common use case. For details, see the [Developers site](https://developer.trustwallet.com): -- [Contribution guidelines](https://developer.trustwallet.com/assets/repository_details) +- [Contribution guidelines](https://developer.trustwallet.com/listing-new-assets/repository_details) -- [FAQ](https://developer.trustwallet.com/assets/faq) +- [FAQ](https://developer.trustwallet.com/listing-new-assets/faq) ## Scripts @@ -75,3 +75,7 @@ Trust Wallet team will reject projects that are deemed as scam or fraudulent aft 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/blockchains/acala/info/info.json b/blockchains/acala/info/info.json new file mode 100644 index 0000000000000..91f5ed7d93bf0 --- /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": "twitter", + "url": "https://twitter.com/AcalaNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/acala/info/logo.png b/blockchains/acala/info/logo.png new file mode 100644 index 0000000000000..7b31d8445c133 Binary files /dev/null and b/blockchains/acala/info/logo.png differ diff --git a/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/info.json b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/info.json new file mode 100644 index 0000000000000..92e3febba90a5 --- /dev/null +++ b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/info.json @@ -0,0 +1,36 @@ +{ + "name": "USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://blockscout.acala.network/token/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe", + "type": "ACALAEVM", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/logo.png b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/logo.png new file mode 100644 index 0000000000000..793e015fc9308 Binary files /dev/null and b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/logo.png differ diff --git a/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/info.json b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/info.json new file mode 100644 index 0000000000000..07cdf7a020244 --- /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": "twitter", + "url": "https://twitter.com/MakerDAO" + }, + { + "name": "reddit", + "url": "https://reddit.com/MakerDAO/" + }, + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-collateral-dai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/logo.png b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/logo.png new file mode 100644 index 0000000000000..b24cc9643d919 Binary files /dev/null and b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/logo.png differ diff --git a/blockchains/acalaevm/info/info.json b/blockchains/acalaevm/info/info.json new file mode 100644 index 0000000000000..e9452c29cc30f --- /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": "twitter", + "url": "https://twitter.com/AcalaNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/acalaevm/info/logo.png b/blockchains/acalaevm/info/logo.png new file mode 100644 index 0000000000000..7b31d8445c133 Binary files /dev/null and b/blockchains/acalaevm/info/logo.png differ diff --git a/blockchains/agoric/info/info.json b/blockchains/agoric/info/info.json new file mode 100644 index 0000000000000..23bb06049441c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6d017640305e3 Binary files /dev/null and b/blockchains/agoric/info/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2/logo.png new file mode 100644 index 0000000000000..36544b6fa2621 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f/logo.png new file mode 100644 index 0000000000000..ab2b2edab45eb Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj/logo.png new file mode 100644 index 0000000000000..036eb403bfbe3 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5/logo.png differ diff --git a/blockchains/agoric/validators/list.json b/blockchains/agoric/validators/list.json new file mode 100644 index 0000000000000..4e2deb519fee6 --- /dev/null +++ b/blockchains/agoric/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "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": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "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" + } +] diff --git a/blockchains/akash/info/info.json b/blockchains/akash/info/info.json new file mode 100644 index 0000000000000..6163977836db6 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..8c96414aa1f5f Binary files /dev/null and b/blockchains/akash/info/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper105nkdqgkj3hpgqss0elcec2t72ujg09w5mzhm8/logo.png b/blockchains/akash/validators/assets/akashvaloper105nkdqgkj3hpgqss0elcec2t72ujg09w5mzhm8/logo.png new file mode 100644 index 0000000000000..d0388df6a68a4 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper105nkdqgkj3hpgqss0elcec2t72ujg09w5mzhm8/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy/logo.png b/blockchains/akash/validators/assets/akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh/logo.png b/blockchains/akash/validators/assets/akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073/logo.png b/blockchains/akash/validators/assets/akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073/logo.png new file mode 100644 index 0000000000000..8a7efc94d8c28 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8/logo.png b/blockchains/akash/validators/assets/akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz/logo.png b/blockchains/akash/validators/assets/akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d/logo.png b/blockchains/akash/validators/assets/akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d/logo.png new file mode 100644 index 0000000000000..f9f1f5be4354b Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs/logo.png b/blockchains/akash/validators/assets/akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs/logo.png new file mode 100644 index 0000000000000..48eaf9adeb96e Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g/logo.png b/blockchains/akash/validators/assets/akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g/logo.png differ diff --git a/blockchains/akash/validators/list.json b/blockchains/akash/validators/list.json new file mode 100644 index 0000000000000..5845fd820a4c4 --- /dev/null +++ b/blockchains/akash/validators/list.json @@ -0,0 +1,56 @@ +[ + { + "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.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/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": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "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" + } +] diff --git a/blockchains/algorand/assets/137594422/info.json b/blockchains/algorand/assets/137594422/info.json new file mode 100644 index 0000000000000..c599dcaffadd2 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/algorand/assets/137594422/logo.png b/blockchains/algorand/assets/137594422/logo.png new file mode 100644 index 0000000000000..f2e903223fd1a 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 0000000000000..a45a0c68e70ae --- /dev/null +++ b/blockchains/algorand/assets/312769/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tether USD", + "website": "https://tether.to", + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "explorer": "https://algoexplorer.io/asset/312769", + "type": "ASA", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "312769", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tether/" + } + ] +} diff --git a/blockchains/algorand/assets/312769/logo.png b/blockchains/algorand/assets/312769/logo.png new file mode 100644 index 0000000000000..b873452b2a329 Binary files /dev/null and b/blockchains/algorand/assets/312769/logo.png differ diff --git a/blockchains/algorand/assets/31566704/info.json b/blockchains/algorand/assets/31566704/info.json new file mode 100644 index 0000000000000..d563abd1f7389 --- /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 0000000000000..b74fafb2d2b4f Binary files /dev/null and b/blockchains/algorand/assets/31566704/logo.png differ diff --git a/blockchains/algorand/info/info.json b/blockchains/algorand/info/info.json index 1edf20dc3d412..b1d614799b67e 100644 --- a/blockchains/algorand/info/info.json +++ b/blockchains/algorand/info/info.json @@ -8,9 +8,6 @@ "type": "coin", "decimals": 6, "status": "active", - "tags": [ - "staking-native" - ], "links": [ { "name": "github", 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 0000000000000..4e3815b6d5bb3 --- /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 0000000000000..adea4a50a9114 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 0000000000000..f5d56c9c886fb --- /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": "twitter", + "url": "https://twitter.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/" + } + ] +} 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 0000000000000..685fbc4249857 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 0000000000000..8e48ff58d7670 --- /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 0000000000000..cf3a1c5b091e2 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 0000000000000..c321fa5bf028c --- /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 0000000000000..c6d7d72c804fe Binary files /dev/null and b/blockchains/aptos/assets/0x2305dd96edd8debb5a2049be54379c74e61b37ceb54a49bd7dee4726d2a6b689::coin::T/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 0000000000000..c81787b62c789 --- /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 0000000000000..d9044fff9c609 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 0000000000000..c1d855dffe01c --- /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 0000000000000..91ab83369e705 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 0000000000000..e1a3a0edbf905 --- /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 0000000000000..abe226741a78f 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 0000000000000..e6429365ebb7e --- /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 0000000000000..9f6dfe023955a 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 0000000000000..ad5395ab95c8c --- /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 0000000000000..91446ba902d59 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 0000000000000..2e9657486a8af --- /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 0000000000000..9e02c444212c1 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 0000000000000..d9e9e505d723e --- /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 0000000000000..ca1717921997f 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 0000000000000..5c7a35c310d57 --- /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 0000000000000..6157eefc14b92 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 0000000000000..65779face308b --- /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 0000000000000..7599e8274741f 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 0000000000000..365dca35b6ad8 --- /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 0000000000000..55226a4d06a43 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 0000000000000..dcdc96cc6a07c --- /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 0000000000000..cafce215d5eeb 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 0000000000000..0c0082d0963f3 --- /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 0000000000000..aa5b21788ce31 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 0000000000000..7c8a9a5277c77 --- /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 0000000000000..e6bb8fa72e80d 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 0000000000000..815172a3521a2 --- /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 0000000000000..668bc9febf2ef 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 0000000000000..9bef8c152f31c --- /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 0000000000000..9eaca0cea3a31 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 0000000000000..d539f8e87eef0 --- /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 0000000000000..3612b539fa6be 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 0000000000000..15f9a59cd4770 --- /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 0000000000000..e30d0e1a0b2a3 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 0000000000000..2dc4b1cd3cf20 --- /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 0000000000000..8a4e7fe830731 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 0000000000000..9a7084166a41e --- /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 0000000000000..ac3593681ccd9 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 0000000000000..1bc9774dcc857 --- /dev/null +++ b/blockchains/aptos/assets/0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T/info.json @@ -0,0 +1,10 @@ +{ + "name": "Tether USD (Wormhole)", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T", + "tags": [ + "stablecoin" + ] + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T/logo.png b/blockchains/aptos/assets/0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T/logo.png new file mode 100644 index 0000000000000..41943ac56e6ce Binary files /dev/null and b/blockchains/aptos/assets/0xa2eda21a58856fda86451436513b867c97eecb4ba099da5775520e0f7492e852::coin::T/logo.png differ 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 0000000000000..2672c326bc3f2 --- /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 0000000000000..e707990373bbc 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 0000000000000..7b3b13b6cc535 --- /dev/null +++ b/blockchains/aptos/assets/0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T/info.json @@ -0,0 +1,10 @@ + { + "name": "Tether USD", + "symbol": "USDTbs", + "decimals": 8, + "status": "active", + "id": "0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T", + "tags": [ + "stablecoin" + ] + } \ No newline at end of file diff --git a/blockchains/aptos/assets/0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T/logo.png b/blockchains/aptos/assets/0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T/logo.png new file mode 100644 index 0000000000000..0c62f4bc77f63 Binary files /dev/null and b/blockchains/aptos/assets/0xacd014e8bdf395fa8497b6d585b164547a9d45269377bdf67c96c541b7fec9ed::coin::T/logo.png differ 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 0000000000000..3446b9a8ce730 --- /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 0000000000000..4480eb3d6dda1 Binary files /dev/null and b/blockchains/aptos/assets/0xae478ff7d83ed072dbc5e264250e67ef58f57c99d89b447efd8a0a2e8b2be76e::coin::T/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 0000000000000..60f45c441cb48 --- /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 0000000000000..a84882299105c 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 0000000000000..68eb2c8cfd486 --- /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 0000000000000..ca9eb708cac0b 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 0000000000000..33ea7c71f2735 --- /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 0000000000000..e19aa6eb1d94a 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 0000000000000..fa659a70492db --- /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 0000000000000..ee48d107ad1ba 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 0000000000000..a15f734caa1f4 --- /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 0000000000000..b1cf2ef5c081d 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 0000000000000..4ec3dfcbbe1b6 --- /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 0000000000000..7b98f95b75ffb 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 0000000000000..f60e2616b9438 --- /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 0000000000000..dceed0bf75ff9 Binary files /dev/null and b/blockchains/aptos/assets/0xdd89c0e695df0692205912fb69fc290418bed0dbe6e4573d744a6d5e6bab6c13::coin::T/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 0000000000000..494927c552a51 --- /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 0000000000000..0a00d263aed4a 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 0000000000000..301ef63d83f21 --- /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 0000000000000..ddc7b0039090a 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 0000000000000..0e4e8177ba5a6 --- /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 0000000000000..50620647ad665 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 0000000000000..342a379bbb2e2 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d57a7212f3232 Binary files /dev/null and b/blockchains/aptos/info/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 0000000000000..b1fde1e950c8e 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 0000000000000..51db7ed272492 --- /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/0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8/info.json b/blockchains/arbitrum/assets/0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8/info.json new file mode 100644 index 0000000000000..229912464ca23 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..56f9d83abe605 Binary files /dev/null and b/blockchains/arbitrum/assets/0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8/logo.png differ diff --git a/blockchains/arbitrum/assets/0x080F6AEd32Fc474DD5717105Dba5ea57268F46eb/info.json b/blockchains/arbitrum/assets/0x080F6AEd32Fc474DD5717105Dba5ea57268F46eb/info.json new file mode 100644 index 0000000000000..49280da9e8c3e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..577673c43c6a4 Binary files /dev/null and b/blockchains/arbitrum/assets/0x080F6AEd32Fc474DD5717105Dba5ea57268F46eb/logo.png differ diff --git a/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/info.json b/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/info.json new file mode 100644 index 0000000000000..c7e633492b636 --- /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": "twitter", + "url": "https://twitter.com/arbdogeai" + }, + { + "name": "medium", + "url": "https://medium.com/@ArbDogeAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arbdoge-ai/" + }, + { + "name": "whitepaper", + "url": "https://docs.arbdoge.ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/logo.png b/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/logo.png new file mode 100644 index 0000000000000..ef4c4544cecf3 Binary files /dev/null and b/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/logo.png differ diff --git a/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/info.json b/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/info.json new file mode 100644 index 0000000000000..cf65fad948924 --- /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": "twitter", + "url": "https://twitter.com/pendle_fi" + }, + { + "name": "docs", + "url": "https://docs.pendle.finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pendle" + }, + { + "name": "discord", + "url": "https://discord.com/invite/9x9VUngNZD" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/logo.png b/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/logo.png new file mode 100644 index 0000000000000..f938a10800ec7 Binary files /dev/null and b/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/logo.png differ diff --git a/blockchains/arbitrum/assets/0x18c11FD286C5EC11c3b683Caa813B77f5163A122/info.json b/blockchains/arbitrum/assets/0x18c11FD286C5EC11c3b683Caa813B77f5163A122/info.json new file mode 100644 index 0000000000000..3ec56594c2b03 --- /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": "twitter", + "url": "https://twitter.com/GainsNetwork_io" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/arbitrum/assets/0x18c11FD286C5EC11c3b683Caa813B77f5163A122/logo.png b/blockchains/arbitrum/assets/0x18c11FD286C5EC11c3b683Caa813B77f5163A122/logo.png new file mode 100644 index 0000000000000..a7d79ca849d34 Binary files /dev/null and b/blockchains/arbitrum/assets/0x18c11FD286C5EC11c3b683Caa813B77f5163A122/logo.png differ diff --git a/blockchains/arbitrum/assets/0x23A941036Ae778Ac51Ab04CEa08Ed6e2FE103614/info.json b/blockchains/arbitrum/assets/0x23A941036Ae778Ac51Ab04CEa08Ed6e2FE103614/info.json new file mode 100644 index 0000000000000..009224dd617d1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..46cb3c86dc2ea --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/arbitrum/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/logo.png b/blockchains/arbitrum/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/logo.png new file mode 100644 index 0000000000000..6c156aba62660 Binary files /dev/null and b/blockchains/arbitrum/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3082CC23568eA640225c2467653dB90e9250AaA0/info.json b/blockchains/arbitrum/assets/0x3082CC23568eA640225c2467653dB90e9250AaA0/info.json new file mode 100644 index 0000000000000..5ea87a083fc1f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..61eec0683aa20 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3082CC23568eA640225c2467653dB90e9250AaA0/logo.png differ diff --git a/blockchains/arbitrum/assets/0x319f865b287fCC10b30d8cE6144e8b6D1b476999/info.json b/blockchains/arbitrum/assets/0x319f865b287fCC10b30d8cE6144e8b6D1b476999/info.json new file mode 100644 index 0000000000000..a23b425d513d8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..41911a040f5c3 Binary files /dev/null and b/blockchains/arbitrum/assets/0x319f865b287fCC10b30d8cE6144e8b6D1b476999/logo.png differ diff --git a/blockchains/arbitrum/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json b/blockchains/arbitrum/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json new file mode 100644 index 0000000000000..f39634b4bf18f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7cf47068565d6 Binary files /dev/null and b/blockchains/arbitrum/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/logo.png differ diff --git a/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/info.json b/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/info.json new file mode 100644 index 0000000000000..778922482e0b0 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/logo.png b/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/logo.png new file mode 100644 index 0000000000000..f20a797db172b Binary files /dev/null and b/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/logo.png differ diff --git a/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/info.json b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/info.json new file mode 100644 index 0000000000000..c445b4bbfe9c9 --- /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": "twitter", + "url": "https://twitter.com/Treasure_NFT" + }, + { + "name": "medium", + "url": "https://medium.com/@TreasureNFT" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/magic-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/magic/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/logo.png b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/logo.png new file mode 100644 index 0000000000000..16844a459a5aa Binary files /dev/null and b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6694340fc020c5E6B96567843da2df01b2CE1eb6/info.json b/blockchains/arbitrum/assets/0x6694340fc020c5E6B96567843da2df01b2CE1eb6/info.json new file mode 100644 index 0000000000000..0638d130b6f83 --- /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 0000000000000..49d61fc769163 Binary files /dev/null and b/blockchains/arbitrum/assets/0x6694340fc020c5E6B96567843da2df01b2CE1eb6/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6C2C06790b3E3E3c38e12Ee22F8183b37a13EE55/info.json b/blockchains/arbitrum/assets/0x6C2C06790b3E3E3c38e12Ee22F8183b37a13EE55/info.json new file mode 100644 index 0000000000000..b4522687dc38d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..780df35dcd365 Binary files /dev/null and b/blockchains/arbitrum/assets/0x6C2C06790b3E3E3c38e12Ee22F8183b37a13EE55/logo.png differ diff --git a/blockchains/arbitrum/assets/0x82e3A8F066a6989666b031d916c43672085b1582/info.json b/blockchains/arbitrum/assets/0x82e3A8F066a6989666b031d916c43672085b1582/info.json new file mode 100644 index 0000000000000..793182f27e0d4 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..eaf0948485b80 Binary files /dev/null and b/blockchains/arbitrum/assets/0x82e3A8F066a6989666b031d916c43672085b1582/logo.png differ diff --git a/blockchains/arbitrum/assets/0x912CE59144191C1204E64559FE8253a0e49E6548/info.json b/blockchains/arbitrum/assets/0x912CE59144191C1204E64559FE8253a0e49E6548/info.json new file mode 100644 index 0000000000000..617b4b409e3b3 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..5402ed6bc17ad Binary files /dev/null and b/blockchains/arbitrum/assets/0x912CE59144191C1204E64559FE8253a0e49E6548/logo.png differ diff --git a/blockchains/arbitrum/assets/0x9623063377AD1B27544C965cCd7342f7EA7e88C7/info.json b/blockchains/arbitrum/assets/0x9623063377AD1B27544C965cCd7342f7EA7e88C7/info.json new file mode 100644 index 0000000000000..6c664bdddb9a0 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f4d96d2e6409a Binary files /dev/null and b/blockchains/arbitrum/assets/0x9623063377AD1B27544C965cCd7342f7EA7e88C7/logo.png differ diff --git a/blockchains/arbitrum/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json b/blockchains/arbitrum/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json new file mode 100644 index 0000000000000..bc6ffe16cfbbd --- /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": "twitter", + "url": "https://twitter.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 0000000000000..9d7b0435acaac Binary files /dev/null and b/blockchains/arbitrum/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/logo.png differ diff --git a/blockchains/arbitrum/assets/0xBfa641051Ba0a0Ad1b0AcF549a89536A0D76472E/info.json b/blockchains/arbitrum/assets/0xBfa641051Ba0a0Ad1b0AcF549a89536A0D76472E/info.json new file mode 100644 index 0000000000000..c5e9ba018f223 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..36827cd6d0613 Binary files /dev/null and b/blockchains/arbitrum/assets/0xBfa641051Ba0a0Ad1b0AcF549a89536A0D76472E/logo.png differ diff --git a/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 0000000000000..9b9b1ec7302ad --- /dev/null +++ b/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,69 @@ +{ + "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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json b/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json index 8addd958f2f3f..28eecb3f4ea3f 100644 --- a/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json +++ b/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json @@ -1,8 +1,8 @@ { - "name": "USD Coin (Arb1)", + "name": "Bridged USDC", "type": "ARBITRUM", - "symbol": "USDC", - "decimals": 18, + "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", diff --git a/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/info.json b/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/info.json new file mode 100644 index 0000000000000..7fa09f2897802 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..e3cd7aebe3a13 Binary files /dev/null and b/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/logo.png differ diff --git a/blockchains/arbitrum/assets/0xaE6aab43C4f3E0cea4Ab83752C278f8dEbabA689/info.json b/blockchains/arbitrum/assets/0xaE6aab43C4f3E0cea4Ab83752C278f8dEbabA689/info.json new file mode 100644 index 0000000000000..a2ed700f4c4e9 --- /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 0000000000000..36fcfbc499e68 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 0000000000000..b992070907bb5 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..855db6d966292 Binary files /dev/null and b/blockchains/arbitrum/assets/0xaa54e84A3e6e5A80288d2C2f8e36eA5cA3A3Ca30/logo.png differ diff --git a/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/info.json b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/info.json new file mode 100644 index 0000000000000..c2de58649d1e0 --- /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 0000000000000..a135c887a8614 Binary files /dev/null and b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/logo.png differ diff --git a/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json new file mode 100644 index 0000000000000..aa48af4b0db5a --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png b/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png new file mode 100644 index 0000000000000..a3b20074ec34d 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 0000000000000..add0e210f82bf --- /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": "twitter", + "url": "https://twitter.com/sushiswap" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sushi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/logo.png b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/logo.png new file mode 100644 index 0000000000000..37523b87fe8a7 Binary files /dev/null and b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/logo.png differ diff --git a/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/info.json b/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/info.json new file mode 100644 index 0000000000000..9caf25d228d13 --- /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": "twitter", + "url": "https://twitter.com/WeAreTellor" + }, + { + "name": "telegram", + "url": "https://t.me/tellor" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tellor/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tellor/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/logo.png b/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/logo.png new file mode 100644 index 0000000000000..f1295da4329a3 Binary files /dev/null and b/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/logo.png differ diff --git a/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/info.json b/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/info.json new file mode 100644 index 0000000000000..0b39d1bc370aa --- /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": "twitter", + "url": "https://twitter.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 0000000000000..ab55f5e21fae2 Binary files /dev/null and b/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/logo.png differ diff --git a/blockchains/arbitrum/info/info.json b/blockchains/arbitrum/info/info.json index 67252daafd537..c76d729d474c9 100644 --- a/blockchains/arbitrum/info/info.json +++ b/blockchains/arbitrum/info/info.json @@ -5,9 +5,14 @@ "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": "twitter", diff --git a/blockchains/arbitrum/tokenlist-extended.json b/blockchains/arbitrum/tokenlist-extended.json index dc06d86faef25..50e2de740408e 100644 --- a/blockchains/arbitrum/tokenlist-extended.json +++ b/blockchains/arbitrum/tokenlist-extended.json @@ -3,51 +3,6 @@ "logoURI": "https://trustwallet.com/assets/images/favicon.png", "timestamp": "2022-01-30T13:48:32.500787", "tokens": [ - { - "asset": "c10042221_t0x82aF49447D8a07e3bd95BD0d56f35241523fBab1", - "type": "ARBITRUM", - "address": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1", - "name": "Wrapped Ether", - "symbol": "WETH", - "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/arbitrum/assets/0x82af49447d8a07e3bd95bd0d56f35241523fbab1/logo.png" - }, - { - "asset": "c10042221_t0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a", - "type": "ARBITRUM", - "address": "0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a", - "name": "GMX", - "symbol": "GMX", - "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/arbitrum/assets/0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a/logo.png" - }, - { - "asset": "c10042221_t0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8", - "type": "ARBITRUM", - "address": "0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8", - "name": "USD Coin (Arb1)", - "symbol": "USDC", - "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/arbitrum/assets/0xff970a61a04b1ca14834a43f5de4533ebddb5cc8/logo.png" - }, - { - "asset": "c10042221_t0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", - "type": "ARBITRUM", - "address": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", - "name": "Tether USD", - "symbol": "USDT", - "decimals": 6, - "logoURI": "https://assets.trustwalletapp.com/blockchains/arbitrum/assets/0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9/logo.png" - }, - { - "asset": "c10042221_t0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1", - "type": "ARBITRUM", - "address": "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1", - "name": "Dai Stablecoin", - "symbol": "DAI", - "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/arbitrum/assets/0xda10009cbd5d07dd0cecc66161fc93d7c9000da1/logo.png" - } ], "version": { "major": 6, diff --git a/blockchains/arbitrum/tokenlist.json b/blockchains/arbitrum/tokenlist.json index 21b5a56a8ab76..4b0809ad13cc2 100644 --- a/blockchains/arbitrum/tokenlist.json +++ b/blockchains/arbitrum/tokenlist.json @@ -3,10 +3,70 @@ "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 } -} \ No newline at end of file +} diff --git a/blockchains/arbitrumgoerli/info/info.json b/blockchains/arbitrumgoerli/info/info.json new file mode 100644 index 0000000000000..3daf8322dd933 --- /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 0000000000000..ad463789d50b7 Binary files /dev/null and b/blockchains/arbitrumgoerli/info/logo.png differ diff --git a/blockchains/aurora/assets/0x7faA64Faf54750a2E3eE621166635fEAF406Ab22/info.json b/blockchains/aurora/assets/0x7faA64Faf54750a2E3eE621166635fEAF406Ab22/info.json new file mode 100644 index 0000000000000..813ea28f0ad6f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..12008356b2c0b 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 0000000000000..e77b553601a89 --- /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": "twitter", + "url": "https://twitter.com/auroraisnear" + }, + { + "name": "github", + "url": "https://github.com/aurora-is-near" + }, + { + "name": "telegram", + "url": "https://t.me/auroraisnear" + } + ], + "tags": [ + "governance" + ] +} diff --git a/blockchains/aurora/assets/0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79/logo.png b/blockchains/aurora/assets/0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79/logo.png new file mode 100644 index 0000000000000..21df1e53ca4fe 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 0000000000000..60766601bb90c --- /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": "twitter", + "url": "https://twitter.com/auroraisnear" + } + ] +} diff --git a/blockchains/aurora/info/logo.png b/blockchains/aurora/info/logo.png new file mode 100644 index 0000000000000..21df1e53ca4fe Binary files /dev/null and b/blockchains/aurora/info/logo.png differ diff --git a/blockchains/avalanchec/assets/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665/info.json b/blockchains/avalanchec/assets/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665/info.json new file mode 100644 index 0000000000000..d60f394bdfa4c --- /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 0000000000000..2bb8d92da94ce 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 0000000000000..74a6bad960762 --- /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 0000000000000..c9ca83078881a Binary files /dev/null and b/blockchains/avalanchec/assets/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA/logo.png differ diff --git a/blockchains/avalanchec/assets/0x12AF5C1a232675f62F405b5812A80e7a6F75D746/info.json b/blockchains/avalanchec/assets/0x12AF5C1a232675f62F405b5812A80e7a6F75D746/info.json new file mode 100644 index 0000000000000..e25da56e9475f --- /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 0000000000000..32179bc3c3aad Binary files /dev/null and b/blockchains/avalanchec/assets/0x12AF5C1a232675f62F405b5812A80e7a6F75D746/logo.png differ diff --git a/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json b/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json new file mode 100644 index 0000000000000..9b77240f671c4 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..76d02e370b6d6 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 0000000000000..c564e984177c7 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..0ae677cd2bac8 Binary files /dev/null and b/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/logo.png differ diff --git a/blockchains/avalanchec/assets/0x1f1E7c893855525b303f99bDF5c3c05Be09ca251/info.json b/blockchains/avalanchec/assets/0x1f1E7c893855525b303f99bDF5c3c05Be09ca251/info.json new file mode 100644 index 0000000000000..2304efc483579 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..577673c43c6a4 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 0000000000000..b0ec09919bd1f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/avalanchec/assets/0x20CF1b6E9d856321ed4686877CF4538F2C84B4dE/logo.png b/blockchains/avalanchec/assets/0x20CF1b6E9d856321ed4686877CF4538F2C84B4dE/logo.png new file mode 100644 index 0000000000000..1660741aaf752 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 0000000000000..b60199258d51a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..ea505242ce276 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 0000000000000..c846bc7ecfc70 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..5072baa5035ed 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 0000000000000..e9c494b1582fc --- /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": "twitter", + "url": "https://twitter.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 0000000000000..4272c382f1522 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 0000000000000..20dbc08d76ed5 --- /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.fi/", + "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": "twitter", + "url": "https://twitter.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 0000000000000..b820f250c2d3b 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 0000000000000..ad47979fbe7a1 --- /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 0000000000000..f983849d90c4f Binary files /dev/null and b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png differ diff --git a/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json b/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json new file mode 100644 index 0000000000000..ee48d79ff92b5 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/logo.png b/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/logo.png new file mode 100644 index 0000000000000..41058cf5fbdbd 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 0000000000000..104ff3b538945 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a9684ccf91ebd 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 0000000000000..f7eadc6c1d967 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..b1b9c8c095e79 Binary files /dev/null and b/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/logo.png differ diff --git a/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/info.json b/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/info.json new file mode 100644 index 0000000000000..556cfa4f24131 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a9961dac9e977 Binary files /dev/null and b/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/logo.png differ diff --git a/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/info.json b/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/info.json new file mode 100644 index 0000000000000..24162128e4dce --- /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": "twitter", + "url": "https://twitter.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 0000000000000..743d6a15fd677 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 0000000000000..aac2e77689e70 --- /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": "twitter", + "url": "https://twitter.com/fantasygoldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantasygold/" + } + ] +} diff --git a/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png new file mode 100644 index 0000000000000..6876a666683e6 Binary files /dev/null and b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png differ diff --git a/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/info.json b/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/info.json new file mode 100644 index 0000000000000..058c2d2faeb37 --- /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 0000000000000..24a702d4390f2 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 0000000000000..e312279f61da6 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6c156aba62660 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 0000000000000..a322337f4ad50 --- /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 0000000000000..6aa8ad7873a9a 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 0000000000000..6a8255b608ca6 --- /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 0000000000000..4e3f74d233943 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 0000000000000..a30e178f2eba7 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a84ab55ddf7bf --- /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 0000000000000..ab55f5e21fae2 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 0000000000000..1f9cf617fa180 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f4fe2ab0b2b7b 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 0000000000000..bbef827650c7c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..fa4c09727aaac 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 index b7d47b8db336f..8603b1b7186c4 100644 --- a/blockchains/avalanchec/assets/0x60781C2586D68229fde47564546784ab3fACA982/info.json +++ b/blockchains/avalanchec/assets/0x60781C2586D68229fde47564546784ab3fACA982/info.json @@ -1,13 +1,12 @@ { "name": "Pangolin", - "website": "https://pangolin.exchange/", - "description": "A community-driven decentralized exchange for Avalanche and Ethereum assets with fast settlement, low transaction fees, and a democratic distribution–powered by Avalanche", - "explorer": "https://snowtrace.io/address/0x60781C2586D68229fde47564546784ab3fACA982", - "research": "https://research.binance.com/en/projects/avalanche", - "type": "AVALANCHE", "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", - "links": [] + "id": "0x60781C2586D68229fde47564546784ab3fACA982" } \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x60781C2586D68229fde47564546784ab3fACA982/logo.png b/blockchains/avalanchec/assets/0x60781C2586D68229fde47564546784ab3fACA982/logo.png index fb62116cd42fb..d1da905645b1b 100644 Binary files a/blockchains/avalanchec/assets/0x60781C2586D68229fde47564546784ab3fACA982/logo.png 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 0000000000000..fb1143f50eb36 --- /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 0000000000000..8ec55937f4dba 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 0000000000000..a4b5438a6ed9f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..1e964f0a84e34 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 0000000000000..3ca7632ac597f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..1e7cef36a8aaa Binary files /dev/null and b/blockchains/avalanchec/assets/0x63a72806098Bd3D9520cC43356dD78afe5D386D9/logo.png differ diff --git a/blockchains/avalanchec/assets/0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd/info.json b/blockchains/avalanchec/assets/0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd/info.json new file mode 100644 index 0000000000000..ccf4bf9688df6 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7cf47068565d6 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 0000000000000..cd0f0a4f41d06 --- /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 0000000000000..2a885151a2b72 Binary files /dev/null and b/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/logo.png differ diff --git a/blockchains/avalanchec/assets/0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf/info.json b/blockchains/avalanchec/assets/0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf/info.json new file mode 100644 index 0000000000000..ef8d8071fca89 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..84683b77288dd Binary files /dev/null and b/blockchains/avalanchec/assets/0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf/logo.png differ diff --git a/blockchains/avalanchec/assets/0x88128fd4b259552A9A1D457f435a6527AAb72d42/info.json b/blockchains/avalanchec/assets/0x88128fd4b259552A9A1D457f435a6527AAb72d42/info.json new file mode 100644 index 0000000000000..d4af20ba8d5b7 --- /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 0000000000000..903f096950bdb 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 0000000000000..96cf171b0b214 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..0552c7bce924d 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 0000000000000..90b908d0e19e1 --- /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 0000000000000..2d99a939536c4 Binary files /dev/null and b/blockchains/avalanchec/assets/0x8b82A291F83ca07Af22120ABa21632088fC92931/logo.png differ diff --git a/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/info.json b/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/info.json new file mode 100644 index 0000000000000..01563a4d24c76 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..893ef55cb23c0 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 0000000000000..b5a31d03534e9 --- /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": "active", + "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png b/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png new file mode 100644 index 0000000000000..129342cfae435 Binary files /dev/null and b/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png differ diff --git a/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/info.json b/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/info.json new file mode 100644 index 0000000000000..76efb20dff6b2 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d440f6c383022 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 0000000000000..496ead8498ed6 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..e30c1e59f4974 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 0000000000000..9a2a0486fc453 --- /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 0000000000000..cb6457e6b173d 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 0000000000000..023861a4f2883 --- /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": "twitter", + "url": "https://twitter.com/binance_dex" + }, + { + "name": "blog", + "url": "https://binance.org/en/blog/" + }, + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binance-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png new file mode 100644 index 0000000000000..76d02e370b6d6 Binary files /dev/null and b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png differ diff --git a/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/info.json b/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/info.json new file mode 100644 index 0000000000000..da05b0b1539bc --- /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": "twitter", + "url": "https://twitter.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 0000000000000..8f06d5eb88f5d 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 0000000000000..5d5c15886fec6 --- /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 0000000000000..58b66f7e91e64 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 0000000000000..1daf409ca9992 --- /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 0000000000000..498219815a122 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 0000000000000..cea32c4733e1d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f3ff8bea2c5a3 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 index f98b8cfaa0a9e..cf441bd13edfc 100644 --- a/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/info.json +++ b/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/info.json @@ -1,11 +1,11 @@ { "name": "Oddz", - "type": "AVALANCHE", "symbol": "ODDZ", + "type": "AVALANCHE", "decimals": 18, - "website": "https://www.oddz.fi/", "description": "Multi-chain Derivatives Trading Protocol.", - "explorer": "https://snowtrace.io/address/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E", + "website": "https://www.oddz.fi/", + "explorer": "https://snowtrace.io/token/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E", "status": "active", "id": "0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E", "links": [ diff --git a/blockchains/avalanchec/assets/0xB24CA28D4e2742907115fECda335b40dbda07a4C/info.json b/blockchains/avalanchec/assets/0xB24CA28D4e2742907115fECda335b40dbda07a4C/info.json new file mode 100644 index 0000000000000..5573cadfd4aa4 --- /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 0000000000000..ed00e43fcfe9b 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 0000000000000..d2ea5f3b987e2 --- /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 0000000000000..ea1095257c139 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 0000000000000..068db31c8ecfa --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f2d3a8844d54f 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 0000000000000..23667020134f4 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f3ff8bea2c5a3 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 0000000000000..3376815a6c4f4 --- /dev/null +++ b/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json @@ -0,0 +1,46 @@ +{ + "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": "twitter", + "url": "https://twitter.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" + ] +} + diff --git a/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png b/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png new file mode 100644 index 0000000000000..68ecfe32afae5 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 0000000000000..710ceb54c132e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..2a850de0afe21 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 0000000000000..0be121cf4ee1a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7837957416a73 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 0000000000000..c1615bc9472c2 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..fb9f7a63b2f43 Binary files /dev/null and b/blockchains/avalanchec/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png differ diff --git a/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/info.json b/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/info.json new file mode 100644 index 0000000000000..c2ba4b253167b --- /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": "twitter", + "url": "https://twitter.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 0000000000000..3df427c34e932 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 0000000000000..a59f529047b61 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..762d2dd36f501 Binary files /dev/null and b/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/logo.png differ diff --git a/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json b/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json new file mode 100644 index 0000000000000..014fea860b032 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..47ffbe08a8dcc 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 0000000000000..3b446a410704f --- /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 0000000000000..d52df831af1f9 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 index c230be686e03b..016ed317a2d4a 100644 --- a/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/info.json +++ b/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/info.json @@ -1,12 +1,12 @@ { "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://snowtrace.io/address/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0", - "research": "https://research.binance.com/en/projects/avalanche", - "type": "AVALANCHE", "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": [ @@ -31,4 +31,4 @@ "url": "https://coingecko.com/coins/galaxygoogle-dao" } ] -} +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F/info.json b/blockchains/avalanchec/assets/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F/info.json new file mode 100644 index 0000000000000..295f3968f800f --- /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 0000000000000..7a2e75fd77f1b Binary files /dev/null and b/blockchains/avalanchec/assets/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F/logo.png differ diff --git a/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/info.json b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/info.json new file mode 100644 index 0000000000000..370acd27093c6 --- /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 0000000000000..5cd7c39954306 Binary files /dev/null and b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/logo.png differ diff --git a/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/info.json b/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/info.json new file mode 100644 index 0000000000000..b38ae7c05f2db --- /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 0000000000000..e3110cce3bde2 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 0000000000000..4a72770cf0e87 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..efff8d00af4a5 Binary files /dev/null and b/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png differ diff --git a/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/info.json b/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/info.json new file mode 100644 index 0000000000000..d94f24d252c0d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7f6b0a1a21743 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 0000000000000..caf4e381bbca4 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/avalanchec/assets/0xc3344870d52688874b06d844E0C36cc39FC727F6/logo.png b/blockchains/avalanchec/assets/0xc3344870d52688874b06d844E0C36cc39FC727F6/logo.png new file mode 100644 index 0000000000000..9b53519c61ded 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 0000000000000..948fec583bcc9 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..9d7b0435acaac 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 0000000000000..23b5a8eaf80b1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d440f6c383022 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 0000000000000..e915968e6038e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..b17bf63fd3273 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 index cad1cc8607058..2f1581f8a7f99 100644 --- a/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/info.json +++ b/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/info.json @@ -1,12 +1,12 @@ { "name": "Ape-X", - "website": "https://ape-x.io/", - "description": "Liquidity Generating, Frictionless Yield, and Self Sustaining Smart Contract", - "explorer": "https://snowtrace.io/address/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5", - "research": "https://research.binance.com/en/projects/avalanche", - "type": "AVALANCHE", "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": [ diff --git a/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json new file mode 100644 index 0000000000000..3a01a37798166 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png b/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png new file mode 100644 index 0000000000000..a3b20074ec34d Binary files /dev/null and b/blockchains/avalanchec/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png differ diff --git a/blockchains/avalanchec/assets/0xd501281565bf7789224523144Fe5D98e8B28f267/info.json b/blockchains/avalanchec/assets/0xd501281565bf7789224523144Fe5D98e8B28f267/info.json new file mode 100644 index 0000000000000..6c66d02d6af01 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..fc04d19df090f 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 0000000000000..0f4628ac78321 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..bdb1d0653be61 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 0000000000000..6fa842ae76533 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6ad4e4b13fc82 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 0000000000000..e118c17a83c35 --- /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 0000000000000..60c97897b870c Binary files /dev/null and b/blockchains/avalanchec/assets/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb/logo.png differ diff --git a/blockchains/avalanchec/assets/0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC/info.json b/blockchains/avalanchec/assets/0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC/info.json new file mode 100644 index 0000000000000..f8fba9789d374 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..69911caea54fb 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 index da22e7c4dd6e9..b3f6d91805781 100644 --- a/blockchains/avalanchec/info/info.json +++ b/blockchains/avalanchec/info/info.json @@ -6,10 +6,12 @@ "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" + "defi", + "dapp" ], "links": [ { diff --git a/blockchains/avalanchec/tokenlist.json b/blockchains/avalanchec/tokenlist.json index 0ad8bb454c15d..edc714adc89d0 100644 --- a/blockchains/avalanchec/tokenlist.json +++ b/blockchains/avalanchec/tokenlist.json @@ -1,12 +1,592 @@ { "name": "Trust Wallet: Avalanche C Chain List", "logoURI": "https://trustwallet.com/assets/images/favicon.png", - "timestamp": "2022-01-27T14:33:26.183301", + "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 } -} \ No newline at end of file +} diff --git a/blockchains/avalanchecfuji/info/info.json b/blockchains/avalanchecfuji/info/info.json new file mode 100644 index 0000000000000..99df57957175c --- /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 0000000000000..bd5c8e6a96d0b Binary files /dev/null and b/blockchains/avalanchecfuji/info/logo.png differ diff --git a/blockchains/axelar/info/info.json b/blockchains/axelar/info/info.json new file mode 100644 index 0000000000000..36fce5dbc8147 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/axelar/info/logo.png b/blockchains/axelar/info/logo.png new file mode 100644 index 0000000000000..7c2b2efe45889 Binary files /dev/null and b/blockchains/axelar/info/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud/logo.png b/blockchains/axelar/validators/assets/axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu/logo.png new file mode 100644 index 0000000000000..3404c78765f74 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4/logo.png new file mode 100644 index 0000000000000..585324aa57dc2 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1uf7s2v44qqpe9lpnsjy6cfjueqytakuzayfg0h/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1uf7s2v44qqpe9lpnsjy6cfjueqytakuzayfg0h/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1uf7s2v44qqpe9lpnsjy6cfjueqytakuzayfg0h/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg/logo.png new file mode 100644 index 0000000000000..477fe8df88ae4 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg/logo.png differ diff --git a/blockchains/axelar/validators/list.json b/blockchains/axelar/validators/list.json new file mode 100644 index 0000000000000..eb37338cb00a4 --- /dev/null +++ b/blockchains/axelar/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "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": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "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/" + } +] \ No newline at end of file diff --git a/blockchains/band/validators/assets/bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv/logo.png b/blockchains/band/validators/assets/bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6/logo.png b/blockchains/band/validators/assets/bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper1hcu2spr3r80v36us40mg938f5qhaqq2qeajtfv/logo.png b/blockchains/band/validators/assets/bandvaloper1hcu2spr3r80v36us40mg938f5qhaqq2qeajtfv/logo.png new file mode 100644 index 0000000000000..95674f5ffbf9a 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 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl/logo.png b/blockchains/band/validators/assets/bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl/logo.png differ diff --git a/blockchains/band/validators/list.json b/blockchains/band/validators/list.json index f3718bdfd6a5e..d9b048341ee0e 100644 --- a/blockchains/band/validators/list.json +++ b/blockchains/band/validators/list.json @@ -1,4 +1,10 @@ [ + { + "id": "bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, { "id": "bandvaloper1qgvcttnjx3enjqg9pnhclt6d4z7qdknavg4q9c", "name": "WeStaking", @@ -10,5 +16,29 @@ "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": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "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" } -] \ No newline at end of file +] diff --git a/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/info.json b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/info.json new file mode 100644 index 0000000000000..8dea7ebfcb8d9 --- /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": "twitter", + "url": "https://twitter.com/BaseSwap_Fi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baseswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/logo.png b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/logo.png new file mode 100644 index 0000000000000..d2dd3f1836703 Binary files /dev/null and b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/logo.png differ diff --git a/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/info.json b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/info.json new file mode 100644 index 0000000000000..eee19c179ccf0 --- /dev/null +++ b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/info.json @@ -0,0 +1,37 @@ +{ + "name": "USD Base 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://www.centre.io", + "explorer": "https://basescan.org/token/0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca", + "research": "https://research.binance.com/en/projects/usd-coin", + "status": "active", + "id": "0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA", + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/logo.png b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/logo.png new file mode 100644 index 0000000000000..819922b52bcd6 Binary files /dev/null and b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/logo.png differ diff --git a/blockchains/base/info/info.json b/blockchains/base/info/info.json new file mode 100644 index 0000000000000..ca603c5d01fb7 --- /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": "twitter", + "url": "https://twitter.com/buildonbase" + }, + { + "name": "github", + "url": "https://github.com/base-org" + } + ] +} diff --git a/blockchains/base/info/logo.png b/blockchains/base/info/logo.png new file mode 100644 index 0000000000000..c5a23cea247f9 Binary files /dev/null and b/blockchains/base/info/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 0000000000000..00c60c0559229 --- /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": "twitter", + "url": "https://twitter.com/beefyfinance" + }, + { + "name": "telegram", + "url": "https://t.me/beefyannouncement" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/binance/assets/BIFI-290/logo.png b/blockchains/binance/assets/BIFI-290/logo.png new file mode 100644 index 0000000000000..6c09bb9a38215 Binary files /dev/null and b/blockchains/binance/assets/BIFI-290/logo.png differ diff --git a/blockchains/binance/assets/TWT-8C2/logo.png b/blockchains/binance/assets/TWT-8C2/logo.png index 8e97855518bfd..276a83baae8dd 100644 Binary files a/blockchains/binance/assets/TWT-8C2/logo.png and b/blockchains/binance/assets/TWT-8C2/logo.png differ diff --git a/blockchains/binance/assets/XVS-795/logo.png b/blockchains/binance/assets/XVS-795/logo.png index b7782f2473244..008d22434f766 100644 Binary files a/blockchains/binance/assets/XVS-795/logo.png and b/blockchains/binance/assets/XVS-795/logo.png differ diff --git a/blockchains/binance/tokenlist.json b/blockchains/binance/tokenlist.json index ab48ac7d5944a..f0168c17151b7 100644 --- a/blockchains/binance/tokenlist.json +++ b/blockchains/binance/tokenlist.json @@ -1,2051 +1,12 @@ { "name": "Trust Wallet: BNB", "logoURI": "https://trustwallet.com/assets/images/favicon.png", - "timestamp": "2022-01-31T13:11:43.029652", + "timestamp": "2022-09-05T14:41:49.306430", "tokens": [ - { - "asset": "c714", - "type": "coin", - "address": "BNB", - "name": "BNB Beacon Chain", - "symbol": "BNB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/info/logo.png", - "pairs": [ - { - "base": "c714_tAERGO-46B", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tANKR-E97", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tARPA-575", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tART-3C9", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tATP-38C", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tAVA-645", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tAWC-986", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tAXPR-777", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tBCH-1FD", - "lotSize": "1000000", - "tickSize": "100" - }, - { - "base": "c714_tBCPT-95A", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tBEAR-14C", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tBET-844", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tBKBT-3A6", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tBLINK-9C6", - "lotSize": "1000000000000", - "tickSize": "1" - }, - { - "base": "c714_tBOLT-4C6", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tBST2-2F2", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tBTTB-D31", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tBULL-BE4", - "lotSize": "10000", - "tickSize": "10000" - }, - { - "base": "c714_tBZNT-464", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tCAN-677", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tCAS-167", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tCBIX-3C9", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tCBM-4B2", - "lotSize": "1000000000000", - "tickSize": "1" - }, - { - "base": "c714_tCHZ-ECD", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tCNNS-E16", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tCOS-2E4", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tCOTI-CBB", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tCOVA-218", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tCRPT-8C9", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tCSM-734", - "lotSize": "1000000000000", - "tickSize": "1" - }, - { - "base": "c714_tDEFI-FA5", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tDOS-120", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tDREP-7D2", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tDUSK-45E", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tEBST-783", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tENTRP-C8D", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tEOSBEAR-721", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tEOSBULL-F0D", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tEQL-586", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tERD-D06", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tETHBEAR-B2B", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tETHBULL-D33", - "lotSize": "100000", - "tickSize": "1000" - }, - { - "base": "c714_tEVT-49B", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tFRM-DE7", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tFSN-E14", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tFTM-A64", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tGIV-94E", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tGMAT-FC8", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tGTO-908", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tHNST-3C9", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tHYN-F21", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tIRIS-D88", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tKAT-7BB", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tLBA-340", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tLIT-099", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tLOKI-6A9", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tLTC-F07", - "lotSize": "1000000", - "tickSize": "100" - }, - { - "base": "c714_tLTO-BDF", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tMATIC-84A", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tMDAB-D42", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tMEETONE-031", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tMITH-C76", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tMITX-CAA", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tMTV-4C6", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tMVL-7B0", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tMZK-2C7", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tNEW-09E", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tNEXO-A84", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tNOIZB-878", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tNOW-E68", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tNPXB-1E8", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tNPXSXEM-89C", - "lotSize": "1000000000000", - "tickSize": "1" - }, - { - "base": "c714_tONE-5F9", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tONT-33D", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tPHB-2DF", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tPHV-4A1", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tPIBNB-43C", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tPLG-D8D", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tPVT-554", - "lotSize": "10000000000000", - "tickSize": "1" - }, - { - "base": "c714_tPYN-C37", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tQBX-38C", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tRAVEN-F66", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tRUNE-B1A", - "lotSize": "10000000", - "tickSize": "10" - }, - { - "base": "c714_tSHR-DB6", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tSLV-986", - "lotSize": "1000000000000", - "tickSize": "1" - }, - { - "base": "c714_tSPNDB-916", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tSTYL-65B", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tSWIPE.B-DC0", - "lotSize": "10000000000000", - "tickSize": "1" - }, - { - "base": "c714_tTM2-0C4", - "lotSize": "1000000000000", - "tickSize": "1" - }, - { - "base": "c714_tTOMOB-4BC", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tTOP-491", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tTROY-9B8", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tTRUE-D84", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tTRXB-2E6", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tTWT-8C2", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tUGAS-B0C", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tUND-EBC", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tUPX-F3E", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tVDX-A17", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tVIDT-F53", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tVOTE-FD4", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tWICC-01D", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tWINB-41F", - "lotSize": "1000000000000", - "tickSize": "1" - }, - { - "base": "c714_tWISH-2D5", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tWRX-ED1", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tXBASE-CD2", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tXRP-BF2", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tXRPBEAR-00B", - "lotSize": "10000000", - "tickSize": "10" - }, - { - "base": "c714_tXRPBULL-E7C", - "lotSize": "1000000", - "tickSize": "100" - }, - { - "base": "c714_tZEBI-84F", - "lotSize": "100000000000", - "tickSize": "1" - } - ] - }, - { - "asset": "c714_tBUSD-BD1", - "type": "BEP2", - "address": "BUSD-BD1", - "name": "Binance USD", - "symbol": "BUSD", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BUSD-BD1/logo.png", - "pairs": [ - { - "base": "c714", - "lotSize": "100000", - "tickSize": "100000" - }, - { - "base": "c714_tADA-9F4", - "lotSize": "100000000", - "tickSize": "1000" - }, - { - "base": "c714_tATOM-596", - "lotSize": "10000000", - "tickSize": "10000" - }, - { - "base": "c714_tAVA-645", - "lotSize": "100000000", - "tickSize": "1000" - }, - { - "base": "c714_tBAKE-5E0", - "lotSize": "100000000", - "tickSize": "100" - }, - { - "base": "c714_tBAND-34B", - "lotSize": "100000000", - "tickSize": "1000" - }, - { - "base": "c714_tBCH-1FD", - "lotSize": "1000000", - "tickSize": "100000" - }, - { - "base": "c714_tBTCB-1DE", - "lotSize": "10000", - "tickSize": "10000000" - }, - { - "base": "c714_tBURGER-33A", - "lotSize": "100000000", - "tickSize": "1000" - }, - { - "base": "c714_tCAKE-435", - "lotSize": "10000000", - "tickSize": "1000" - }, - { - "base": "c714_tDOGE-B67", - "lotSize": "1000000000", - "tickSize": "100" - }, - { - "base": "c714_tDOT-64C", - "lotSize": "10000000", - "tickSize": "10000" - }, - { - "base": "c714_tEOS-CDD", - "lotSize": "100000000", - "tickSize": "1000" - }, - { - "base": "c714_tETH-1C9", - "lotSize": "100000", - "tickSize": "1000000" - }, - { - "base": "c714_tFRM-DE7", - "lotSize": "1000000000", - "tickSize": "10" - }, - { - "base": "c714_tINJ-FAE", - "lotSize": "10000000", - "tickSize": "1000" - }, - { - "base": "c714_tLTC-F07", - "lotSize": "1000000", - "tickSize": "100000" - }, - { - "base": "c714_tONT-33D", - "lotSize": "100000000", - "tickSize": "100" - }, - { - "base": "c714_tRUNE-B1A", - "lotSize": "10000000", - "tickSize": "1000" - }, - { - "base": "c714_tSHR-DB6", - "lotSize": "10000000000", - "tickSize": "10" - }, - { - "base": "c714_tSWINGBY-888", - "lotSize": "10000000000", - "tickSize": "10" - }, - { - "base": "c714_tSXP-CCC", - "lotSize": "100000000", - "tickSize": "1000" - }, - { - "base": "c714_tXRP-BF2", - "lotSize": "100000000", - "tickSize": "100" - }, - { - "base": "c714_tXTZ-F7A", - "lotSize": "100000000", - "tickSize": "1000" - }, - { - "base": "c714_tXVS-795", - "lotSize": "10000000", - "tickSize": "1000" - }, - { - "base": "c714_tYFII-061", - "lotSize": "100000", - "tickSize": "1000000" - }, - { - "base": "c714_tZEC-93E", - "lotSize": "1000000", - "tickSize": "10000" - } - ] - }, - { - "asset": "c714_tUSDSB-1AC", - "type": "BEP2", - "address": "USDSB-1AC", - "name": "USDS", - "symbol": "USDSB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/USDSB-1AC/logo.png", - "pairs": [ - { - "base": "c714", - "lotSize": "100000", - "tickSize": "100000" - }, - { - "base": "c714_tBTCB-1DE", - "lotSize": "10000", - "tickSize": "10000000" - }, - { - "base": "c714_tCOS-2E4", - "lotSize": "10000000000", - "tickSize": "10" - }, - { - "base": "c714_tONE-5F9", - "lotSize": "1000000000", - "tickSize": "100" - }, - { - "base": "c714_tUND-EBC", - "lotSize": "1000000000", - "tickSize": "10" - } - ] - }, - { - "asset": "c714_tBTCB-1DE", - "type": "BEP2", - "address": "BTCB-1DE", - "name": "Bitcoin BEP2", - "symbol": "BTCB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BTCB-1DE/logo.png", - "pairs": [ - { - "base": "c714", - "lotSize": "100000", - "tickSize": "10" - }, - { - "base": "c714_tANKR-E97", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tBOLT-4C6", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tCOS-2E4", - "lotSize": "10000000000", - "tickSize": "1" - } - ] - }, - { - "asset": "c714_tTUSDB-888", - "type": "BEP2", - "address": "TUSDB-888", - "name": "TrueUSD", - "symbol": "TUSDB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/TUSDB-888/logo.png", - "pairs": [ - { - "base": "c714", - "lotSize": "100000", - "tickSize": "100000" - }, - { - "base": "c714_tBTCB-1DE", - "lotSize": "10000", - "tickSize": "10000000" - }, - { - "base": "c714_tLTC-F07", - "lotSize": "1000000", - "tickSize": "100000" - } - ] - }, - { - "asset": "c714_tIDRTB-178", - "type": "BEP2", - "address": "IDRTB-178", - "name": "Rupiah Token", - "symbol": "IDRTB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/IDRTB-178/logo.png", - "pairs": [ - { - "base": "c714", - "lotSize": "100000", - "tickSize": "1000000000" - }, - { - "base": "c714_tBUSD-BD1", - "lotSize": "100000000", - "tickSize": "10000000" - } - ] - }, - { - "asset": "c714_tUSDT-6D8", - "type": "BEP2", - "address": "USDT-6D8", - "name": "USDTBEP2", - "symbol": "USDT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/USDT-6D8/logo.png", - "pairs": [ - { - "base": "c714", - "lotSize": "100000", - "tickSize": "100000" - }, - { - "base": "c714_tBUSD-BD1", - "lotSize": "100000000", - "tickSize": "100" - } - ] - }, - { - "asset": "c714_tDAI-D75", - "type": "BEP2", - "address": "DAI-D75", - "name": "DaiBEP2", - "symbol": "DAI", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/DAI-D75/logo.png", - "pairs": [ - { - "base": "c714_tBUSD-BD1", - "lotSize": "100000000", - "tickSize": "1000" - } - ] - }, - { - "asset": "c714_tETH-1C9", - "type": "BEP2", - "address": "ETH-1C9", - "name": "ETH BEP2", - "symbol": "ETH", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ETH-1C9/logo.png", - "pairs": [ - { - "base": "c714", - "lotSize": "100000", - "tickSize": "100" - } - ] - }, - { - "asset": "c714_tTAUDB-888", - "type": "BEP2", - "address": "TAUDB-888", - "name": "TrueAUD", - "symbol": "TAUDB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/TAUDB-888/logo.png", - "pairs": [ - { - "base": "c714", - "lotSize": "100000", - "tickSize": "100000" - } - ] - }, - { - "asset": "c714_tTHKDB-888", - "type": "BEP2", - "address": "THKDB-888", - "name": "TrueHKD", - "symbol": "THKDB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/THKDB-888/logo.png", - "pairs": [ - { - "base": "c714", - "lotSize": "100000", - "tickSize": "1000000" - } - ] - }, - { - "asset": "c714_tADA-9F4", - "type": "BEP2", - "address": "ADA-9F4", - "name": "CardanoBEP2", - "symbol": "ADA", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ADA-9F4/logo.png" - }, - { - "asset": "c714_tAERGO-46B", - "type": "BEP2", - "address": "AERGO-46B", - "name": "Aergo", - "symbol": "AERGO", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/AERGO-46B/logo.png" - }, - { - "asset": "c714_tANKR-E97", - "type": "BEP2", - "address": "ANKR-E97", - "name": "ANKR", - "symbol": "ANKR", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ANKR-E97/logo.png" - }, - { - "asset": "c714_tARPA-575", - "type": "BEP2", - "address": "ARPA-575", - "name": "ARPA", - "symbol": "ARPA", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ARPA-575/logo.png" - }, - { - "asset": "c714_tART-3C9", - "type": "BEP2", - "address": "ART-3C9", - "name": "Maecenas ART Token", - "symbol": "ART", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ART-3C9/logo.png" - }, - { - "asset": "c714_tATOM-596", - "type": "BEP2", - "address": "ATOM-596", - "name": "ATOMBEP2", - "symbol": "ATOM", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ATOM-596/logo.png" - }, - { - "asset": "c714_tATP-38C", - "type": "BEP2", - "address": "ATP-38C", - "name": "Atlas Protocol", - "symbol": "ATP", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ATP-38C/logo.png" - }, - { - "asset": "c714_tAVA-645", - "type": "BEP2", - "address": "AVA-645", - "name": "Travala.com Token", - "symbol": "AVA", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/AVA-645/logo.png" - }, - { - "asset": "c714_tAWC-986", - "type": "BEP2", - "address": "AWC-986", - "name": "Atomic Wallet Token", - "symbol": "AWC", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/AWC-986/logo.png" - }, - { - "asset": "c714_tAXPR-777", - "type": "BEP2", - "address": "AXPR-777", - "name": "AXPR.B", - "symbol": "AXPR", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/AXPR-777/logo.png" - }, - { - "asset": "c714_tBAKE-5E0", - "type": "BEP2", - "address": "BAKE-5E0", - "name": "BakeryToken", - "symbol": "BAKE", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BAKE-5E0/logo.png" - }, - { - "asset": "c714_tBAND-34B", - "type": "BEP2", - "address": "BAND-34B", - "name": "BandProtocolBEP2", - "symbol": "BAND", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BAND-34B/logo.png" - }, - { - "asset": "c714_tBCH-1FD", - "type": "BEP2", - "address": "BCH-1FD", - "name": "BCH BEP2", - "symbol": "BCH", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BCH-1FD/logo.png" - }, - { - "asset": "c714_tBCPT-95A", - "type": "BEP2", - "address": "BCPT-95A", - "name": "Blockmason Credit Protocol", - "symbol": "BCPT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BCPT-95A/logo.png" - }, - { - "asset": "c714_tBEAR-14C", - "type": "BEP2", - "address": "BEAR-14C", - "name": "3X Short Bitcoin Token", - "symbol": "BEAR", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BEAR-14C/logo.png" - }, - { - "asset": "c714_tBET-844", - "type": "BEP2", - "address": "BET-844", - "name": "EOSBet Token", - "symbol": "BET", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BET-844/logo.png" - }, - { - "asset": "c714_tBKBT-3A6", - "type": "BEP2", - "address": "BKBT-3A6", - "name": "Bitwires Token", - "symbol": "BKBT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BKBT-3A6/logo.png" - }, - { - "asset": "c714_tBLINK-9C6", - "type": "BEP2", - "address": "BLINK-9C6", - "name": "Blockmason Link", - "symbol": "BLINK", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BLINK-9C6/logo.png" - }, - { - "asset": "c714_tBOLT-4C6", - "type": "BEP2", - "address": "BOLT-4C6", - "name": "BOLT Token", - "symbol": "BOLT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BOLT-4C6/logo.png" - }, - { - "asset": "c714_tBST2-2F2", - "type": "BEP2", - "address": "BST2-2F2", - "name": "BOOSTO", - "symbol": "BST2", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BST2-2F2/logo.png" - }, - { - "asset": "c714_tBTTB-D31", - "type": "BEP2", - "address": "BTTB-D31", - "name": "BTTB", - "symbol": "BTTB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BTTB-D31/logo.png" - }, - { - "asset": "c714_tBULL-BE4", - "type": "BEP2", - "address": "BULL-BE4", - "name": "3x Long Bitcoin Token", - "symbol": "BULL", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BULL-BE4/logo.png" - }, - { - "asset": "c714_tBURGER-33A", - "type": "BEP2", - "address": "BURGER-33A", - "name": "Burger Swap", - "symbol": "BURGER", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BURGER-33A/logo.png" - }, - { - "asset": "c714_tBZNT-464", - "type": "BEP2", - "address": "BZNT-464", - "name": "Bezant Token", - "symbol": "BZNT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/BZNT-464/logo.png" - }, - { - "asset": "c714_tCAKE-435", - "type": "BEP2", - "address": "CAKE-435", - "name": "PancakeSwap Token", - "symbol": "CAKE", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/CAKE-435/logo.png" - }, - { - "asset": "c714_tCAN-677", - "type": "BEP2", - "address": "CAN-677", - "name": "CanYaCoin", - "symbol": "CAN", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/CAN-677/logo.png" - }, - { - "asset": "c714_tCAS-167", - "type": "BEP2", - "address": "CAS-167", - "name": "CASHAA", - "symbol": "CAS", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/CAS-167/logo.png" - }, - { - "asset": "c714_tCBIX-3C9", - "type": "BEP2", - "address": "CBIX-3C9", - "name": "Cubiex", - "symbol": "CBIX", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/CBIX-3C9/logo.png" - }, - { - "asset": "c714_tCBM-4B2", - "type": "BEP2", - "address": "CBM-4B2", - "name": "CryptoBonusMiles", - "symbol": "CBM", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/CBM-4B2/logo.png" - }, - { - "asset": "c714_tCHZ-ECD", - "type": "BEP2", - "address": "CHZ-ECD", - "name": "Chiliz", - "symbol": "CHZ", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/CHZ-ECD/logo.png" - }, - { - "asset": "c714_tCNNS-E16", - "type": "BEP2", - "address": "CNNS-E16", - "name": "Crypto Neo-value Neural System", - "symbol": "CNNS", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/CNNS-E16/logo.png" - }, - { - "asset": "c714_tCOS-2E4", - "type": "BEP2", - "address": "COS-2E4", - "name": "Contentos", - "symbol": "COS", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/COS-2E4/logo.png" - }, - { - "asset": "c714_tCOTI-CBB", - "type": "BEP2", - "address": "COTI-CBB", - "name": "COTI", - "symbol": "COTI", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/COTI-CBB/logo.png" - }, - { - "asset": "c714_tCOVA-218", - "type": "BEP2", - "address": "COVA-218", - "name": "Covalent Token", - "symbol": "COVA", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/COVA-218/logo.png" - }, - { - "asset": "c714_tCRPT-8C9", - "type": "BEP2", - "address": "CRPT-8C9", - "name": "Crypterium Token", - "symbol": "CRPT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/CRPT-8C9/logo.png" - }, - { - "asset": "c714_tCSM-734", - "type": "BEP2", - "address": "CSM-734", - "name": "“Consentium”", - "symbol": "CSM", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/CSM-734/logo.png" - }, - { - "asset": "c714_tDEFI-FA5", - "type": "BEP2", - "address": "DEFI-FA5", - "name": "DeFi Token", - "symbol": "DEFI", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/DEFI-FA5/logo.png" - }, - { - "asset": "c714_tDOGE-B67", - "type": "BEP2", - "address": "DOGE-B67", - "name": "Dogecoin", - "symbol": "DOGE", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/DOGE-B67/logo.png" - }, - { - "asset": "c714_tDOS-120", - "type": "BEP2", - "address": "DOS-120", - "name": "DOS Network Token", - "symbol": "DOS", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/DOS-120/logo.png" - }, - { - "asset": "c714_tDOT-64C", - "type": "BEP2", - "address": "DOT-64C", - "name": "PolkadotBEP2", - "symbol": "DOT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/DOT-64C/logo.png" - }, - { - "asset": "c714_tDREP-7D2", - "type": "BEP2", - "address": "DREP-7D2", - "name": "DREP", - "symbol": "DREP", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/DREP-7D2/logo.png" - }, - { - "asset": "c714_tDUSK-45E", - "type": "BEP2", - "address": "DUSK-45E", - "name": "Dusk Network", - "symbol": "DUSK", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/DUSK-45E/logo.png" - }, - { - "asset": "c714_tEBST-783", - "type": "BEP2", - "address": "EBST-783", - "name": "eBoost", - "symbol": "EBST", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/EBST-783/logo.png" - }, - { - "asset": "c714_tENTRP-C8D", - "type": "BEP2", - "address": "ENTRP-C8D", - "name": "Hut34 Entropy", - "symbol": "ENTRP", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ENTRP-C8D/logo.png" - }, - { - "asset": "c714_tEOS-CDD", - "type": "BEP2", - "address": "EOS-CDD", - "name": "EOS BEP2", - "symbol": "EOS", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/EOS-CDD/logo.png" - }, - { - "asset": "c714_tEOSBEAR-721", - "type": "BEP2", - "address": "EOSBEAR-721", - "name": "3X Short EOS Token", - "symbol": "EOSBEAR", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/EOSBEAR-721/logo.png" - }, - { - "asset": "c714_tEOSBULL-F0D", - "type": "BEP2", - "address": "EOSBULL-F0D", - "name": "3X Long EOS Token", - "symbol": "EOSBULL", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/EOSBULL-F0D/logo.png" - }, - { - "asset": "c714_tEQL-586", - "type": "BEP2", - "address": "EQL-586", - "name": "EQUAL", - "symbol": "EQL", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/EQL-586/logo.png" - }, - { - "asset": "c714_tERD-D06", - "type": "BEP2", - "address": "ERD-D06", - "name": "Elrond", - "symbol": "ERD", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ERD-D06/logo.png" - }, - { - "asset": "c714_tETHBEAR-B2B", - "type": "BEP2", - "address": "ETHBEAR-B2B", - "name": "3X Short Ethereum Token", - "symbol": "ETHBEAR", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ETHBEAR-B2B/logo.png" - }, - { - "asset": "c714_tETHBULL-D33", - "type": "BEP2", - "address": "ETHBULL-D33", - "name": "3X Long Ethereum Token", - "symbol": "ETHBULL", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ETHBULL-D33/logo.png" - }, - { - "asset": "c714_tEVT-49B", - "type": "BEP2", - "address": "EVT-49B", - "name": "everiToken", - "symbol": "EVT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/EVT-49B/logo.png" - }, - { - "asset": "c714_tFRM-DE7", - "type": "BEP2", - "address": "FRM-DE7", - "name": "Ferrum Network Token", - "symbol": "FRM", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/FRM-DE7/logo.png" - }, - { - "asset": "c714_tFSN-E14", - "type": "BEP2", - "address": "FSN-E14", - "name": "Fusion", - "symbol": "FSN", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/FSN-E14/logo.png" - }, - { - "asset": "c714_tFTM-A64", - "type": "BEP2", - "address": "FTM-A64", - "name": "Fantom", - "symbol": "FTM", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/FTM-A64/logo.png" - }, - { - "asset": "c714_tGIV-94E", - "type": "BEP2", - "address": "GIV-94E", - "name": "Givly Coin", - "symbol": "GIV", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/GIV-94E/logo.png" - }, - { - "asset": "c714_tGMAT-FC8", - "type": "BEP2", - "address": "GMAT-FC8", - "name": "GoWithMi", - "symbol": "GMAT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/GMAT-FC8/logo.png" - }, - { - "asset": "c714_tGTO-908", - "type": "BEP2", - "address": "GTO-908", - "name": "Gifto", - "symbol": "GTO", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/GTO-908/logo.png" - }, - { - "asset": "c714_tHNST-3C9", - "type": "BEP2", - "address": "HNST-3C9", - "name": "Honest", - "symbol": "HNST", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/HNST-3C9/logo.png" - }, - { - "asset": "c714_tHYN-F21", - "type": "BEP2", - "address": "HYN-F21", - "name": "Hyperion Token", - "symbol": "HYN", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/HYN-F21/logo.png" - }, - { - "asset": "c714_tINJ-FAE", - "type": "BEP2", - "address": "INJ-FAE", - "name": "Injective Protocol", - "symbol": "INJ", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/INJ-FAE/logo.png" - }, - { - "asset": "c714_tIRIS-D88", - "type": "BEP2", - "address": "IRIS-D88", - "name": "IRIS Network", - "symbol": "IRIS", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/IRIS-D88/logo.png" - }, - { - "asset": "c714_tKAT-7BB", - "type": "BEP2", - "address": "KAT-7BB", - "name": "Kambria Token", - "symbol": "KAT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/KAT-7BB/logo.png" - }, - { - "asset": "c714_tLBA-340", - "type": "BEP2", - "address": "LBA-340", - "name": "Lend-Borrow-Asset", - "symbol": "LBA", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/LBA-340/logo.png" - }, - { - "asset": "c714_tLIT-099", - "type": "BEP2", - "address": "LIT-099", - "name": "LITION", - "symbol": "LIT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/LIT-099/logo.png" - }, - { - "asset": "c714_tLOKI-6A9", - "type": "BEP2", - "address": "LOKI-6A9", - "name": "Loki", - "symbol": "LOKI", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/LOKI-6A9/logo.png" - }, - { - "asset": "c714_tLTC-F07", - "type": "BEP2", - "address": "LTC-F07", - "name": "LTC BEP2", - "symbol": "LTC", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/LTC-F07/logo.png" - }, - { - "asset": "c714_tLTO-BDF", - "type": "BEP2", - "address": "LTO-BDF", - "name": "LTO Network", - "symbol": "LTO", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/LTO-BDF/logo.png" - }, - { - "asset": "c714_tMATIC-84A", - "type": "BEP2", - "address": "MATIC-84A", - "name": "Matic Token", - "symbol": "MATIC", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/MATIC-84A/logo.png" - }, - { - "asset": "c714_tMDAB-D42", - "type": "BEP2", - "address": "MDAB-D42", - "name": "MDAB", - "symbol": "MDAB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/MDAB-D42/logo.png" - }, - { - "asset": "c714_tMEETONE-031", - "type": "BEP2", - "address": "MEETONE-031", - "name": "MEET.ONE", - "symbol": "MEETONE", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/MEETONE-031/logo.png" - }, - { - "asset": "c714_tMITH-C76", - "type": "BEP2", - "address": "MITH-C76", - "name": "Mithril", - "symbol": "MITH", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/MITH-C76/logo.png" - }, - { - "asset": "c714_tMITX-CAA", - "type": "BEP2", - "address": "MITX-CAA", - "name": "Morpheus Infrastructure Token", - "symbol": "MITX", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/MITX-CAA/logo.png" - }, - { - "asset": "c714_tMTV-4C6", - "type": "BEP2", - "address": "MTV-4C6", - "name": "MultiVAC", - "symbol": "MTV", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/MTV-4C6/logo.png" - }, - { - "asset": "c714_tMVL-7B0", - "type": "BEP2", - "address": "MVL-7B0", - "name": "Mass Vehicle Ledger", - "symbol": "MVL", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/MVL-7B0/logo.png" - }, - { - "asset": "c714_tMZK-2C7", - "type": "BEP2", - "address": "MZK-2C7", - "name": "Muzika", - "symbol": "MZK", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/MZK-2C7/logo.png" - }, - { - "asset": "c714_tNEW-09E", - "type": "BEP2", - "address": "NEW-09E", - "name": "NEWTON", - "symbol": "NEW", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/NEW-09E/logo.png" - }, - { - "asset": "c714_tNEXO-A84", - "type": "BEP2", - "address": "NEXO-A84", - "name": "Nexo", - "symbol": "NEXO", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/NEXO-A84/logo.png" - }, - { - "asset": "c714_tNOIZB-878", - "type": "BEP2", - "address": "NOIZB-878", - "name": "NOIZ Token", - "symbol": "NOIZB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/NOIZB-878/logo.png" - }, - { - "asset": "c714_tNOW-E68", - "type": "BEP2", - "address": "NOW-E68", - "name": "NOW Token", - "symbol": "NOW", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/NOW-E68/logo.png" - }, - { - "asset": "c714_tNPXB-1E8", - "type": "BEP2", - "address": "NPXB-1E8", - "name": "NPX Binance token", - "symbol": "NPXB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/NPXB-1E8/logo.png" - }, - { - "asset": "c714_tNPXSXEM-89C", - "type": "BEP2", - "address": "NPXSXEM-89C", - "name": "Pundi X NEM", - "symbol": "NPXSXEM", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/NPXSXEM-89C/logo.png" - }, - { - "asset": "c714_tONE-5F9", - "type": "BEP2", - "address": "ONE-5F9", - "name": "Harmony.One", - "symbol": "ONE", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ONE-5F9/logo.png" - }, - { - "asset": "c714_tONT-33D", - "type": "BEP2", - "address": "ONT-33D", - "name": "ONTBEP2", - "symbol": "ONT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ONT-33D/logo.png" - }, - { - "asset": "c714_tPHB-2DF", - "type": "BEP2", - "address": "PHB-2DF", - "name": "Red Pulse Phoenix Binance", - "symbol": "PHB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/PHB-2DF/logo.png" - }, - { - "asset": "c714_tPHV-4A1", - "type": "BEP2", - "address": "PHV-4A1", - "name": "PathHive Network", - "symbol": "PHV", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/PHV-4A1/logo.png" - }, - { - "asset": "c714_tPIBNB-43C", - "type": "BEP2", - "address": "PIBNB-43C", - "name": "PCHAIN Token", - "symbol": "PIBNB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/PIBNB-43C/logo.png" - }, - { - "asset": "c714_tPLG-D8D", - "type": "BEP2", - "address": "PLG-D8D", - "name": "Pledge Coin", - "symbol": "PLG", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/PLG-D8D/logo.png" - }, - { - "asset": "c714_tPVT-554", - "type": "BEP2", - "address": "PVT-554", - "name": "Pivot Token", - "symbol": "PVT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/PVT-554/logo.png" - }, - { - "asset": "c714_tPYN-C37", - "type": "BEP2", - "address": "PYN-C37", - "name": "paycentos", - "symbol": "PYN", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/PYN-C37/logo.png" - }, - { - "asset": "c714_tQBX-38C", - "type": "BEP2", - "address": "QBX-38C", - "name": "qiibeeToken", - "symbol": "QBX", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/QBX-38C/logo.png" - }, - { - "asset": "c714_tRAVEN-F66", - "type": "BEP2", - "address": "RAVEN-F66", - "name": "Raven Protocol", - "symbol": "RAVEN", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/RAVEN-F66/logo.png" - }, - { - "asset": "c714_tRUNE-B1A", - "type": "BEP2", - "address": "RUNE-B1A", - "name": "Rune", - "symbol": "RUNE", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/RUNE-B1A/logo.png" - }, - { - "asset": "c714_tSHR-DB6", - "type": "BEP2", - "address": "SHR-DB6", - "name": "ShareToken", - "symbol": "SHR", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/SHR-DB6/logo.png" - }, - { - "asset": "c714_tSLV-986", - "type": "BEP2", - "address": "SLV-986", - "name": "Silverway", - "symbol": "SLV", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/SLV-986/logo.png" - }, - { - "asset": "c714_tSPNDB-916", - "type": "BEP2", - "address": "SPNDB-916", - "name": "Spendcoin", - "symbol": "SPNDB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/SPNDB-916/logo.png" - }, - { - "asset": "c714_tSTYL-65B", - "type": "BEP2", - "address": "STYL-65B", - "name": "Yin Lang Music IP Token", - "symbol": "STYL", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/STYL-65B/logo.png" - }, - { - "asset": "c714_tSWINGBY-888", - "type": "BEP2", - "address": "SWINGBY-888", - "name": "Swingby Token", - "symbol": "SWINGBY", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/SWINGBY-888/logo.png" - }, - { - "asset": "c714_tSWIPE.B-DC0", - "type": "BEP2", - "address": "SWIPE.B-DC0", - "name": "SWIPE Token", - "symbol": "SWIPE.B", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/SWIPE.B-DC0/logo.png" - }, - { - "asset": "c714_tSXP-CCC", - "type": "BEP2", - "address": "SXP-CCC", - "name": "Swipe", - "symbol": "SXP", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/SXP-CCC/logo.png" - }, - { - "asset": "c714_tTM2-0C4", - "type": "BEP2", - "address": "TM2-0C4", - "name": "Traxia 2", - "symbol": "TM2", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/TM2-0C4/logo.png" - }, - { - "asset": "c714_tTOMOB-4BC", - "type": "BEP2", - "address": "TOMOB-4BC", - "name": "TomoChain", - "symbol": "TOMOB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/TOMOB-4BC/logo.png" - }, - { - "asset": "c714_tTOP-491", - "type": "BEP2", - "address": "TOP-491", - "name": "TOP Network", - "symbol": "TOP", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/TOP-491/logo.png" - }, - { - "asset": "c714_tTROY-9B8", - "type": "BEP2", - "address": "TROY-9B8", - "name": "TROY", - "symbol": "TROY", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/TROY-9B8/logo.png" - }, - { - "asset": "c714_tTRUE-D84", - "type": "BEP2", - "address": "TRUE-D84", - "name": "TrueChain", - "symbol": "TRUE", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/TRUE-D84/logo.png" - }, - { - "asset": "c714_tTRXB-2E6", - "type": "BEP2", - "address": "TRXB-2E6", - "name": "TRXB", - "symbol": "TRXB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/TRXB-2E6/logo.png" - }, - { - "asset": "c714_tTWT-8C2", - "type": "BEP2", - "address": "TWT-8C2", - "name": "Trust Wallet", - "symbol": "TWT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/TWT-8C2/logo.png" - }, - { - "asset": "c714_tUGAS-B0C", - "type": "BEP2", - "address": "UGAS-B0C", - "name": "Ultrain Coin", - "symbol": "UGAS", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/UGAS-B0C/logo.png" - }, - { - "asset": "c714_tUND-EBC", - "type": "BEP2", - "address": "UND-EBC", - "name": "United Network Distribution", - "symbol": "UND", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/UND-EBC/logo.png" - }, - { - "asset": "c714_tUPX-F3E", - "type": "BEP2", - "address": "UPX-F3E", - "name": "UPX", - "symbol": "UPX", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/UPX-F3E/logo.png" - }, - { - "asset": "c714_tVDX-A17", - "type": "BEP2", - "address": "VDX-A17", - "name": "Vodi X", - "symbol": "VDX", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/VDX-A17/logo.png" - }, - { - "asset": "c714_tVIDT-F53", - "type": "BEP2", - "address": "VIDT-F53", - "name": "V-ID Token", - "symbol": "VIDT", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/VIDT-F53/logo.png" - }, - { - "asset": "c714_tVOTE-FD4", - "type": "BEP2", - "address": "VOTE-FD4", - "name": "Vote", - "symbol": "VOTE", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/VOTE-FD4/logo.png" - }, - { - "asset": "c714_tWICC-01D", - "type": "BEP2", - "address": "WICC-01D", - "name": "WaykiChain Coin", - "symbol": "WICC", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/WICC-01D/logo.png" - }, - { - "asset": "c714_tWINB-41F", - "type": "BEP2", - "address": "WINB-41F", - "name": "WINB", - "symbol": "WINB", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/WINB-41F/logo.png" - }, - { - "asset": "c714_tWISH-2D5", - "type": "BEP2", - "address": "WISH-2D5", - "name": "MyWish", - "symbol": "WISH", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/WISH-2D5/logo.png" - }, - { - "asset": "c714_tWRX-ED1", - "type": "BEP2", - "address": "WRX-ED1", - "name": "WazirX Token", - "symbol": "WRX", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/WRX-ED1/logo.png" - }, - { - "asset": "c714_tXBASE-CD2", - "type": "BEP2", - "address": "XBASE-CD2", - "name": "Eterbase Coin", - "symbol": "XBASE", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/XBASE-CD2/logo.png" - }, - { - "asset": "c714_tXRP-BF2", - "type": "BEP2", - "address": "XRP-BF2", - "name": "XRP BEP2", - "symbol": "XRP", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/XRP-BF2/logo.png" - }, - { - "asset": "c714_tXRPBEAR-00B", - "type": "BEP2", - "address": "XRPBEAR-00B", - "name": "3X Short XRP Token", - "symbol": "XRPBEAR", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/XRPBEAR-00B/logo.png" - }, - { - "asset": "c714_tXRPBULL-E7C", - "type": "BEP2", - "address": "XRPBULL-E7C", - "name": "3X Long XRP Token", - "symbol": "XRPBULL", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/XRPBULL-E7C/logo.png" - }, - { - "asset": "c714_tXTZ-F7A", - "type": "BEP2", - "address": "XTZ-F7A", - "name": "XTZ BEP2", - "symbol": "XTZ", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/XTZ-F7A/logo.png" - }, - { - "asset": "c714_tXVS-795", - "type": "BEP2", - "address": "XVS-795", - "name": "Venus", - "symbol": "XVS", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/XVS-795/logo.png" - }, - { - "asset": "c714_tYFII-061", - "type": "BEP2", - "address": "YFII-061", - "name": "YFIIBEP2", - "symbol": "YFII", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/YFII-061/logo.png" - }, - { - "asset": "c714_tZEBI-84F", - "type": "BEP2", - "address": "ZEBI-84F", - "name": "ZEBI", - "symbol": "ZEBI", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ZEBI-84F/logo.png" - }, - { - "asset": "c714_tZEC-93E", - "type": "BEP2", - "address": "ZEC-93E", - "name": "ZECBEP2", - "symbol": "ZEC", - "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/binance/assets/ZEC-93E/logo.png" - } + ], "version": { - "major": 281, + "major": 389, "minor": 0, "patch": 0 } diff --git a/blockchains/binance/validators/assets/bva142lu7y78yk23cdeujduy9g8gqxp7xl3wrz4ska/logo.png b/blockchains/binance/validators/assets/bva142lu7y78yk23cdeujduy9g8gqxp7xl3wrz4ska/logo.png index 552647496023f..a2060a0a06ef8 100644 Binary files a/blockchains/binance/validators/assets/bva142lu7y78yk23cdeujduy9g8gqxp7xl3wrz4ska/logo.png and b/blockchains/binance/validators/assets/bva142lu7y78yk23cdeujduy9g8gqxp7xl3wrz4ska/logo.png differ diff --git a/blockchains/binance/validators/assets/bva16usf4rcvk9dyzpe8n82gq4nw9x5emlhhs2fftr/logo.png b/blockchains/binance/validators/assets/bva16usf4rcvk9dyzpe8n82gq4nw9x5emlhhs2fftr/logo.png index 1bdadf3a3a0c4..04df7170263e1 100644 Binary files a/blockchains/binance/validators/assets/bva16usf4rcvk9dyzpe8n82gq4nw9x5emlhhs2fftr/logo.png and b/blockchains/binance/validators/assets/bva16usf4rcvk9dyzpe8n82gq4nw9x5emlhhs2fftr/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png b/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png index 158d6b01d52fb..f5f3ada9451c6 100644 Binary files a/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png and b/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r/logo.png b/blockchains/binance/validators/assets/bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r/logo.png new file mode 100644 index 0000000000000..5d267ae6f79aa 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 0000000000000..4bd9e37665e70 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1m02zrj77ahdz3597nscq7a6dhxnwsuutsljcvj/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh/logo.png b/blockchains/binance/validators/assets/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh/logo.png new file mode 100644 index 0000000000000..8ebdc3023c8bd Binary files /dev/null and b/blockchains/binance/validators/assets/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1we4frydjkyejdzp506gzpljaqpqu5fs0flu60p/logo.png b/blockchains/binance/validators/assets/bva1we4frydjkyejdzp506gzpljaqpqu5fs0flu60p/logo.png new file mode 100644 index 0000000000000..68e8a3487a977 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1we4frydjkyejdzp506gzpljaqpqu5fs0flu60p/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1z0g0cg8dkgczr6r8t6khva3srn5mwj8w5tlu7h/logo.png b/blockchains/binance/validators/assets/bva1z0g0cg8dkgczr6r8t6khva3srn5mwj8w5tlu7h/logo.png index 828a26843ab94..21f0f410fc93c 100644 Binary files a/blockchains/binance/validators/assets/bva1z0g0cg8dkgczr6r8t6khva3srn5mwj8w5tlu7h/logo.png and b/blockchains/binance/validators/assets/bva1z0g0cg8dkgczr6r8t6khva3srn5mwj8w5tlu7h/logo.png differ diff --git a/blockchains/binance/validators/list.json b/blockchains/binance/validators/list.json index 61c60dd23226e..351a507fe974c 100644 --- a/blockchains/binance/validators/list.json +++ b/blockchains/binance/validators/list.json @@ -1,4 +1,10 @@ [ + { + "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", @@ -85,7 +91,7 @@ }, { "id": "bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785", - "name": "TW Staking", + "name": "Trust Nodes", "description": "The most trusted & secure crypto wallet", "website": "https://trustwallet.com" }, @@ -164,21 +170,39 @@ { "id": "bva142lu7y78yk23cdeujduy9g8gqxp7xl3wrz4ska", "name": "Legend", - "description": "Low Commission. High APR %. Reliable.", + "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.", + "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.", + "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", @@ -191,4 +215,4 @@ "description": "Tranchess protocol enables BNB holders to earn delegator rewards on top of protocol token (CHESS) airdrops.", "website": "https://tranchess.com/" } -] \ No newline at end of file +] diff --git a/blockchains/bnbt/info/info.json b/blockchains/bnbt/info/info.json new file mode 100644 index 0000000000000..81ca51addefad --- /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 0000000000000..b331d64d89c99 Binary files /dev/null and b/blockchains/bnbt/info/logo.png differ diff --git a/blockchains/boba/info/info.json b/blockchains/boba/info/info.json new file mode 100644 index 0000000000000..a70e413d238e7 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..0f91d9ff18ada Binary files /dev/null and b/blockchains/boba/info/logo.png differ diff --git a/blockchains/btcdiamond/info/info.json b/blockchains/btcdiamond/info/info.json new file mode 100644 index 0000000000000..d3dfcede98e84 --- /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": "twitter", + "url": "https://twitter.com/horizenglobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/btcdiamond/info/logo.png b/blockchains/btcdiamond/info/logo.png new file mode 100644 index 0000000000000..b1ab6e0cb7d05 Binary files /dev/null and b/blockchains/btcdiamond/info/logo.png differ diff --git a/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/info.json b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/info.json new file mode 100644 index 0000000000000..c3fd044cb517e --- /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": 6, + "status": "active", + "id": "asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snek/" + }, + { + "name": "twitter", + "url": "https://twitter.com/snekcoinada" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/logo.png b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/logo.png new file mode 100644 index 0000000000000..229cbdc6e1e01 Binary files /dev/null and b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/logo.png differ diff --git a/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/info.json b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/info.json new file mode 100644 index 0000000000000..59b3e599e96ae --- /dev/null +++ b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/info.json @@ -0,0 +1,37 @@ +{ + "name": "USD Coin", + "website": "https://www.centre.io", + "description": "USDC provides a fully collateralized US dollar stablecoin, and is based on the open source asset-backed stablecoin framework developed by Centre.", + "explorer": "https://cexplorer.io/asset/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23", + "research": "https://research.binance.com/en/projects/usd-coin", + "type": "CARDANO", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/logo.png b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/logo.png new file mode 100644 index 0000000000000..1c05ab87710a2 Binary files /dev/null and b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/logo.png differ diff --git a/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/info.json b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/info.json new file mode 100644 index 0000000000000..6a1928384e7e2 --- /dev/null +++ b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tether USD", + "website": "https://tether.to", + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "explorer": "https://cexplorer.io/asset/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743", + "type": "CARDANO", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/logo.png b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/logo.png new file mode 100644 index 0000000000000..dab9b67b68b3c Binary files /dev/null and b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/logo.png differ diff --git a/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/info.json b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/info.json new file mode 100644 index 0000000000000..fe576de6b2592 --- /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": "twitter", + "url": "https://twitter.com/Shibtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/logo.png b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/logo.png new file mode 100644 index 0000000000000..285c0d3cf767b Binary files /dev/null and b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/logo.png differ diff --git a/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/info.json b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/info.json new file mode 100644 index 0000000000000..c793cd242a81b --- /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": "twitter", + "url": "https://twitter.com/MELD_Defi" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/logo.png b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/logo.png new file mode 100644 index 0000000000000..68d2410a48bd5 Binary files /dev/null and b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/logo.png differ diff --git a/blockchains/cardano/info/info.json b/blockchains/cardano/info/info.json index 9b2cd7fe260b4..44378955a8ec8 100644 --- a/blockchains/cardano/info/info.json +++ b/blockchains/cardano/info/info.json @@ -8,6 +8,9 @@ "type": "coin", "decimals": 6, "status": "active", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", diff --git a/blockchains/cardano/info/logo.png b/blockchains/cardano/info/logo.png index 1ab80529f702a..b463a55eb2e3a 100644 Binary files a/blockchains/cardano/info/logo.png and b/blockchains/cardano/info/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool10akpqvczl93ep4rc59c0aqyn3dm0env2ydysuwmdm670wl24pd8/logo.png b/blockchains/cardano/validators/assets/pool10akpqvczl93ep4rc59c0aqyn3dm0env2ydysuwmdm670wl24pd8/logo.png new file mode 100644 index 0000000000000..82f97abdddbae 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 0000000000000..9e0a327cc9e0d 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 0000000000000..0ebea80d0462f 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 0000000000000..70ee36d1bc856 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 0000000000000..7647348100292 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 0000000000000..0354b951cc5b2 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 0000000000000..4602bf6767d05 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 0000000000000..cbc90da983488 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 0000000000000..a933237261808 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 0000000000000..b41947b2a51b9 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 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1du3r4a7xq60hg2x0wcz7lw5ya3qs74rk258c8kanp93rsqdqu45/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm/logo.png b/blockchains/cardano/validators/assets/pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1ju8f57hyvaa32tp85r468kuedvmjmcy56f8u9968drea57p50l5/logo.png b/blockchains/cardano/validators/assets/pool1ju8f57hyvaa32tp85r468kuedvmjmcy56f8u9968drea57p50l5/logo.png new file mode 100644 index 0000000000000..902353978b345 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 0000000000000..cbc90da983488 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 0000000000000..e9f1b4d009ba2 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1qqqqdktl6pq46td0mwut0qn30g7nlue0sete9wxl0hwsq37wrw8/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 0000000000000..6ccb375c5484e 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 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1yet04d4ykpp7me8uc2jx2glxrx88kt9uhmv6jeh7xkmtu5zucna/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1zz7x8ergn02chznayj9fjds2gk5q6prmpdr49faspd65kzqsrjs/logo.png b/blockchains/cardano/validators/assets/pool1zz7x8ergn02chznayj9fjds2gk5q6prmpdr49faspd65kzqsrjs/logo.png new file mode 100644 index 0000000000000..cbc90da983488 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 0000000000000..775e49aec4b81 --- /dev/null +++ b/blockchains/cardano/validators/list.json @@ -0,0 +1,110 @@ +[ + { + "id": "pool1vx9tzlkgafernd9vpjpxkenutx2gncj4yn88fpq69823qlwcqrt", + "name": "CARDANIANS.io", + "description": "", + "website": "https://cardanians.io" + }, + { + "id": "pool10akpqvczl93ep4rc59c0aqyn3dm0env2ydysuwmdm670wl24pd8", + "name": "Goat Stake", + "description": "", + "website": "https://goatstake.com" + }, + { + "id": "pool1qqqqdktl6pq46td0mwut0qn30g7nlue0sete9wxl0hwsq37wrw8", + "name": "Straight Pool", + "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": "Earn higher yields with AutoStake.com", + "website": "https://autostake.com" + }, + { + "id": "pool1ljywsch33t7gaf02aeeqkqpuku0ngpwl9fm04t7u5sl5xyunmgp", + "name": "AutoStake II", + "description": "Earn higher yields with AutoStake.com", + "website": "https://autostake.com" + }, + { + "id": "pool194usk2h8vcq6yw89xs5asrvw22g08kcfy72xyfrnnkg6qrhtlfw", + "name": "AutoStake III", + "description": "Earn higher yields with AutoStake.com", + "website": "https://autostake.com" + }, + { + "id": "pool1yet04d4ykpp7me8uc2jx2glxrx88kt9uhmv6jeh7xkmtu5zucna", + "name": "AutoStake IV", + "description": "Earn higher yields with AutoStake.com", + "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" + }, + { + "id": "pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + } +] diff --git a/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json b/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json new file mode 100644 index 0000000000000..b1a4ab45087de --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/logo.png b/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/logo.png new file mode 100644 index 0000000000000..6c156aba62660 Binary files /dev/null and b/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/logo.png differ diff --git a/blockchains/celo/assets/0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C/info.json b/blockchains/celo/assets/0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C/info.json new file mode 100644 index 0000000000000..5cf8544e396e4 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6c09bb9a38215 Binary files /dev/null and b/blockchains/celo/assets/0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C/logo.png differ diff --git a/blockchains/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 0000000000000..d4877bc218601 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/celo/info/info.json b/blockchains/celo/info/info.json index 710a6f0f928fa..8ba9e1f9a072e 100644 --- a/blockchains/celo/info/info.json +++ b/blockchains/celo/info/info.json @@ -6,8 +6,12 @@ "research": "https://docs.celo.org/", "symbol": "CELO", "type": "coin", - "decimals": 8, + "rpc_url": "https://forno.celo.org", + "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "github", @@ -22,4 +26,4 @@ "url": "https://celo.org/papers" } ] -} \ No newline at end of file +} diff --git a/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/info.json b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/info.json new file mode 100644 index 0000000000000..053cc055028c0 --- /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": "twitter", + "url": "https://twitter.com/ethdotorg" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g" + }, + { + "name": "discord", + "url": "https://discord.com/invite/CetY6Y4" + } + ] +} \ No newline at end of file diff --git a/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/logo.png b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/logo.png new file mode 100644 index 0000000000000..df4a0f3a19b3a Binary files /dev/null and b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/logo.png differ diff --git a/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/info.json b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/info.json new file mode 100644 index 0000000000000..23bcb2c48fb5e --- /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": "twitter", + "url": "https://twitter.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/logo.png b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/logo.png new file mode 100644 index 0000000000000..4a53c2480431f Binary files /dev/null and b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/logo.png differ diff --git a/blockchains/cfxevm/info/info.json b/blockchains/cfxevm/info/info.json new file mode 100644 index 0000000000000..7c3e510e3582c --- /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": "twitter", + "url": "https://twitter.com/Conflux_Network" + } + ] +} \ No newline at end of file diff --git a/blockchains/cfxevm/info/logo.png b/blockchains/cfxevm/info/logo.png new file mode 100644 index 0000000000000..c8907ec9be623 Binary files /dev/null and b/blockchains/cfxevm/info/logo.png differ diff --git a/blockchains/classic/info/info.json b/blockchains/classic/info/info.json index 95e5784b23f60..25a05bdfb5733 100644 --- a/blockchains/classic/info/info.json +++ b/blockchains/classic/info/info.json @@ -4,6 +4,8 @@ "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, diff --git a/blockchains/comdex/info/info.json b/blockchains/comdex/info/info.json new file mode 100644 index 0000000000000..65b945bde05e7 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..919e99026dd0c Binary files /dev/null and b/blockchains/comdex/info/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper16jaa0d8tth8v5ae48s4a5zqjvdp768nqft9h5r/logo.png b/blockchains/comdex/validators/assets/comdexvaloper16jaa0d8tth8v5ae48s4a5zqjvdp768nqft9h5r/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper16jaa0d8tth8v5ae48s4a5zqjvdp768nqft9h5r/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd/logo.png b/blockchains/comdex/validators/assets/comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3/logo.png b/blockchains/comdex/validators/assets/comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3/logo.png differ diff --git a/blockchains/comdex/validators/list.json b/blockchains/comdex/validators/list.json new file mode 100644 index 0000000000000..356e51cc00027 --- /dev/null +++ b/blockchains/comdex/validators/list.json @@ -0,0 +1,20 @@ +[ + { + "id": "comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd", + "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": "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" + } +] \ 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 0000000000000..1d606faab5c65 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a8a6a75a598df Binary files /dev/null and b/blockchains/coreum/info/logo.png differ diff --git a/blockchains/coreum/validators/assets/corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5/logo.png b/blockchains/coreum/validators/assets/corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/coreum/validators/assets/corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5/logo.png differ diff --git a/blockchains/coreum/validators/list.json b/blockchains/coreum/validators/list.json new file mode 100644 index 0000000000000..6eba4002b5ca5 --- /dev/null +++ b/blockchains/coreum/validators/list.json @@ -0,0 +1,8 @@ +[ + { + "id": "corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + } +] \ No newline at end of file diff --git a/blockchains/cosmos/chainlist.json b/blockchains/cosmos/chainlist.json new file mode 100644 index 0000000000000..fc060c826476f --- /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/validators/assets/cosmosvaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8dnp684/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8dnp684/logo.png new file mode 100644 index 0000000000000..434f53ccac24a Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8dnp684/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5/logo.png new file mode 100644 index 0000000000000..dc486ae388c52 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper16yupepagywvlk7uhpfchtwa0stu5f8cyhh54f2/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper16yupepagywvlk7uhpfchtwa0stu5f8cyhh54f2/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper16yupepagywvlk7uhpfchtwa0stu5f8cyhh54f2/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 0000000000000..95674f5ffbf9a 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 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1gpx52r9h3zeul45amvcy2pysgvcwddxrgx6cnv/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 0000000000000..0dc38d6a81223 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1hjadhj9nqzpye2vkmkz4thahhd0z8dh3udhq74/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 0000000000000..145cb3cb09913 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1r2dthxctqzhwg299e7aaeqwfkgcc9hg8k3yd7m/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png index 3c29ee005d51c..0888af01c5da5 100644 Binary files a/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png and b/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q/logo.png new file mode 100644 index 0000000000000..abcfc3298bba4 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q/logo.png differ diff --git a/blockchains/cosmos/validators/list.json b/blockchains/cosmos/validators/list.json index 556f555c99bee..02dcae2ebf7f8 100644 --- a/blockchains/cosmos/validators/list.json +++ b/blockchains/cosmos/validators/list.json @@ -1,10 +1,34 @@ [ + { + "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", @@ -236,7 +260,7 @@ { "id": "cosmosvaloper1rcp29q3hpd246n6qak7jluqep4v006cdsc2kkl", "name": "in3s.com", - "description": "Trusted by the ICF; decentralization advocate; Game-Of-Stakes winner; active Cosmos community member since 2017.", + "description": "Trusted by the ICF; genesis validator; never slashed; decentralization advocate; Game-Of-Stakes winner; Game-Of-Chains winner; active Cosmos community member since 2017.", "website": "https://in3s.com" }, { @@ -289,9 +313,9 @@ }, { "id": "cosmosvaloper1n229vhepft6wnkt5tjpwmxdmcnfz55jv3vp77d", - "name": "Allnodes", - "description": "Reliable non-custodial Validator run by the industry leader - Allnodes", - "website": "https://cosmos.allnodes.com" + "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/atom/staking" }, { "id": "cosmosvaloper1udpsgkgyutgsglauk9vk9rs03a3skc62gup9ny", @@ -307,9 +331,9 @@ }, { "id": "cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna", - "name": "Genesis Lab", - "description": "Genesis Lab is a validation nodes operator in PoS networks and blockchain-focused software development company", - "website": "https://genesislab.net" + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" }, { "id": "cosmosvaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcvrj90c", @@ -340,5 +364,29 @@ "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": "danku_zone w/ DAIC", + "description": "The official validator node from danku_r (YouTube, Twitter, Medium) run by DAIC (https://t.me/validator_danku_DAIC)", + "website": "https://daic.capital/danku_zone" } -] \ No newline at end of file +] diff --git a/blockchains/crescent/info/info.json b/blockchains/crescent/info/info.json new file mode 100644 index 0000000000000..2b8f4f6c341ef --- /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": "twitter", + "url": "https://twitter.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 0000000000000..303368e4a61b6 Binary files /dev/null and b/blockchains/crescent/info/logo.png differ diff --git a/blockchains/crescent/validators/assets/crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f/logo.png b/blockchains/crescent/validators/assets/crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f/logo.png differ diff --git a/blockchains/crescent/validators/assets/crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc/logo.png b/blockchains/crescent/validators/assets/crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc/logo.png differ diff --git a/blockchains/crescent/validators/assets/crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf/logo.png b/blockchains/crescent/validators/assets/crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf/logo.png differ diff --git a/blockchains/crescent/validators/list.json b/blockchains/crescent/validators/list.json new file mode 100644 index 0000000000000..ce9b271cc81fd --- /dev/null +++ b/blockchains/crescent/validators/list.json @@ -0,0 +1,20 @@ +[ + { + "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" + } +] \ No newline at end of file diff --git a/blockchains/cronos/info/info.json b/blockchains/cronos/info/info.json new file mode 100644 index 0000000000000..3bb8c0e669327 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/cronos/info/logo.png b/blockchains/cronos/info/logo.png new file mode 100644 index 0000000000000..ae4b44e694528 Binary files /dev/null and b/blockchains/cronos/info/logo.png differ diff --git a/blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/info.json b/blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/info.json new file mode 100644 index 0000000000000..5b0c752b6a4fd --- /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": "twitter", + "url": "https://twitter.com/dogelonmars" + }, + { + "name": "telegram", + "url": "https://t.me/DogelonMars" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogelon/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/logo.png b/blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/logo.png new file mode 100644 index 0000000000000..adc4fb004e419 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 0000000000000..bbcad0b22be2e --- /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": "twitter", + "url": "https://twitter.com/cardano" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cardano/" + }, + { + "name": "telegram", + "url": "https://t.me/CardanoAnnouncements" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cardano/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/logo.png b/blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/logo.png new file mode 100644 index 0000000000000..1ab80529f702a 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 0000000000000..bef05940b879c --- /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": "twitter", + "url": "https://twitter.com/FantomFDN" + }, + { + "name": "telegram", + "url": "https://t.me/Fantom_English" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/fantom/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantom/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/logo.png b/blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/logo.png new file mode 100644 index 0000000000000..4c55ec1d7621e 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 0000000000000..a5bb571b6a3f2 --- /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": "twitter", + "url": "https://twitter.com/Tether_to" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/tether/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png b/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png new file mode 100644 index 0000000000000..ddeecff30f0f5 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 0000000000000..6112a818bc804 --- /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": "twitter", + "url": "https://twitter.com/quant_network" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/QuantNetwork/" + }, + { + "name": "blog", + "url": "https://medium.com/@quant_network" + }, + { + "name": "facebook", + "url": "https://facebook.com/quantnetwork" + }, + { + "name": "telegram", + "url": "https://t.me/quantnetworkannouncements" + }, + { + "name": "whitepaper", + "url": "https://files.quant.network/files.quant.network/Quant_Overledger_Whitepaper_v0.1.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/quant-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/logo.png b/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/logo.png new file mode 100644 index 0000000000000..06f52b8aa2f3d 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 0000000000000..4d8f0e7a0cfb3 --- /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": "twitter", + "url": "https://twitter.com/chainlink" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/chainlink" + }, + { + "name": "whitepaper", + "url": "https://link.smartcontract.com/whitepaper" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/logo.png b/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/logo.png new file mode 100644 index 0000000000000..ab55f5e21fae2 Binary files /dev/null and b/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/logo.png differ diff --git a/blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/info.json b/blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/info.json new file mode 100644 index 0000000000000..c88d10ad4fcb9 --- /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": "twitter", + "url": "https://twitter.com/dappradar" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dappradar/" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/GdhNjQ8PMhCZ_a0CZutmXg" + } + ], + "tags": [ + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/logo.png b/blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/logo.png new file mode 100644 index 0000000000000..d054ff564f1f9 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 0000000000000..2ce4c6eb2db1f --- /dev/null +++ b/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json @@ -0,0 +1,29 @@ +{ + "name": "SHIBA INU", + "symbol": "SHIB", + "type": "CRC20", + "decimals": 18, + "description": "According to SHIBA INU, the reasoning behind the creation of SHIBA is that Shibas constantly forget where they bury their treasure.", + "website": "https://shibatoken.com/", + "explorer": "https://crypto.org/explorer/account/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee", + "status": "active", + "id": "0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee", + "links": [ + { + "name": "telegram", + "url": "https://t.me/shibainuthedogecoinkiller" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shiba-inu/" + } + ], + "tags": [ + "deflationary", + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/logo.png b/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/logo.png new file mode 100644 index 0000000000000..ff2f06032bb03 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 0000000000000..b46bc623ec6c3 --- /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": "twitter", + "url": "https://twitter.com/radarrelay?lang=en" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + }, + { + "name": "telegram", + "url": "https://t.me/radar_relay" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/weth/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/logo.png b/blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/logo.png new file mode 100644 index 0000000000000..4237ea5518cee 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 0000000000000..eba7959636da1 --- /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": "twitter", + "url": "https://twitter.com/harmonyprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/harmony_one" + }, + { + "name": "facebook", + "url": "https://facebook.com/harmonyoneprotocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/logo.png b/blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/logo.png new file mode 100644 index 0000000000000..deffb84588af7 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 0000000000000..69bcedf5ffe26 --- /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": "twitter", + "url": "https://twitter.com/0xPolygon" + }, + { + "name": "telegram", + "url": "https://t.me/polygonofficial" + }, + { + "name": "github", + "url": "https://github.com/maticnetwork/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polygon/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/logo.png b/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/logo.png new file mode 100644 index 0000000000000..9e2aeeb433a57 Binary files /dev/null and b/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/logo.png differ diff --git a/blockchains/cryptoorg/info/logo.png b/blockchains/cryptoorg/info/logo.png index ae4b44e694528..08d6bd8efb35b 100644 Binary files a/blockchains/cryptoorg/info/logo.png and b/blockchains/cryptoorg/info/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj/logo.png new file mode 100644 index 0000000000000..9f0f2ffb1580b Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h/logo.png b/blockchains/cryptoorg/validators/assets/crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1td4trxpsa3992sqh70erxyeuyjdxdce2kmuzrt/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1td4trxpsa3992sqh70erxyeuyjdxdce2kmuzrt/logo.png new file mode 100644 index 0000000000000..4169fbd4c6092 Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1td4trxpsa3992sqh70erxyeuyjdxdce2kmuzrt/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1u5ryf5jwc2jhd9xyvmasfqzacxp03v8dcj8xry/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1u5ryf5jwc2jhd9xyvmasfqzacxp03v8dcj8xry/logo.png new file mode 100644 index 0000000000000..5870da0bcc758 Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1u5ryf5jwc2jhd9xyvmasfqzacxp03v8dcj8xry/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1up72gll847cqf5wrdedp66pklvpmqxcctr63nh/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1up72gll847cqf5wrdedp66pklvpmqxcctr63nh/logo.png new file mode 100644 index 0000000000000..b2402257153de Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1up72gll847cqf5wrdedp66pklvpmqxcctr63nh/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1vk5zc056nfngucy69eyveupytkhkr2ya3yj9r0/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1vk5zc056nfngucy69eyveupytkhkr2ya3yj9r0/logo.png new file mode 100644 index 0000000000000..cae8c0bcf8dd9 Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1vk5zc056nfngucy69eyveupytkhkr2ya3yj9r0/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1yr3pm394j5yz3zsz5gjc28eqhvnre9389seafz/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1yr3pm394j5yz3zsz5gjc28eqhvnre9389seafz/logo.png new file mode 100644 index 0000000000000..40d99e260a31d Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1yr3pm394j5yz3zsz5gjc28eqhvnre9389seafz/logo.png differ diff --git a/blockchains/cryptoorg/validators/list.json b/blockchains/cryptoorg/validators/list.json new file mode 100644 index 0000000000000..cc74839f64797 --- /dev/null +++ b/blockchains/cryptoorg/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "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" + } +] diff --git a/blockchains/elrond/assets/ASH-a642d1/info.json b/blockchains/elrond/assets/ASH-a642d1/info.json new file mode 100644 index 0000000000000..fc55783dd782d --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/ASH-a642d1/logo.png b/blockchains/elrond/assets/ASH-a642d1/logo.png new file mode 100644 index 0000000000000..641969dbfe45a 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 0000000000000..e5b3b5d39f982 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/ASHWEGLD-38545c/logo.png b/blockchains/elrond/assets/ASHWEGLD-38545c/logo.png new file mode 100644 index 0000000000000..a3f6037e9f646 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 0000000000000..f33f3518819fa --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/BHAT-c1fde3/logo.png b/blockchains/elrond/assets/BHAT-c1fde3/logo.png new file mode 100644 index 0000000000000..b02967b8c478f 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 0000000000000..56316f4b60472 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/BHATWEGLD-f45935/logo.png b/blockchains/elrond/assets/BHATWEGLD-f45935/logo.png new file mode 100644 index 0000000000000..a3f6037e9f646 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 0000000000000..aa1c18002a695 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/CRT-52decf/logo.png b/blockchains/elrond/assets/CRT-52decf/logo.png new file mode 100644 index 0000000000000..13bda232b44e7 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 0000000000000..c6487404523b9 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/CRTWEGLD-1fac3f/logo.png b/blockchains/elrond/assets/CRTWEGLD-1fac3f/logo.png new file mode 100644 index 0000000000000..a3f6037e9f646 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 0000000000000..a1a2ac0537e20 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/CRU-a5f4aa/logo.png b/blockchains/elrond/assets/CRU-a5f4aa/logo.png new file mode 100644 index 0000000000000..a80795f940501 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 0000000000000..47a45188aa59d --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/CRUWEGLD-76c269/logo.png b/blockchains/elrond/assets/CRUWEGLD-76c269/logo.png new file mode 100644 index 0000000000000..4a866ea6cc363 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 0000000000000..c867ee76288d5 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/CYBER-489c1c/logo.png b/blockchains/elrond/assets/CYBER-489c1c/logo.png new file mode 100644 index 0000000000000..affb6cdf67c33 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 0000000000000..4dc1a49f3e3a3 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/CYBERWEGLD-45a866/logo.png b/blockchains/elrond/assets/CYBERWEGLD-45a866/logo.png new file mode 100644 index 0000000000000..a3f6037e9f646 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 index 84aaf7138f0e8..25a311838f20c 100644 --- a/blockchains/elrond/assets/EGLDMEX-0be9e5/info.json +++ b/blockchains/elrond/assets/EGLDMEX-0be9e5/info.json @@ -1,41 +1,41 @@ { "type": "ESDT", "id": "EGLDMEX-0be9e5", - "name": "EGLD/MEX LP", + "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 the Maiar DEX.", - "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/tokens/EGLDMEX-0be9e5", + "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.maiar.exchange" + "url": "https://docs.xexchange.com" }, { "name": "twitter", - "url": "https://twitter.com/MaiarExchange" + "url": "https://twitter.com/xExchangeApp" }, { "name": "telegram", - "url": "https://t.me/MaiarExchange" + "url": "https://t.me/xExchangeApp" }, { "name": "facebook", - "url": "https://facebook.com/ElrondNetwork" + "url": "https://facebook.com/MultiversX" }, { "name": "blog", - "url": "https://elrond.com/blog" + "url": "https://multiversx.com/blog" }, { "name": "github", - "url": "https://github.com/ElrondNetwork" + "url": "https://github.com/multiversx" }, { "name": "source_code", - "url": "https://github.com/ElrondNetwork/sc-dex-rs" + "url": "https://github.com/multiversx/mx-exchange-sc" } ], "tags": [ diff --git a/blockchains/elrond/assets/EGLDMEXF-5bcc57/info.json b/blockchains/elrond/assets/EGLDMEXF-5bcc57/info.json index 209c6da4645f1..22a1afcbde628 100644 --- a/blockchains/elrond/assets/EGLDMEXF-5bcc57/info.json +++ b/blockchains/elrond/assets/EGLDMEXF-5bcc57/info.json @@ -1,13 +1,13 @@ { - "type": "ESDTSFT", - "id": "EGLDMEXF-5bcc57", "name": "EGLD/MEX LP Staked", "symbol": "EGLDMEXF", + "type": "ESDT", "decimals": 18, - "status": "active", "description": "This token tracks your LP token stake in the EGLD/MEX farm on the Maiar DEX.", "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/collections/EGLDMEXF-5bcc57", + "explorer": "https://explorer.multiversx.com/tokens/EGLDMEXF-5bcc57", + "status": "abandoned", + "id": "EGLDMEXF-5bcc57", "links": [ { "name": "docs", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/EGLDMEXF-5bcc57/logo.png b/blockchains/elrond/assets/EGLDMEXF-5bcc57/logo.png deleted file mode 100644 index d66054565df9e..0000000000000 Binary files a/blockchains/elrond/assets/EGLDMEXF-5bcc57/logo.png and /dev/null differ diff --git a/blockchains/elrond/assets/EGLDRIDE-7bd51a/info.json b/blockchains/elrond/assets/EGLDRIDE-7bd51a/info.json new file mode 100644 index 0000000000000..6d12d020226ab --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/EGLDRIDE-7bd51a/logo.png b/blockchains/elrond/assets/EGLDRIDE-7bd51a/logo.png new file mode 100644 index 0000000000000..4a866ea6cc363 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 index 74e331a21a889..37160ad50cbb9 100644 --- a/blockchains/elrond/assets/EGLDUSDC-594e5e/info.json +++ b/blockchains/elrond/assets/EGLDUSDC-594e5e/info.json @@ -1,41 +1,41 @@ { "type": "ESDT", "id": "EGLDUSDC-594e5e", - "name": "EGLD/USDC LP", + "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 the Maiar DEX.", - "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/tokens/EGLDUSDC-594e5e", + "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.maiar.exchange" + "url": "https://docs.xexchange.com" }, { "name": "twitter", - "url": "https://twitter.com/MaiarExchange" + "url": "https://twitter.com/xExchangeApp" }, { "name": "telegram", - "url": "https://t.me/MaiarExchange" + "url": "https://t.me/xExchangeApp" }, { "name": "facebook", - "url": "https://facebook.com/ElrondNetwork" + "url": "https://facebook.com/MultiversX" }, { "name": "blog", - "url": "https://elrond.com/blog" + "url": "https://multiversx.com/blog" }, { "name": "github", - "url": "https://github.com/ElrondNetwork" + "url": "https://github.com/multiversx" }, { "name": "source_code", - "url": "https://github.com/ElrondNetwork/sc-dex-rs" + "url": "https://github.com/multiversx/mx-exchange-sc" } ], "tags": [ diff --git a/blockchains/elrond/assets/EGLDUSDCF-8600f8/info.json b/blockchains/elrond/assets/EGLDUSDCF-8600f8/info.json index 0badcdafa0453..e4d038926eced 100644 --- a/blockchains/elrond/assets/EGLDUSDCF-8600f8/info.json +++ b/blockchains/elrond/assets/EGLDUSDCF-8600f8/info.json @@ -1,13 +1,13 @@ { - "type": "ESDTSFT", - "id": "EGLDUSDCF-8600f8", "name": "EGLD/USDC LP Staked", "symbol": "EGLDUSDCF", + "type": "ESDT", "decimals": 18, - "status": "active", "description": "This token tracks your LP token stake in the EGLD/USDC farm on the Maiar DEX.", "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/collections/EGLDUSDCF-8600f8", + "explorer": "https://explorer.multiversx.com/tokens/EGLDUSDCF-8600f8", + "status": "abandoned", + "id": "EGLDUSDCF-8600f8", "links": [ { "name": "docs", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/EGLDUSDCF-8600f8/logo.png b/blockchains/elrond/assets/EGLDUSDCF-8600f8/logo.png deleted file mode 100644 index d66054565df9e..0000000000000 Binary files a/blockchains/elrond/assets/EGLDUSDCF-8600f8/logo.png and /dev/null differ diff --git a/blockchains/elrond/assets/ITHEUM-df6f26/info.json b/blockchains/elrond/assets/ITHEUM-df6f26/info.json new file mode 100644 index 0000000000000..c8482d6f244f8 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/ITHEUM-df6f26/logo.png b/blockchains/elrond/assets/ITHEUM-df6f26/logo.png new file mode 100644 index 0000000000000..86d295ff74280 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 0000000000000..4b4d66fc2795c --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/ITHWEGLD-1adc53/logo.png b/blockchains/elrond/assets/ITHWEGLD-1adc53/logo.png new file mode 100644 index 0000000000000..4a866ea6cc363 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 index 5bc44cfadb7dd..6b697a7b886d5 100644 --- a/blockchains/elrond/assets/LKMEX-aab910/info.json +++ b/blockchains/elrond/assets/LKMEX-aab910/info.json @@ -1,13 +1,13 @@ { - "type": "ESDTSFT", - "id": "LKMEX-aab910", "name": "Locked MEX", "symbol": "LKMEX", + "type": "ESDT", "decimals": 18, - "status": "active", "description": "Locked MEX. Equal in value to MEX. Not tradeable.", "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/collections/LKMEX-aab910", + "explorer": "https://explorer.multiversx.com/tokens/LKMEX-aab910", + "status": "abandoned", + "id": "LKMEX-aab910", "links": [ { "name": "docs", @@ -42,4 +42,4 @@ "defi", "governance" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/LKMEX-aab910/logo.png b/blockchains/elrond/assets/LKMEX-aab910/logo.png deleted file mode 100644 index 1b2644d746ee3..0000000000000 Binary files a/blockchains/elrond/assets/LKMEX-aab910/logo.png and /dev/null differ diff --git a/blockchains/elrond/assets/MEX-455c57/info.json b/blockchains/elrond/assets/MEX-455c57/info.json index 143f34767b19f..8bd1d600c1a92 100644 --- a/blockchains/elrond/assets/MEX-455c57/info.json +++ b/blockchains/elrond/assets/MEX-455c57/info.json @@ -1,49 +1,49 @@ { "type": "ESDT", "id": "MEX-455c57", - "name": "MEX", + "name": "MEX (on MultiversX)", "symbol": "MEX", "decimals": 18, "status": "active", - "description": "MEX is the utility token of the Maiar Exchange.", - "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/tokens/MEX-455c57", + "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.maiar.exchange" + "url": "https://docs.xexchange.com" }, { "name": "twitter", - "url": "https://twitter.com/MaiarExchange" + "url": "https://twitter.com/xExchangeApp" }, { "name": "telegram", - "url": "https://t.me/MaiarExchange" + "url": "https://t.me/xExchangeApp" }, { "name": "facebook", - "url": "https://facebook.com/ElrondNetwork" + "url": "https://facebook.com/MultiversX" }, { "name": "blog", - "url": "https://elrond.com/blog" + "url": "https://multiversx.com/blog" }, { "name": "github", - "url": "https://github.com/ElrondNetwork" + "url": "https://github.com/multiversx" }, { "name": "source_code", - "url": "https://github.com/ElrondNetwork/sc-dex-rs" + "url": "https://github.com/multiversx/mx-exchange-sc" }, { "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/maiar" + "url": "https://coinmarketcap.com/currencies/xexchange" }, { "name": "coingecko", - "url": "https://coingecko.com/en/coins/maiar-dex" + "url": "https://coingecko.com/en/coins/xexchange" } ], "tags": [ diff --git a/blockchains/elrond/assets/MEXFARM-e7af52/info.json b/blockchains/elrond/assets/MEXFARM-e7af52/info.json index 6237acb6f45ea..1172f9966ea69 100644 --- a/blockchains/elrond/assets/MEXFARM-e7af52/info.json +++ b/blockchains/elrond/assets/MEXFARM-e7af52/info.json @@ -1,13 +1,13 @@ { - "type": "ESDTSFT", - "id": "MEXFARM-e7af52", "name": "MEX Staked", "symbol": "MEXFARM", + "type": "ESDT", "decimals": 18, - "status": "active", "description": "This token tracks your MEX stake in the MEX farm on the Maiar DEX.", "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/collections/MEXFARM-e7af52", + "explorer": "https://explorer.multiversx.com/tokens/MEXFARM-e7af52", + "status": "abandoned", + "id": "MEXFARM-e7af52", "links": [ { "name": "docs", @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/elrond/assets/MEXFARM-e7af52/logo.png b/blockchains/elrond/assets/MEXFARM-e7af52/logo.png deleted file mode 100644 index d66054565df9e..0000000000000 Binary files a/blockchains/elrond/assets/MEXFARM-e7af52/logo.png and /dev/null differ diff --git a/blockchains/elrond/assets/OFE-29eb54/info.json b/blockchains/elrond/assets/OFE-29eb54/info.json new file mode 100644 index 0000000000000..92c567e6bcf0f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/OFE-29eb54/logo.png b/blockchains/elrond/assets/OFE-29eb54/logo.png new file mode 100644 index 0000000000000..cfd0570e99e2a 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 0000000000000..a8e4190c2379a --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/QWT-46ac01/logo.png b/blockchains/elrond/assets/QWT-46ac01/logo.png new file mode 100644 index 0000000000000..039e7a50be353 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 0000000000000..2b91158462409 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/QWTWEGLD-3eff55/logo.png b/blockchains/elrond/assets/QWTWEGLD-3eff55/logo.png new file mode 100644 index 0000000000000..a3f6037e9f646 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 index e185106675981..47f60b908bbd1 100644 --- a/blockchains/elrond/assets/RIDE-7d18e9/info.json +++ b/blockchains/elrond/assets/RIDE-7d18e9/info.json @@ -1,13 +1,13 @@ { "type": "ESDT", "id": "RIDE-7d18e9", - "name": "holoride", + "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.elrond.com/tokens/RIDE-7d18e9", + "explorer": "https://explorer.multiversx.com/tokens/RIDE-7d18e9", "links": [ { "name": "blog", diff --git a/blockchains/elrond/assets/SFIT-aebc90/info.json b/blockchains/elrond/assets/SFIT-aebc90/info.json new file mode 100644 index 0000000000000..90eaf0214c3f6 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/SFIT-aebc90/logo.png b/blockchains/elrond/assets/SFIT-aebc90/logo.png new file mode 100644 index 0000000000000..89e144aebebe4 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 0000000000000..d1e3a86a59143 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/SFITWEGLD-934909/logo.png b/blockchains/elrond/assets/SFITWEGLD-934909/logo.png new file mode 100644 index 0000000000000..a3f6037e9f646 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 index 120f966e6c969..67e4042a1c68e 100644 --- a/blockchains/elrond/assets/USDC-c76f1f/info.json +++ b/blockchains/elrond/assets/USDC-c76f1f/info.json @@ -1,13 +1,13 @@ { "type": "ESDT", "id": "USDC-c76f1f", - "name": "Wrapped USDC", + "name": "Wrapped USDC (on MultiversX)", "symbol": "USDC", "decimals": 6, "status": "active", - "description": "USDC stablecoin originating on Ethereum, bridged as an ESDT token on Elrond. 1 USDC = 1 Wrapped USDC", - "website": "https://www.centre.io/usdc", - "explorer": "https://explorer.elrond.com/tokens/USDC-c76f1f", + "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", diff --git a/blockchains/elrond/assets/UTK-2f80e9/info.json b/blockchains/elrond/assets/UTK-2f80e9/info.json new file mode 100644 index 0000000000000..aadbaa9d21659 --- /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": "twitter", + "url": "https://twitter.com/utrust" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/utrust" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/utrust" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/elrond/assets/UTK-2f80e9/logo.png b/blockchains/elrond/assets/UTK-2f80e9/logo.png new file mode 100644 index 0000000000000..04dbcdc4144b9 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 0000000000000..414cedcc13dd5 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/UTKWEGLD-c960d1/logo.png b/blockchains/elrond/assets/UTKWEGLD-c960d1/logo.png new file mode 100644 index 0000000000000..4a866ea6cc363 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 index af2909bf02d14..4179dce6c23e4 100644 --- a/blockchains/elrond/assets/WEGLD-bd4d79/info.json +++ b/blockchains/elrond/assets/WEGLD-bd4d79/info.json @@ -1,45 +1,45 @@ { "type": "ESDT", "id": "WEGLD-bd4d79", - "name": "Wrapped EGLD", + "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 Elrond blockchain.", - "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/tokens/WEGLD-bd4d79", + "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.elrond.com" + "url": "https://docs.multiversx.com" }, { "name": "twitter", - "url": "https://twitter.com/elrondnetwork" + "url": "https://twitter.com/MultiversX" }, { "name": "telegram", - "url": "https://t.me/ElrondNetwork" + "url": "https://t.me/MultiversX" }, { "name": "facebook", - "url": "https://facebook.com/ElrondNetwork" + "url": "https://facebook.com/MultiversX" }, { "name": "blog", - "url": "https://elrond.com/blog" + "url": "https://multiversx.com/blog" }, { "name": "github", - "url": "https://github.com/ElrondNetwork" + "url": "https://github.com/multiversx" }, { "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/wrapped-elrond-egld" + "url": "https://coinmarketcap.com/currencies/wrapped-multiversx-egld" }, { "name": "coingecko", - "url": "https://coingecko.com/en/coins/wrapped-elrond" + "url": "https://coingecko.com/en/coins/wrapped-egld" } ], "tags": [ diff --git a/blockchains/elrond/assets/WEGLD-bd4d79/logo.png b/blockchains/elrond/assets/WEGLD-bd4d79/logo.png index 5a99f7a3d907f..bc7f1ccaeff21 100644 Binary files a/blockchains/elrond/assets/WEGLD-bd4d79/logo.png 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 0000000000000..bcae799bb4b4a --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/ZPAY-247875/logo.png b/blockchains/elrond/assets/ZPAY-247875/logo.png new file mode 100644 index 0000000000000..040752596e37a 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 0000000000000..1fb7d488af846 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/logo.png b/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/logo.png new file mode 100644 index 0000000000000..4a866ea6cc363 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 index c72e41d89ceac..ffd3e702ab817 100644 --- a/blockchains/elrond/info/info.json +++ b/blockchains/elrond/info/info.json @@ -1,11 +1,49 @@ { - "name": "Elrond", - "website": "https://elrond.com", - "description": "A Scalable Value Transfer Protocol For The Digital Economy.", - "explorer": "https://explorer.elrond.com", - "research": "https://research.binance.com/en/projects/elrond", - "symbol": "eGLD", + "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" -} \ No newline at end of file + "status": "active", + "links": [ + { + "name": "docs", + "url": "https://docs.multiversx.com" + }, + { + "name": "github", + "url": "https://github.com/multiversx" + }, + { + "name": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/elrond/info/logo.png b/blockchains/elrond/info/logo.png index 83ef50723199d..5932b3009f427 100644 Binary files a/blockchains/elrond/info/logo.png and b/blockchains/elrond/info/logo.png differ diff --git a/blockchains/energyweb/info/info.json b/blockchains/energyweb/info/info.json new file mode 100644 index 0000000000000..303c01db3e387 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..887e79d322f26 Binary files /dev/null and b/blockchains/energyweb/info/logo.png differ diff --git a/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/info.json b/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/info.json index 89bf81b0d1c44..a9dd0a9728e93 100644 --- a/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/info.json +++ b/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/info.json @@ -1,7 +1,7 @@ { "name": "TrueUSD", "website": "https://www.trueusd.com/", - "description": "TrueUSD (TUSD) is the first independently-verified digital asset redeemable 1-for-1 for US Dollars.", + "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", diff --git a/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/info.json b/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/info.json new file mode 100644 index 0000000000000..21ecd8c8326c1 --- /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": "twitter", + "url": "https://twitter.com/kibainukiba" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kiba-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/kiba-inu/" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/logo.png b/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/logo.png new file mode 100644 index 0000000000000..ef78281376c8b Binary files /dev/null and b/blockchains/ethereum/assets/0x005D1123878Fc55fbd56b54C73963b234a64af3c/logo.png differ diff --git a/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/info.json b/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/info.json index 09554baf1b253..2561aff5b596c 100644 --- a/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/info.json +++ b/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "ALBT", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0", "links": [ { diff --git a/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/logo.png b/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/logo.png deleted file mode 100755 index 7532cfa3d5e83..0000000000000 Binary files a/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/info.json b/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/info.json new file mode 100644 index 0000000000000..b57bcf679f17e --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/logo.png b/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/logo.png new file mode 100644 index 0000000000000..063474e1d21db Binary files /dev/null and b/blockchains/ethereum/assets/0x03352D267951E96c6F7235037C5DFD2AB1466232/logo.png differ diff --git a/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/info.json b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/info.json new file mode 100644 index 0000000000000..3794873ada4e4 --- /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": "twitter", + "url": "https://twitter.com/rollbitcom" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rollbit-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/logo.png b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/logo.png new file mode 100644 index 0000000000000..85082663b0969 Binary files /dev/null and b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/logo.png differ diff --git a/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/info.json b/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/info.json new file mode 100644 index 0000000000000..4fdb8b67caafa --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/logo.png b/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/logo.png new file mode 100644 index 0000000000000..4ed4687e9ea97 Binary files /dev/null and b/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/logo.png differ diff --git a/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/info.json b/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/info.json new file mode 100644 index 0000000000000..a92d0fbaad4b2 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7837957416a73 Binary files /dev/null and b/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/logo.png differ diff --git a/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/info.json b/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/info.json index 57f2b51a22d78..7835a149ecde6 100644 --- a/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/info.json +++ b/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/info.json @@ -1,7 +1,7 @@ { "name": "Base Protocol", "website": "https://baseprotocol.org", - "description": "Base Protocol (BASE) 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.", + "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", diff --git a/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/info.json b/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/info.json new file mode 100644 index 0000000000000..d8b5da4f1e219 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..06b271597d53b Binary files /dev/null and b/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/logo.png differ diff --git a/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/info.json b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/info.json new file mode 100644 index 0000000000000..15948e26ec33a --- /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": "twitter", + "url": "https://twitter.com/HPOP8I" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/harrypotterobamapacman8inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/logo.png b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/logo.png new file mode 100644 index 0000000000000..8761450401a1c Binary files /dev/null and b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/logo.png differ diff --git a/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/info.json b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/info.json new file mode 100644 index 0000000000000..504afe8432f2f --- /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": "twitter", + "url": "https://twitter.com/MinesOfDalarnia" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mines-of-dalarnia/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/logo.png b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/logo.png new file mode 100644 index 0000000000000..c8e37a57ef89c Binary files /dev/null and b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/logo.png differ diff --git a/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/info.json b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/info.json new file mode 100644 index 0000000000000..b4da9a02a32c0 --- /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": "twitter", + "url": "https://twitter.com/GoldCoinETH" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gold-2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-gold-token/" + }, + { + "name": "telegram", + "url": "https://t.me/GoldCoinETH" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/logo.png b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/logo.png new file mode 100644 index 0000000000000..190fc89bfc38d Binary files /dev/null and b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/logo.png differ diff --git a/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/info.json b/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/info.json new file mode 100644 index 0000000000000..57bfba95cda62 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/logo.png b/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/logo.png new file mode 100644 index 0000000000000..ec31bbd9e7039 Binary files /dev/null and b/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/logo.png differ diff --git a/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/info.json b/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/info.json new file mode 100644 index 0000000000000..081015f7510e2 --- /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": "twitter", + "url": "https://twitter.com/marshallinu_" + }, + { + "name": "telegram", + "url": "https://t.me/marshallroganinuofficialchat" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/logo.png b/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/logo.png new file mode 100644 index 0000000000000..d0df0ea025d75 Binary files /dev/null and b/blockchains/ethereum/assets/0x0913dDAE242839f8995c0375493f9a1A3Bddc977/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5/info.json b/blockchains/ethereum/assets/0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5/info.json index 7102d0aa0ca2f..3694a5f4168e1 100644 --- a/blockchains/ethereum/assets/0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5/info.json +++ b/blockchains/ethereum/assets/0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5/info.json @@ -5,7 +5,7 @@ "explorer": "https://etherscan.io/token/0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5", "type": "ERC20", "symbol": "TRB", - "decimals": 18, + "decimals": 1, "status": "abandoned", "id": "0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6/info.json b/blockchains/ethereum/assets/0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6/info.json new file mode 100644 index 0000000000000..573e39b7ec89c --- /dev/null +++ b/blockchains/ethereum/assets/0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6/info.json @@ -0,0 +1,25 @@ +{ + "name": "Decentralized USD", + "symbol": "USDD", + "type": "ERC20", + "decimals": 18, + "description": "USDD is a fully decentralized algorithmic stablecoin", + "website": "https://usdd.io/", + "explorer": "https://etherscan.io/token/0x0c10bf8fcb7bf5412187a595ab97a3609160b5c6", + "status": "active", + "id": "0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/usddio" + }, + { + "name": "whitepaper", + "url": "https://usdd.io/USDD-en.pdf" + } + ], + "tags": [ + "stablecoin" + ] +} + diff --git a/blockchains/ethereum/assets/0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6/logo.png b/blockchains/ethereum/assets/0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6/logo.png new file mode 100644 index 0000000000000..b17bf63fd3273 Binary files /dev/null and b/blockchains/ethereum/assets/0x0C10bF8FcB7Bf5412187A595ab97a3609160b5c6/logo.png differ diff --git a/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/info.json b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/info.json new file mode 100644 index 0000000000000..bf51ba1f62b9f --- /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": "twitter", + "url": "https://twitter.com/atorprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/atorofficialportal" + }, + { + "name": "github", + "url": "https://github.com/ATOR-Development" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ator" + } + ], + "tags": [ + "defi", + "privacy", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/logo.png b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/logo.png new file mode 100644 index 0000000000000..fae0e2380b15f Binary files /dev/null and b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/logo.png differ diff --git a/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/info.json b/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/info.json new file mode 100644 index 0000000000000..40127bb371e1d --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/logo.png b/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/logo.png new file mode 100644 index 0000000000000..b1298b9670e23 Binary files /dev/null and b/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/info.json b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/info.json new file mode 100644 index 0000000000000..766fa1a137fb4 --- /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": "twitter", + "url": "https://twitter.com/shibavspepe" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-v-pepe/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/logo.png b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/logo.png new file mode 100644 index 0000000000000..ee3a40be30e57 Binary files /dev/null and b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/info.json b/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/info.json new file mode 100644 index 0000000000000..e4396b72176b7 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a8b86a17e77e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/logo.png differ diff --git a/blockchains/ethereum/assets/0x0c90C57aaf95A3A87eadda6ec3974c99D786511F/info.json b/blockchains/ethereum/assets/0x0c90C57aaf95A3A87eadda6ec3974c99D786511F/info.json new file mode 100644 index 0000000000000..4d0ea1f009b0b --- /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": "twitter", + "url": "https://twitter.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 0000000000000..49d0f41e0dbee 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 index bcdc107e9b3e2..70b42adcb3567 100644 --- a/blockchains/ethereum/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json +++ b/blockchains/ethereum/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json @@ -1,12 +1,12 @@ { "name": "EverRise", "type": "ERC20", - "symbol": "RISE", + "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": "active", + "status": "abandoned", "id": "0x0cD022ddE27169b20895e0e2B2B8A33B25e63579", "links": [ { diff --git a/blockchains/ethereum/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/logo.png b/blockchains/ethereum/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/logo.png deleted file mode 100644 index 05493969dfc99..0000000000000 Binary files a/blockchains/ethereum/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/info.json b/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/info.json new file mode 100644 index 0000000000000..e019282c3a45b --- /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": "twitter", + "url": "https://twitter.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 0000000000000..66ba2f0e0b09a Binary files /dev/null and b/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/logo.png differ diff --git a/blockchains/ethereum/assets/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29/info.json b/blockchains/ethereum/assets/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29/info.json new file mode 100644 index 0000000000000..2a13aa9f841fd --- /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": "twitter", + "url": "https://twitter.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 0000000000000..577673c43c6a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x0f2D719407FdBeFF09D87557AbB7232601FD9F29/logo.png differ diff --git a/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json b/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json index dc37131ddb552..2e47da0cb1577 100644 --- a/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json +++ b/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json @@ -1,6 +1,6 @@ { "name": "1INCH Token", - "website": "https://1inch.exchange/", + "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", diff --git a/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/info.json b/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/info.json new file mode 100644 index 0000000000000..b4f115143f905 --- /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": "twitter", + "url": "https://twitter.com/ichifoundation" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + } + ] +} diff --git a/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/logo.png b/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/logo.png new file mode 100644 index 0000000000000..14b20b489979c Binary files /dev/null and b/blockchains/ethereum/assets/0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6/logo.png differ diff --git a/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/info.json b/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/info.json index 1caff3c52be3d..9093afd553650 100644 --- a/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/info.json +++ b/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/info.json @@ -1,11 +1,28 @@ { - "name": "LADZ", + "name": "Ladz", "symbol": "LADZ", "type": "ERC20", "decimals": 4, - "description": "-", - "website": "", + "description": "$LADZ is the social token of the Layer1 channel and network.", + "website": "http://ladz.city/", "explorer": "https://etherscan.io/token/0x1287c0509df9a475Ef178471aB2132b9dfD312B3", - "status": "abandoned", - "id": "0x1287c0509df9a475Ef178471aB2132b9dfD312B3" -} \ No newline at end of file + "status": "active", + "id": "0x1287c0509df9a475Ef178471aB2132b9dfD312B3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ladzcity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/aX5bGCBkmR/" + }, + { + "name": "youtube", + "url": "https://youtube.com/LADZCity" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/logo.png b/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/logo.png index cd6585634462c..91ac065710e49 100644 Binary files a/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/logo.png and b/blockchains/ethereum/assets/0x1287c0509df9a475Ef178471aB2132b9dfD312B3/logo.png differ diff --git a/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/info.json b/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/info.json new file mode 100644 index 0000000000000..7cbd08095923c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..aec8f9959ac30 Binary files /dev/null and b/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/logo.png differ diff --git a/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/info.json b/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/info.json new file mode 100644 index 0000000000000..e05f98d39b849 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/logo.png b/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/logo.png new file mode 100644 index 0000000000000..4476222ced2a5 Binary files /dev/null and b/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/logo.png differ diff --git a/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json new file mode 100644 index 0000000000000..4025c077720d8 --- /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": "twitter", + "url": "https://twitter.com/CyberConnectHQ" + }, + { + "name": "github", + "url": "https://github.com/cyberconnecthq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cyberconnect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png new file mode 100644 index 0000000000000..b26b7b808fb16 Binary files /dev/null and b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png differ diff --git a/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/info.json b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/info.json new file mode 100644 index 0000000000000..8a787ce91ca77 --- /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": "twitter", + "url": "https://twitter.com/PaalMind" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/paal-ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/logo.png b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/logo.png new file mode 100644 index 0000000000000..5005332b2a23f Binary files /dev/null and b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/logo.png differ diff --git a/blockchains/ethereum/assets/0x15B543e986b8c34074DFc9901136d9355a537e7E/logo.png b/blockchains/ethereum/assets/0x15B543e986b8c34074DFc9901136d9355a537e7E/logo.png index 0a3d4bd9b6284..abb9ffe6beba4 100644 Binary files a/blockchains/ethereum/assets/0x15B543e986b8c34074DFc9901136d9355a537e7E/logo.png 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 0000000000000..e3c8847b61a7c --- /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": "twitter", + "url": "https://twitter.com/HXAcoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hxacoin/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hxacoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/logo.png b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/logo.png new file mode 100644 index 0000000000000..f262f107dd89d Binary files /dev/null and b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/logo.png differ diff --git a/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/info.json b/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/info.json index f4a8913735ad7..0520c91d523d5 100644 --- a/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/info.json +++ b/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "GALA", "decimals": 8, - "status": "active", + "status": "abandoned", "id": "0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA", "tags": [ "nft", diff --git a/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/logo.png b/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/logo.png deleted file mode 100644 index 052a78bbf67db..0000000000000 Binary files a/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/info.json b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/info.json new file mode 100644 index 0000000000000..f1967724a8af6 --- /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": "twitter", + "url": "https://twitter.com/worldcoin" + }, + { + "name": "telegram", + "url": "https://t.me/worldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/worldcoin-org/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/logo.png b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/logo.png new file mode 100644 index 0000000000000..cb7f6e3935a81 Binary files /dev/null and b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/logo.png differ diff --git a/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/info.json b/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/info.json index dac78951c6b7e..4ecf20b2a7a41 100644 --- a/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/info.json +++ b/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/info.json @@ -1,7 +1,7 @@ { - "name": "KnoxsterCoin", + "name": "FortKnoxster", "website": "https://fortknoxster.com", - "description": "FortKnoxster is a cyber-security company offering secure and private communications for all.", + "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", @@ -27,11 +27,26 @@ }, { "name": "reddit", - "url": "https://reddit.com/r/FortKnoxster/" + "url": "https://reddit.com/r/FortKnoxster" }, { - "name": "medium", - "url": "https://medium.com/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 index 80ffa317f70c1..8ccf651fac1e4 100644 Binary files a/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/logo.png and b/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/logo.png differ diff --git a/blockchains/ethereum/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/info.json b/blockchains/ethereum/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/info.json new file mode 100644 index 0000000000000..bab6161dc6610 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..45d5fa65750a5 Binary files /dev/null and b/blockchains/ethereum/assets/0x16ECCfDbb4eE1A85A33f3A9B21175Cd7Ae753dB4/logo.png differ diff --git a/blockchains/ethereum/assets/0x17cB1b6623CEF547F16E4C125EBEF6Ec240Ec12a/info.json b/blockchains/ethereum/assets/0x17cB1b6623CEF547F16E4C125EBEF6Ec240Ec12a/info.json new file mode 100644 index 0000000000000..d860ba2992489 --- /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": "twitter", + "url": "https://twitter.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/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/info.json b/blockchains/ethereum/assets/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/info.json new file mode 100644 index 0000000000000..683bca191b636 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..0e44701f916c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/logo.png differ diff --git a/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/info.json b/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/info.json new file mode 100644 index 0000000000000..970875faa7065 --- /dev/null +++ b/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/info.json @@ -0,0 +1,34 @@ +{ + "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": "twitter", + "url": "https://twitter.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" + ] +} + diff --git a/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/logo.png b/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/logo.png new file mode 100644 index 0000000000000..4ab1ef9ebc608 Binary files /dev/null and b/blockchains/ethereum/assets/0x198d14F2Ad9CE69E76ea330B374DE4957C3F850a/logo.png differ diff --git a/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/info.json b/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/info.json new file mode 100644 index 0000000000000..e5ab0be0c0de3 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..4cf9e2ddf99f5 Binary files /dev/null and b/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/info.json b/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/info.json new file mode 100644 index 0000000000000..565ae390070de --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/logo.png b/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/logo.png new file mode 100644 index 0000000000000..22f4feb096d91 Binary files /dev/null and b/blockchains/ethereum/assets/0x1A4b46696b2bB4794Eb3D4c26f1c55F9170fa4C5/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/info.json b/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/info.json new file mode 100644 index 0000000000000..0d244474cd29d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6c98eb672b3be Binary files /dev/null and b/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/logo.png differ diff --git a/blockchains/ethereum/assets/0x1CDD2EaB61112697626F7b4bB0e23Da4FeBF7B7C/info.json b/blockchains/ethereum/assets/0x1CDD2EaB61112697626F7b4bB0e23Da4FeBF7B7C/info.json new file mode 100644 index 0000000000000..03f39777aa66c --- /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 0000000000000..d52df831af1f9 Binary files /dev/null and b/blockchains/ethereum/assets/0x1CDD2EaB61112697626F7b4bB0e23Da4FeBF7B7C/logo.png differ diff --git a/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/info.json b/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/info.json new file mode 100644 index 0000000000000..c0ae70a119edc --- /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": "twitter", + "url": "https://twitter.com/ichifoundation" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + } + ] +} diff --git a/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/logo.png b/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/logo.png new file mode 100644 index 0000000000000..55b6e77b8e1fe Binary files /dev/null and b/blockchains/ethereum/assets/0x1aa1e61369874bae3444A8Ef6528d6b13D6952EF/logo.png differ diff --git a/blockchains/ethereum/assets/0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5/info.json b/blockchains/ethereum/assets/0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5/info.json new file mode 100644 index 0000000000000..49a0ad4e43da8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..089e9b94e7041 Binary files /dev/null and b/blockchains/ethereum/assets/0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5/logo.png differ diff --git a/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/info.json b/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/info.json new file mode 100644 index 0000000000000..154e0202a3f14 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..9d52df39a0846 Binary files /dev/null and b/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/logo.png differ diff --git a/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json b/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json new file mode 100644 index 0000000000000..2d32b5ebba2c3 --- /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": "twitter", + "url": "https://twitter.com/WagmiGameCo" + }, + { + "name": "facebook", + "url": "https://facebook.com/wagmigame/" + }, + { + "name": "discord", + "url": "https://discord.com/wagmigame" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/logo.png b/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/logo.png new file mode 100644 index 0000000000000..2d14be7ba54d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/logo.png differ diff --git a/blockchains/ethereum/assets/0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987/info.json b/blockchains/ethereum/assets/0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987/info.json new file mode 100644 index 0000000000000..1da50e5b1bc2f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..bcfd8caac676d Binary files /dev/null and b/blockchains/ethereum/assets/0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987/logo.png differ diff --git a/blockchains/ethereum/assets/0x20398aD62bb2D930646d45a6D4292baa0b860C1f/info.json b/blockchains/ethereum/assets/0x20398aD62bb2D930646d45a6D4292baa0b860C1f/info.json index 02a5c60e141ff..9ec2d1a2d7133 100644 --- a/blockchains/ethereum/assets/0x20398aD62bb2D930646d45a6D4292baa0b860C1f/info.json +++ b/blockchains/ethereum/assets/0x20398aD62bb2D930646d45a6D4292baa0b860C1f/info.json @@ -6,7 +6,7 @@ "website": "https://flashstake.io", "description": "FLASH - The time travel of money", "explorer": "https://etherscan.io/token/0x20398aD62bb2D930646d45a6D4292baa0b860C1f", - "status": "active", + "status": "abandoned", "id": "0x20398aD62bb2D930646d45a6D4292baa0b860C1f", "links": [ { diff --git a/blockchains/ethereum/assets/0x20398aD62bb2D930646d45a6D4292baa0b860C1f/logo.png b/blockchains/ethereum/assets/0x20398aD62bb2D930646d45a6D4292baa0b860C1f/logo.png deleted file mode 100644 index 5b78e9246109c..0000000000000 Binary files a/blockchains/ethereum/assets/0x20398aD62bb2D930646d45a6D4292baa0b860C1f/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/info.json b/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/info.json new file mode 100644 index 0000000000000..67eaf0ab3c30f --- /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": "twitter", + "url": "https://twitter.com/FreewayFi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/freeway/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/logo.png b/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/logo.png similarity index 100% rename from blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/logo.png rename to blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/logo.png diff --git a/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/info.json b/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/info.json new file mode 100644 index 0000000000000..7768d6040b8b8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..fc63927a9c902 Binary files /dev/null and b/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/logo.png differ diff --git a/blockchains/ethereum/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json b/blockchains/ethereum/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json new file mode 100644 index 0000000000000..8bdb76be8e1ab --- /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": "twitter", + "url": "https://twitter.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 0000000000000..4272c382f1522 Binary files /dev/null and b/blockchains/ethereum/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png differ diff --git a/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/info.json b/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/info.json new file mode 100644 index 0000000000000..e98c2484f4d87 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/logo.png b/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/logo.png new file mode 100644 index 0000000000000..18784a87d43d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/logo.png differ diff --git a/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/info.json b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/info.json new file mode 100644 index 0000000000000..92a5919782f2c --- /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": "twitter", + "url": "https://twitter.com/4thecoin" + }, + { + "name": "telegram", + "url": "https://t.me/TheCoin4" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/logo.png b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/logo.png new file mode 100644 index 0000000000000..9a4147093b5a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/logo.png differ diff --git a/blockchains/ethereum/assets/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC/info.json b/blockchains/ethereum/assets/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC/info.json index 5b285a71ae29e..a872c0a17e990 100644 --- a/blockchains/ethereum/assets/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC/info.json +++ b/blockchains/ethereum/assets/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC/info.json @@ -6,6 +6,6 @@ "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": "active", + "status": "abandoned", "id": "0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC/logo.png b/blockchains/ethereum/assets/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC/logo.png deleted file mode 100644 index 4565a40b69ce8..0000000000000 Binary files a/blockchains/ethereum/assets/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/info.json b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/info.json new file mode 100644 index 0000000000000..3f7689f433337 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png new file mode 100644 index 0000000000000..fff673b54dcdf Binary files /dev/null and b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png differ diff --git a/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json new file mode 100644 index 0000000000000..f08eed0be3691 --- /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": "twitter", + "url": "https://twitter.com/AlveyChain" + }, + { + "name": "github", + "url": "https://github.com/AlveyCoin" + }, + { + "name": "telegram", + "url": "https://t.me/AlveyChain" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png new file mode 100644 index 0000000000000..697332506680a Binary files /dev/null and b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png differ diff --git a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json index 031556649b84f..0a551ae8aea50 100644 --- a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json +++ b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json @@ -1,14 +1,42 @@ { - "name": "BitcoinSoV", + "name": "BSOV Token", "symbol": "BSOV", "type": "ERC20", "decimals": 8, - "description": "-", - "website": "https://www.btcsov.com/", + "description": "BSOV Token is not a Bitcoin fork, but shares Bitcoin’s supply distribution with a deflationary design. This cryptocurrency is the first mineable and deflationary-by-design crypto commodity built on the Ethereum blockchain (ERC20).", + "website": "https://www.bsovtoken.com/", "explorer": "https://etherscan.io/token/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1", "status": "active", "id": "0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1", "tags": [ - "deflationary" + "deflationary", + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/BitcoinSoVCommunity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoinsov/" + }, + { + "name": "whitepaper", + "url": "https://bsovtoken.com/wp-content/uploads/2020/06/BitcoinSoV-BSoV_-A-Mineable-Deflationary-Store-of-Value-1.pdf" + }, + { + "name": "telegram_news", + "url": "https://t.me/BSOVnews" + }, + { + "name": "blog", + "url": "https://bsovtoken.com/stories" + }, + { + "name": "twitter", + "url": "https://twitter.com/bsov_" + } ] -} \ No newline at end of file +} + diff --git a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png index 94f2855f0948a..525f7eb1d24fe 100644 Binary files a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png and b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png differ diff --git a/blockchains/ethereum/assets/0x26B80FBfC01b71495f477d5237071242e0d959d7/info.json b/blockchains/ethereum/assets/0x26B80FBfC01b71495f477d5237071242e0d959d7/info.json new file mode 100644 index 0000000000000..da907c871b18e --- /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 0000000000000..32179bc3c3aad Binary files /dev/null and b/blockchains/ethereum/assets/0x26B80FBfC01b71495f477d5237071242e0d959d7/logo.png differ diff --git a/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/info.json b/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/info.json new file mode 100644 index 0000000000000..b5400357883d1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..cc13c437d8459 Binary files /dev/null and b/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/logo.png differ diff --git a/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/info.json b/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/info.json new file mode 100644 index 0000000000000..d1b1d22f1c0f3 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/logo.png b/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/logo.png new file mode 100644 index 0000000000000..22d28ab4739aa Binary files /dev/null and b/blockchains/ethereum/assets/0x26dcFbFa8Bc267b250432c01C982Eaf81cC5480C/logo.png differ diff --git a/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/info.json b/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/info.json new file mode 100644 index 0000000000000..eaa8bdbe12c3d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7cef12e6eff64 Binary files /dev/null and b/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/logo.png differ diff --git a/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/info.json b/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/info.json new file mode 100644 index 0000000000000..2ac45bee79815 --- /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": "twitter", + "url": "https://twitter.com/sgt_sl8termelon" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/logo.png b/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/logo.png new file mode 100644 index 0000000000000..32dc752de6d0f Binary files /dev/null and b/blockchains/ethereum/assets/0x2DB07f061f12f1Ef51C49B02Ad5A3EB71f60B69e/logo.png differ diff --git a/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/info.json b/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/info.json new file mode 100644 index 0000000000000..e4bd64c19d29f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/logo.png b/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/logo.png new file mode 100644 index 0000000000000..42c818858e0d8 Binary files /dev/null and b/blockchains/ethereum/assets/0x2a3bFF78B79A009976EeA096a51A948a3dC00e34/logo.png differ diff --git a/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/info.json b/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/info.json new file mode 100644 index 0000000000000..8e2d6701582c8 --- /dev/null +++ b/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/info.json @@ -0,0 +1,33 @@ +{ + "name": "PLANET", + "website": "https://joinourplanet.com", + "description": "$PLANET is the native token of a platform using the blockchain to address the world’s most pressing sustainability challenges. The 'Join Our Planet' movement is driven by an unwavering commitment to the world's most pressing challenges, outlined by the 17 Sustainable Development Goals (SDGs) set forth by the United Nations.", + "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": "twitter", + "url": "https://twitter.com/joinourplanet/" + }, + { + "name": "telegram", + "url": "https://t.me/JoinOurPlanet" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/planet-token" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/planettoken/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/logo.png b/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/logo.png new file mode 100644 index 0000000000000..a3fb80da0a20b Binary files /dev/null and b/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/logo.png differ diff --git a/blockchains/ethereum/assets/0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329/info.json b/blockchains/ethereum/assets/0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329/info.json new file mode 100644 index 0000000000000..9dcaaee2f8ed6 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..8e0a321445b0c Binary files /dev/null and b/blockchains/ethereum/assets/0x2b867efD2dE4Ad2B583Ca0CB3dF9C4040Ef4D329/logo.png differ diff --git a/blockchains/ethereum/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json b/blockchains/ethereum/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json new file mode 100644 index 0000000000000..f8e5458dbe732 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a6a3c27553a0e Binary files /dev/null and b/blockchains/ethereum/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/logo.png differ diff --git a/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/info.json b/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/info.json new file mode 100644 index 0000000000000..4272d2a06adb1 --- /dev/null +++ b/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tokemak", + "type": "ERC20", + "symbol": "TOKE", + "decimals": 18, + "website": "https://www.tokemak.xyz/", + "description": "Tokemak is a decentralized liquidity provider/AMM protocol. TOKE is the native token, serves as tokenized liquidity, enabling stakers to direct the protocol's TVL as liquidity across DeFi markets.", + "explorer": "https://etherscan.io/token/0x2e9d63788249371f1DFC918a52f8d799F4a38C94", + "status": "active", + "id": "0x2e9d63788249371f1DFC918a52f8d799F4a38C94", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/TokenReactor" + }, + { + "name": "medium", + "url": "https://medium.com/tokemak" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tokemak/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/logo.png b/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/logo.png new file mode 100644 index 0000000000000..3c2010274228c Binary files /dev/null and b/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/logo.png differ diff --git a/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/info.json b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/info.json new file mode 100644 index 0000000000000..23e4b1e101cab --- /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": "twitter", + "url": "https://twitter.com/monerium" + }, + { + "name": "telegram", + "url": "https://t.me/+o89F3aj9PsUzMDQ0" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monerium/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/logo.png b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/logo.png new file mode 100644 index 0000000000000..20268b491a66b Binary files /dev/null and b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/logo.png differ diff --git a/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/info.json b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/info.json new file mode 100644 index 0000000000000..83622f2809702 --- /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": "twitter", + "url": "https://twitter.com/lootproject" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/adventure-gold/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/adventure-gold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/logo.png b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/logo.png new file mode 100644 index 0000000000000..7651d7bba1d6a Binary files /dev/null and b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/logo.png differ diff --git a/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/info.json b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/info.json new file mode 100644 index 0000000000000..d1a683d1eb409 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/logo.png b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/logo.png new file mode 100644 index 0000000000000..afcd7c796124d Binary files /dev/null and b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/logo.png differ diff --git a/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json b/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json index 0079373a8ba5a..ba94351537cad 100644 --- a/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json +++ b/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json @@ -3,12 +3,32 @@ "type": "ERC20", "symbol": "AKITA", "decimals": 18, - "website": "https://www.akitatoken.net", - "description": "AKITA INU 秋田犬 is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik Buterin and the other half were locked to a Uniswap pool and the keys burned. It is same as SHIBA INU but with different tokenmetrics.", - "explorer": "https://etherscan.io/token/0x3301ee63fb29f863f2333bd4466acb46cd8323e6", + "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": "active", "id": "0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Akita_network" + }, + { + "name": "whitepaper", + "url": "https://akita-dao.gitbook.io/akita-dao/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/akita-inu/" + }, + { + "name": "telegram", + "url": "https://t.me/akitatoken" + } + ], "tags": [ - "deflationary" + "governance", + "gamefi", + "memes" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/logo.png b/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/logo.png index f029ab771e021..43dbc8d7b3050 100644 Binary files a/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/logo.png and b/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x33349B282065b0284d756F0577FB39c158F935e6/info.json b/blockchains/ethereum/assets/0x33349B282065b0284d756F0577FB39c158F935e6/info.json new file mode 100644 index 0000000000000..34b2b036619e8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..e335b3602d170 Binary files /dev/null and b/blockchains/ethereum/assets/0x33349B282065b0284d756F0577FB39c158F935e6/logo.png differ diff --git a/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/info.json b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/info.json new file mode 100644 index 0000000000000..c8470458c8132 --- /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": "twitter", + "url": "https://twitter.com/RealElmoERC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elmoerc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/elmoerc" + }, + { + "name": "telegram", + "url": "https://t.me/RealElmoERC" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/logo.png b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/logo.png new file mode 100644 index 0000000000000..a8a733267a8d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/logo.png differ diff --git a/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/info.json b/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/info.json new file mode 100644 index 0000000000000..9bc912b0b6366 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/logo.png b/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/logo.png new file mode 100644 index 0000000000000..a033f381130f0 Binary files /dev/null and b/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/logo.png differ diff --git a/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/info.json b/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/info.json new file mode 100644 index 0000000000000..7cd7aa40f1d37 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/logo.png b/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/logo.png new file mode 100644 index 0000000000000..05596aa049383 Binary files /dev/null and b/blockchains/ethereum/assets/0x34Be5b8C30eE4fDe069DC878989686aBE9884470/logo.png differ diff --git a/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/info.json b/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/info.json new file mode 100644 index 0000000000000..3ddc28db0fa77 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/logo.png b/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/logo.png new file mode 100644 index 0000000000000..7b32f2d25300e Binary files /dev/null and b/blockchains/ethereum/assets/0x34F0915a5f15a66Eba86F6a58bE1A471FB7836A7/logo.png differ diff --git a/blockchains/ethereum/assets/0x382f0160c24f5c515A19f155BAc14d479433A407/info.json b/blockchains/ethereum/assets/0x382f0160c24f5c515A19f155BAc14d479433A407/info.json index 7985bffe64aec..56ecb454d2e7a 100644 --- a/blockchains/ethereum/assets/0x382f0160c24f5c515A19f155BAc14d479433A407/info.json +++ b/blockchains/ethereum/assets/0x382f0160c24f5c515A19f155BAc14d479433A407/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "KLEE", "decimals": 9, - "status": "active", + "status": "abandoned", "id": "0x382f0160c24f5c515A19f155BAc14d479433A407", "tags": [ "deflationary" diff --git a/blockchains/ethereum/assets/0x382f0160c24f5c515A19f155BAc14d479433A407/logo.png b/blockchains/ethereum/assets/0x382f0160c24f5c515A19f155BAc14d479433A407/logo.png deleted file mode 100644 index bcb723c5b3a82..0000000000000 Binary files a/blockchains/ethereum/assets/0x382f0160c24f5c515A19f155BAc14d479433A407/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json b/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json index 5958d31b5b03e..81c3dd01f910a 100644 --- a/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json +++ b/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json @@ -7,7 +7,7 @@ "website": "https://fegtoken.com", "explorer": "https://etherscan.io/token/0x389999216860ab8e0175387a0c90e5c52522c945", "id": "0x389999216860AB8E0175387A0c90E5c52522C945", - "status": "active", + "status": "abandoned", "tags": [ "deflationary" ], diff --git a/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/logo.png b/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/logo.png deleted file mode 100644 index cd641900d6d1d..0000000000000 Binary files a/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/info.json b/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/info.json new file mode 100644 index 0000000000000..1c11a7e3d493a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..835e7b024da9d Binary files /dev/null and b/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/logo.png differ diff --git a/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/info.json b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/info.json new file mode 100644 index 0000000000000..c384b47971867 --- /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": "twitter", + "url": "https://twitter.com/wagmigameco" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wagmi-game-2/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/logo.png b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/logo.png new file mode 100644 index 0000000000000..53ef7ec341eec Binary files /dev/null and b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/logo.png differ diff --git a/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/info.json b/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/info.json new file mode 100644 index 0000000000000..3c9e6f6fcdea2 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..c62d4dcc1b3a2 Binary files /dev/null and b/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/logo.png differ diff --git a/blockchains/ethereum/assets/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC/info.json b/blockchains/ethereum/assets/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC/info.json new file mode 100644 index 0000000000000..57903edd51b84 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..c83c1789ca293 Binary files /dev/null and b/blockchains/ethereum/assets/0x3FAb0bBAa03BCEAF7C49E2b12877dB0142BE65FC/logo.png differ diff --git a/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/info.json b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/info.json new file mode 100644 index 0000000000000..45fa8b91ba311 --- /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": "twitter", + "url": "https://twitter.com/0xMantle" + }, + { + "name": "telegram", + "url": "https://t.me/mantlenetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/logo.png b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/logo.png new file mode 100644 index 0000000000000..d9721da402f65 Binary files /dev/null and b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/logo.png differ diff --git a/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/info.json b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/info.json new file mode 100644 index 0000000000000..992bb23a5f91a --- /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": "twitter", + "url": "https://twitter.com/GHOAave" + }, + { + "name": "github", + "url": "https://github.com/aave/gho-core/" + } + ] +} diff --git a/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/logo.png b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/logo.png new file mode 100644 index 0000000000000..ff0877b424ba7 Binary files /dev/null and b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/logo.png differ diff --git a/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/info.json b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/info.json new file mode 100644 index 0000000000000..369c60409f8ba --- /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": "twitter", + "url": "https://twitter.com/thehellolabs" + }, + { + "name": "github", + "url": "https://github.com/Hello1Official" + }, + { + "name": "telegram", + "url": "https://t.me/HELLOLabs" + }, + { + "name": "blog", + "url": "https://www.hello.one/news" + }, + { + "name": "discord", + "url": "https://discord.com/hellolabs" + }, + { + "name": "medium", + "url": "https://helloclub.medium.com" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/HELLOLabs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hello-labs/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hello" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/logo.png b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/logo.png new file mode 100644 index 0000000000000..fedfcf6cb0277 Binary files /dev/null and b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/logo.png differ diff --git a/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/info.json b/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/info.json new file mode 100644 index 0000000000000..8e60a1037f1d8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..cbd3a548a71e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/logo.png differ diff --git a/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/info.json b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/info.json new file mode 100644 index 0000000000000..7045ac6bfd1ec --- /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": "twitter", + "url": "https://twitter.com/RefundCoinErc20" + }, + { + "name": "telegram", + "url": "https://t.me/RefundErc20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/logo.png b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/logo.png new file mode 100644 index 0000000000000..037c1f4fba98f Binary files /dev/null and b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/logo.png differ diff --git a/blockchains/ethereum/assets/0x418D75f65a02b3D53B2418FB8E1fe493759c7605/info.json b/blockchains/ethereum/assets/0x418D75f65a02b3D53B2418FB8E1fe493759c7605/info.json new file mode 100644 index 0000000000000..c47422846bcfa --- /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 0000000000000..24a702d4390f2 Binary files /dev/null and b/blockchains/ethereum/assets/0x418D75f65a02b3D53B2418FB8E1fe493759c7605/logo.png differ diff --git a/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json new file mode 100644 index 0000000000000..c2dcf43681c53 --- /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": "twitter", + "url": "https://twitter.com/fantasygoldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantasygold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png new file mode 100644 index 0000000000000..6876a666683e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png differ diff --git a/blockchains/ethereum/assets/0x41f7B8b9b897276b7AAE926a9016935280b44E97/info.json b/blockchains/ethereum/assets/0x41f7B8b9b897276b7AAE926a9016935280b44E97/info.json new file mode 100644 index 0000000000000..eb31ca8b0afd9 --- /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 0000000000000..c9ca83078881a Binary files /dev/null and b/blockchains/ethereum/assets/0x41f7B8b9b897276b7AAE926a9016935280b44E97/logo.png differ diff --git a/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json b/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json index 465d4f98cdc59..e1a1b619765a0 100644 --- a/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json +++ b/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json @@ -7,5 +7,19 @@ "symbol": "LOOM", "decimals": 18, "status": "active", - "id": "0x42476F744292107e34519F9c357927074Ea3F75D" + "id": "0x42476F744292107e34519F9c357927074Ea3F75D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/loomnetwork" + }, + { + "name": "twitter", + "url": "https://twitter.com/loomnetwork" + }, + { + "name": "github", + "url": "https://github.com/loomnetwork" + } + ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json b/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json new file mode 100644 index 0000000000000..2b8b10951356e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d61a97f70aac4 Binary files /dev/null and b/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/logo.png differ diff --git a/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/info.json b/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/info.json new file mode 100644 index 0000000000000..52b636ea855c1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..313ab3ade59b2 Binary files /dev/null and b/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/logo.png differ diff --git a/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/info.json b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/info.json new file mode 100644 index 0000000000000..c17fb3110e63a --- /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": "twitter", + "url": "https://twitter.com/shibasagaio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-saga/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/logo.png b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/logo.png new file mode 100644 index 0000000000000..337b74854f208 Binary files /dev/null and b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/logo.png differ diff --git a/blockchains/ethereum/assets/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/info.json b/blockchains/ethereum/assets/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/info.json new file mode 100644 index 0000000000000..d2170e88e4f6b --- /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": "active", + "id": "0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/logo.png b/blockchains/ethereum/assets/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/logo.png new file mode 100644 index 0000000000000..ddcedbb4a809b Binary files /dev/null and b/blockchains/ethereum/assets/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x456125Cd98107ae0480Ba566f1b716D48Ba31453/info.json b/blockchains/ethereum/assets/0x456125Cd98107ae0480Ba566f1b716D48Ba31453/info.json new file mode 100644 index 0000000000000..3c1971f1ec029 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a16cde4bd1f7d Binary files /dev/null and b/blockchains/ethereum/assets/0x456125Cd98107ae0480Ba566f1b716D48Ba31453/logo.png differ diff --git a/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json b/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json new file mode 100644 index 0000000000000..d8169bd28aadd --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/logo.png b/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/logo.png new file mode 100644 index 0000000000000..6c156aba62660 Binary files /dev/null and b/blockchains/ethereum/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/logo.png differ diff --git a/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json new file mode 100644 index 0000000000000..fffdd7e5e2407 --- /dev/null +++ b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json @@ -0,0 +1,28 @@ +{ + "name": "DinoLFG", + "type": "ERC20", + "symbol": "DINO", + "decimals": 18, + "website": "https://dinolfg.com/", + "description": "$Dino is a Meme Coin.", + "explorer": "https://etherscan.io/token/0x49642110b712c1fd7261bc074105e9e44676c68f", + "status": "active", + "id": "0x49642110B712C1FD7261Bc074105E9E44676c68F", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dinolfg/" + }, + { + "name": "twitter", + "url": "https://twitter.com/DinoLFG" + }, + { + "name": "telegram", + "url": "https://t.me/OfficialDinoLFG" + } + ], + "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 0000000000000..20ddde9870601 Binary files /dev/null and b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png differ diff --git a/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/info.json b/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/info.json new file mode 100644 index 0000000000000..2a3328a84d92a --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/logo.png b/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/logo.png new file mode 100644 index 0000000000000..b34eda09b27e2 Binary files /dev/null and b/blockchains/ethereum/assets/0x49bc8340ACD3521150d7cCD8a4a3510D2F5130Ca/logo.png differ diff --git a/blockchains/ethereum/assets/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900/info.json b/blockchains/ethereum/assets/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900/info.json index e0cef902e81d8..2f5a4064c3625 100644 --- a/blockchains/ethereum/assets/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900/info.json +++ b/blockchains/ethereum/assets/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0x4B2C54b80B77580dc02A0f6734d3BAD733F50900", "links": [ { diff --git a/blockchains/ethereum/assets/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900/logo.png b/blockchains/ethereum/assets/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900/logo.png deleted file mode 100644 index 5a62f521e27a6..0000000000000 Binary files a/blockchains/ethereum/assets/0x4B2C54b80B77580dc02A0f6734d3BAD733F50900/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/info.json b/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/info.json index ffe28fdde1b9b..38722dc385c24 100644 --- a/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/info.json +++ b/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/info.json @@ -1,11 +1,40 @@ { "name": "Mysterium", - "symbol": "MYST", "type": "ERC20", + "symbol": "MYST", "decimals": 18, - "description": "Mysterium is building a decentralised P2P VPN and other tools that allow users to browse the internet freely and earn by sharing their internet connection.", - "website": "https://mysterium.network", + "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" -} \ No newline at end of file + "id": "0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/logo.png b/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/logo.png index 07cb6c2e9a7e2..ad16c843c62cc 100644 Binary files a/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/logo.png and b/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/logo.png differ diff --git a/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/info.json b/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/info.json new file mode 100644 index 0000000000000..e5b34af2d33df --- /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": "twitter", + "url": "https://twitter.com/ichifoundation" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + } + ] +} diff --git a/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/logo.png b/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/logo.png new file mode 100644 index 0000000000000..2b3da1697ad80 Binary files /dev/null and b/blockchains/ethereum/assets/0x4db2c02831c9ac305FF9311Eb661f80f1dF61e07/logo.png differ diff --git a/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/info.json b/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/info.json new file mode 100644 index 0000000000000..a92907479bac0 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..354f229d3f631 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 0000000000000..651e202ae90b2 --- /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": "twitter", + "url": "https://twitter.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/0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B/logo.png b/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B/logo.png rename to blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/logo.png diff --git a/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/info.json b/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/info.json new file mode 100644 index 0000000000000..45b97319fb0a7 --- /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": "twitter", + "url": "https://twitter.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/DvsYCfK8" + } + ] +} diff --git a/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/logo.png b/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/logo.png new file mode 100644 index 0000000000000..be448c0341684 Binary files /dev/null and b/blockchains/ethereum/assets/0x5047fc5C9D7c49Ab22e390d13646a6A3a2476eff/logo.png differ diff --git a/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json b/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json new file mode 100644 index 0000000000000..8d3adabe6dfbc --- /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": "active", + "id": "0x51FE2E572e97BFEB1D719809d743Ec2675924EDc", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/logo.png b/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/logo.png new file mode 100644 index 0000000000000..62b8c49184690 Binary files /dev/null and b/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/logo.png differ diff --git a/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/info.json b/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/info.json new file mode 100644 index 0000000000000..31b5728e6ee33 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..3539571325a91 Binary files /dev/null and b/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/logo.png differ diff --git a/blockchains/ethereum/assets/0x5283D291DBCF85356A21bA090E6db59121208b44/info.json b/blockchains/ethereum/assets/0x5283D291DBCF85356A21bA090E6db59121208b44/info.json new file mode 100644 index 0000000000000..1a1009d13e404 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f8383d887aa59 Binary files /dev/null and b/blockchains/ethereum/assets/0x5283D291DBCF85356A21bA090E6db59121208b44/logo.png differ diff --git a/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/info.json b/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/info.json new file mode 100644 index 0000000000000..ff4f48701bdda --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/logo.png b/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/logo.png new file mode 100644 index 0000000000000..fe575a033db9b Binary files /dev/null and b/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/logo.png differ diff --git a/blockchains/ethereum/assets/0x549020a9Cb845220D66d3E9c6D9F9eF61C981102/info.json b/blockchains/ethereum/assets/0x549020a9Cb845220D66d3E9c6D9F9eF61C981102/info.json index e2c0b97f3a29f..12a82d30f7af8 100644 --- a/blockchains/ethereum/assets/0x549020a9Cb845220D66d3E9c6D9F9eF61C981102/info.json +++ b/blockchains/ethereum/assets/0x549020a9Cb845220D66d3E9c6D9F9eF61C981102/info.json @@ -2,7 +2,7 @@ "name": "SIDUS", "symbol": "SIDUS", "website": "https://sidusheroes.com", - "description": "The financial system of the Sidus Heroes game includes two tokens: the SIDUS (gaming) token and the SENATE (governance) token. The SIDUS token is used by players of SIDUS HEROES as in-game currency.", + "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, diff --git a/blockchains/ethereum/assets/0x566957eF80F9fd5526CD2BEF8BE67035C0b81130/info.json b/blockchains/ethereum/assets/0x566957eF80F9fd5526CD2BEF8BE67035C0b81130/info.json new file mode 100644 index 0000000000000..54fc9affeb69a --- /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 0000000000000..4e3f74d233943 Binary files /dev/null and b/blockchains/ethereum/assets/0x566957eF80F9fd5526CD2BEF8BE67035C0b81130/logo.png differ diff --git a/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/info.json b/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/info.json new file mode 100644 index 0000000000000..7330fcdc1cb9d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..dceff00bfbb03 Binary files /dev/null and b/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/logo.png differ diff --git a/blockchains/ethereum/assets/0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1/info.json b/blockchains/ethereum/assets/0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1/info.json new file mode 100644 index 0000000000000..09c4ec798610c --- /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 0000000000000..9ef1d563283d0 Binary files /dev/null and b/blockchains/ethereum/assets/0x582d872A1B094FC48F5DE31D3B73F2D9bE47def1/logo.png differ diff --git a/blockchains/ethereum/assets/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3/info.json b/blockchains/ethereum/assets/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3/info.json new file mode 100644 index 0000000000000..16737cbff2a61 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..9c08223b50e01 --- /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": "twitter", + "url": "https://twitter.com/ThePeoples_Coin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/PEEPScoin/" + }, + { + "name": "telegram", + "url": "https://t.me/ThePeoplesCoinOfficial" + } + ], + "tags": [ + "defi", + "governance" + ] +} diff --git a/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/logo.png b/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/logo.png new file mode 100644 index 0000000000000..007114fa02d66 Binary files /dev/null and b/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/logo.png differ diff --git a/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/info.json b/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/info.json new file mode 100644 index 0000000000000..154223dca69d4 --- /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": "twitter", + "url": "https://twitter.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/0x8eB24319393716668D768dCEC29356ae9CfFe285/logo.png b/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/logo.png similarity index 100% rename from blockchains/ethereum/assets/0x8eB24319393716668D768dCEC29356ae9CfFe285/logo.png rename to blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/logo.png diff --git a/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/info.json b/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/info.json new file mode 100644 index 0000000000000..0802bc02b25a5 --- /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": "twitter", + "url": "https://twitter.com/galxe" + }, + { + "name": "telegram", + "url": "https://t.me/galxe" + }, + { + "name": "discord", + "url": "https://discord.com/invite/galxe" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/logo.png b/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/logo.png new file mode 100644 index 0000000000000..2c93c622e823e Binary files /dev/null and b/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/logo.png differ diff --git a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json index 2aa5c90b30f37..d6a82c33aeded 100644 --- a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json +++ b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json @@ -3,31 +3,26 @@ "symbol": "OS", "type": "ERC20", "decimals": 18, - "description": "Governance token of the EthOS (Ethereans Operating System) organization. The EthOS is a layer for building any kind of application on Ethereum, powered by extendable factories for DeFi, NFTs and on-chain governance.", - "website": "https://ethos.eth.link/", + "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": "github", - "url": "https://github.com/ethereansos" - }, { "name": "twitter", - "url": "https://twitter.com/ethereansos" + "url": "https://twitter.com/ethereansOS" }, { "name": "discord", - "url": "https://discord.com/nHZ2bUd" - }, - { - "name": "medium", - "url": "https://medium.com/ethereansos" + "url": "https://discord.com/invite/ncbK6nYdFU" }, { "name": "youtube", - "url": "https://youtube.com/channel/UCeC1Qr2i-t4x4RGO0MwkIDQ" + "url": "https://youtube.com/@EthereansOS" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png index ae490a1e927cc..86ffb8db7a513 100644 Binary files a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png and b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png differ diff --git a/blockchains/ethereum/assets/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda/info.json b/blockchains/ethereum/assets/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda/info.json new file mode 100644 index 0000000000000..70950d626eafb --- /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": "twitter", + "url": "https://twitter.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 0000000000000..34180c9ce1d00 Binary files /dev/null and b/blockchains/ethereum/assets/0x614D7f40701132E25fe6fc17801Fbd34212d2Eda/logo.png differ diff --git a/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/info.json b/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/info.json new file mode 100644 index 0000000000000..15eabc3447290 --- /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": "twitter", + "url": "https://twitter.com/LeagueKingdoms" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/logo.png b/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/logo.png new file mode 100644 index 0000000000000..c62c82fc46eae Binary files /dev/null and b/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/logo.png differ diff --git a/blockchains/ethereum/assets/0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88/info.json b/blockchains/ethereum/assets/0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88/info.json new file mode 100644 index 0000000000000..fdca635aff9f4 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..686dbf3313261 Binary files /dev/null and b/blockchains/ethereum/assets/0x628A3b2E302C7e896AcC432D2d0dD22B6cb9bc88/logo.png differ diff --git a/blockchains/ethereum/assets/0x62959c699A52eC647622c91e79CE73344e4099f5/info.json b/blockchains/ethereum/assets/0x62959c699A52eC647622c91e79CE73344e4099f5/info.json new file mode 100644 index 0000000000000..cfd5982981b9d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..bf1c9f3405e64 Binary files /dev/null and b/blockchains/ethereum/assets/0x62959c699A52eC647622c91e79CE73344e4099f5/logo.png differ diff --git a/blockchains/ethereum/assets/0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e/info.json b/blockchains/ethereum/assets/0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e/info.json new file mode 100644 index 0000000000000..6315a0153ea1e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..db68f1ad4e461 Binary files /dev/null and b/blockchains/ethereum/assets/0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e/logo.png differ diff --git a/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/info.json b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/info.json new file mode 100644 index 0000000000000..a69822bf89424 --- /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": "twitter", + "url": "https://twitter.com/playbigtime" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/big-time/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/logo.png b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/logo.png new file mode 100644 index 0000000000000..2b3a70086c734 Binary files /dev/null and b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/logo.png differ diff --git a/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/info.json b/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/info.json new file mode 100644 index 0000000000000..f0b1e67f66fc9 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..c0623a5baa6d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/logo.png differ diff --git a/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/info.json b/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/info.json new file mode 100644 index 0000000000000..69c3b73ad4874 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..cad91b5eadb32 Binary files /dev/null and b/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/logo.png differ diff --git a/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/info.json b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/info.json new file mode 100644 index 0000000000000..9654264451a27 --- /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": "twitter", + "url": "https://twitter.com/POKTnetwork" + }, + { + "name": "github", + "url": "https://github.com/pokt-network" + }, + { + "name": "forum", + "url": "https://forum.pokt.network/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/logo.png b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/logo.png new file mode 100644 index 0000000000000..5c1ecf3df85be Binary files /dev/null and b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/logo.png differ diff --git a/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/info.json b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/info.json new file mode 100644 index 0000000000000..75823d452be39 --- /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": "twitter", + "url": "https://twitter.com/tectumsocial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tectum/" + }, + { + "name": "telegram", + "url": "https://t.me/tectumglobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/logo.png b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/logo.png new file mode 100644 index 0000000000000..b58cc8e660fc8 Binary files /dev/null and b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/logo.png differ diff --git a/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/info.json b/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/info.json new file mode 100644 index 0000000000000..551d2f03b623b --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/logo.png b/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/logo.png new file mode 100644 index 0000000000000..9b4a73e8db238 Binary files /dev/null and b/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/logo.png differ diff --git a/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/info.json b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/info.json new file mode 100644 index 0000000000000..26e79b9964664 --- /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": "twitter", + "url": "https://twitter.com/McPepes_AI" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mcpepe-s/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/logo.png b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/logo.png new file mode 100644 index 0000000000000..da782d14c8abe Binary files /dev/null and b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/info.json b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/info.json new file mode 100644 index 0000000000000..0d4acbd7e7ce2 --- /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": "twitter", + "url": "https://twitter.com/SnailBrookAI" + }, + { + "name": "telegram", + "url": "https://t.me/Snailbrook_Entry" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snailbrook/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/logo.png b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/logo.png new file mode 100644 index 0000000000000..bd68303503587 Binary files /dev/null and b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/logo.png differ diff --git a/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/info.json b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/info.json new file mode 100644 index 0000000000000..e3a3e0cb2f693 --- /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": "twitter", + "url": "https://twitter.com/arkhamintel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arkham/" + }, + { + "name": "telegram", + "url": "https://t.me/arkhamintelligence" + } + ] +} diff --git a/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/logo.png b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/logo.png new file mode 100644 index 0000000000000..0abe387bb7fee Binary files /dev/null and b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/logo.png differ diff --git a/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/info.json b/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/info.json new file mode 100644 index 0000000000000..5ca6b58d9c38b --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/logo.png b/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/logo.png new file mode 100644 index 0000000000000..7e2a636e29485 Binary files /dev/null and b/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/logo.png differ diff --git a/blockchains/ethereum/assets/0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8/info.json b/blockchains/ethereum/assets/0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8/info.json new file mode 100644 index 0000000000000..530fc6718b283 --- /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": "twitter", + "url": "https://twitter.com/luffyinutoken" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/R4fpgPGB0l9kMGJi" + }, + { + "name": "whitepaper", + "url": "https://luffytoken.com/pdf/whitepaper.pdf" + } + ] +} diff --git a/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/info.json b/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/info.json new file mode 100644 index 0000000000000..0bbf54165b754 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..9d7b0435acaac Binary files /dev/null and b/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/logo.png differ diff --git a/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/info.json b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/info.json new file mode 100644 index 0000000000000..94c48aef5139e --- /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": "twitter", + "url": "https://twitter.com/ShidoGlobal" + }, + { + "name": "github", + "url": "https://github.com/ShidoGlobal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shido-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shido-2/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/logo.png b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/logo.png new file mode 100644 index 0000000000000..c01f437dcf42c Binary files /dev/null and b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/logo.png differ diff --git a/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/info.json b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/info.json new file mode 100644 index 0000000000000..1e50554b5e4b1 --- /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": "twitter", + "url": "https://twitter.com/mavprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/maverickprotocolofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maverick-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/logo.png b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/logo.png new file mode 100644 index 0000000000000..f21e40bef2273 Binary files /dev/null and b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/logo.png differ diff --git a/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/info.json b/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/info.json new file mode 100644 index 0000000000000..122bb11292012 --- /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": "twitter", + "url": "https://twitter.com/TheMahaDAO" + }, + { + "name": "telegram", + "url": "https://t.me/mahadao" + }, + { + "name": "medium", + "url": "https://medium.com/mahadao" + } + ], + "tags": [ + "staking", + "governance", + "defi" + ] +} diff --git a/blockchains/ethereum/assets/0xB4d930279552397bbA2ee473229f89Ec245bc365/logo.png b/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/logo.png similarity index 100% rename from blockchains/ethereum/assets/0xB4d930279552397bbA2ee473229f89Ec245bc365/logo.png rename to blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/logo.png diff --git a/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json b/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json new file mode 100644 index 0000000000000..b4731ac614add --- /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": "twitter", + "url": "https://twitter.com/naboxwallet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nabox/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/logo.png b/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/logo.png new file mode 100644 index 0000000000000..ee3475dce8027 Binary files /dev/null and b/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/logo.png differ diff --git a/blockchains/ethereum/assets/0x756bFb452cFE36A5Bc82e4F5f4261A89a18c242b/info.json b/blockchains/ethereum/assets/0x756bFb452cFE36A5Bc82e4F5f4261A89a18c242b/info.json new file mode 100644 index 0000000000000..0b576bccaddaa --- /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 0000000000000..b6c0173045c7a Binary files /dev/null and b/blockchains/ethereum/assets/0x756bFb452cFE36A5Bc82e4F5f4261A89a18c242b/logo.png differ diff --git a/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/info.json b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/info.json new file mode 100644 index 0000000000000..ca5d9e1ff6f7f --- /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": "twitter", + "url": "https://twitter.com/scamcoin_eth" + }, + { + "name": "telegram", + "url": "https://t.me/SCAMCOIN_ETH" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/logo.png b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/logo.png new file mode 100644 index 0000000000000..3599f8faa7e43 Binary files /dev/null and b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/logo.png differ diff --git a/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/info.json b/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/info.json new file mode 100644 index 0000000000000..2968ee118c3e2 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..152cba93d5df7 Binary files /dev/null and b/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/logo.png differ diff --git a/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/info.json b/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/info.json new file mode 100644 index 0000000000000..6683e36246647 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..cc526a26256c8 Binary files /dev/null and b/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/logo.png differ diff --git a/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/info.json b/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/info.json new file mode 100644 index 0000000000000..2e699667cd07e --- /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": "twitter", + "url": "https://twitter.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/DvsYCfK8" + } + ] +} diff --git a/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/logo.png b/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/logo.png new file mode 100644 index 0000000000000..8d4e8974efb0b Binary files /dev/null and b/blockchains/ethereum/assets/0x78a3B2f1e7eec1073088ea4a193618743F81cEf8/logo.png differ diff --git a/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/info.json b/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/info.json new file mode 100644 index 0000000000000..a65131d2734e8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..885fbedb44e4b Binary files /dev/null and b/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/logo.png differ diff --git a/blockchains/ethereum/assets/0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815/info.json b/blockchains/ethereum/assets/0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815/info.json new file mode 100644 index 0000000000000..177db96a6a020 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..e381b4c2bd43e Binary files /dev/null and b/blockchains/ethereum/assets/0x79C7EF95aD32DcD5ECadB231568Bb03dF7824815/logo.png differ diff --git a/blockchains/ethereum/assets/0x7B4B0B9b024109D182dCF3831222fbdA81369423/info.json b/blockchains/ethereum/assets/0x7B4B0B9b024109D182dCF3831222fbdA81369423/info.json new file mode 100644 index 0000000000000..6c81cec13ab1f --- /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 0000000000000..58b66f7e91e64 Binary files /dev/null and b/blockchains/ethereum/assets/0x7B4B0B9b024109D182dCF3831222fbdA81369423/logo.png differ diff --git a/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/info.json b/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/info.json new file mode 100644 index 0000000000000..a5c189254c705 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..b8f85ad95a0bb Binary files /dev/null and b/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/logo.png differ diff --git a/blockchains/ethereum/assets/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed/info.json b/blockchains/ethereum/assets/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed/info.json new file mode 100644 index 0000000000000..3f606b7054b06 --- /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": "twitter", + "url": "https://twitter.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/0xab167E816E4d76089119900e941BEfdfA37d6b32/logo.png b/blockchains/ethereum/assets/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed/logo.png similarity index 100% rename from blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/logo.png rename to blockchains/ethereum/assets/0x7DAc25b1A665e1c70F25F1fC37d88C99274984ed/logo.png diff --git a/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/info.json b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/info.json new file mode 100644 index 0000000000000..69ea69c16b1a8 --- /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": "twitter", + "url": "https://twitter.com/golemproject" + }, + { + "name": "github", + "url": "https://github.com/golemfactory/golem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/golem-network-tokens/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/logo.png b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/logo.png new file mode 100644 index 0000000000000..644070628b3d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/logo.png differ diff --git a/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json b/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json index b1f429a4ba353..5ca0f8da51875 100644 --- a/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json +++ b/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json @@ -1,7 +1,7 @@ { - "name": "GMT Token", - "website": "https://gmt.io/", - "description": "A token backed by real assets that brings in constantly growing daily BTC income to its owner.", + "name": "Gomining", + "website": "https://gomining.com/", + "description": "Gomining is an exchange token backed by a Top 10 global bitcoin mining project.", "explorer": "https://etherscan.io/token/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989", "type": "ERC20", "symbol": "GMT", @@ -27,7 +27,7 @@ }, { "name": "whitepaper", - "url": "https://gmt.io/white-paper.pdf" + "url": "https://gomining.com/white-paper.pdf" }, { "name": "source_code", diff --git a/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png b/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png index f30e4ef05ea4c..1d15389d09576 100644 Binary files a/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png and b/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png differ diff --git a/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/info.json b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/info.json new file mode 100644 index 0000000000000..319e8534b9fcf --- /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": "twitter", + "url": "https://twitter.com/elhippomeme" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/el-hippo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/el-hippo/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/logo.png b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/logo.png new file mode 100644 index 0000000000000..1536e72253a01 Binary files /dev/null and b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/logo.png differ diff --git a/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/info.json b/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/info.json new file mode 100644 index 0000000000000..410845b7754e4 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/logo.png b/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/logo.png new file mode 100644 index 0000000000000..3b2e558104823 Binary files /dev/null and b/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/logo.png differ diff --git a/blockchains/ethereum/assets/0x7c8161545717a334f3196e765d9713f8042EF338/info.json b/blockchains/ethereum/assets/0x7c8161545717a334f3196e765d9713f8042EF338/info.json new file mode 100644 index 0000000000000..044837dd336d4 --- /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 0000000000000..cb6457e6b173d Binary files /dev/null and b/blockchains/ethereum/assets/0x7c8161545717a334f3196e765d9713f8042EF338/logo.png differ diff --git a/blockchains/ethereum/assets/0x7c9f4C87d911613Fe9ca58b579f737911AAD2D43/info.json b/blockchains/ethereum/assets/0x7c9f4C87d911613Fe9ca58b579f737911AAD2D43/info.json new file mode 100644 index 0000000000000..98c3f57675940 --- /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 0000000000000..60c97897b870c Binary files /dev/null and b/blockchains/ethereum/assets/0x7c9f4C87d911613Fe9ca58b579f737911AAD2D43/logo.png differ diff --git a/blockchains/ethereum/assets/0x7cd167B101D2808Cfd2C45d17b2E7EA9F46b74B6/info.json b/blockchains/ethereum/assets/0x7cd167B101D2808Cfd2C45d17b2E7EA9F46b74B6/info.json new file mode 100644 index 0000000000000..026140a5832c7 --- /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 0000000000000..8ec55937f4dba Binary files /dev/null and b/blockchains/ethereum/assets/0x7cd167B101D2808Cfd2C45d17b2E7EA9F46b74B6/logo.png differ diff --git a/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json b/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json new file mode 100644 index 0000000000000..c52485305b095 --- /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": "active", + "id": "0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/VoltInuOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/VoltInuOfficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Volt_Inu/" + }, + { + "name": "whitepaper", + "url": "https://voltinu.in/Whitepaper_v1.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCDLlAleEEmhc7pVdB5pZWFg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/volt-inu-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/volt-inu" + }, + { + "name": "medium", + "url": "https://medium.com/@VoltInu" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/logo.png b/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/logo.png new file mode 100644 index 0000000000000..295e34eadfc14 Binary files /dev/null and b/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/logo.png differ diff --git a/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/info.json b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/info.json new file mode 100644 index 0000000000000..1576add7018aa --- /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": "twitter", + "url": "https://twitter.com/OggyInuLTD" + }, + { + "name": "telegram", + "url": "https://t.me/oggy_inu" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/logo.png b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/logo.png new file mode 100644 index 0000000000000..1b0f2381e7041 Binary files /dev/null and b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/logo.png differ diff --git a/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json b/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json index 2f1ed10cc7be2..e05e149f30101 100644 --- a/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json +++ b/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json @@ -1,11 +1,25 @@ { - "name": "Clover Finance", + "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, - "description": "Clover Finance is an infrastructure platform focused on cross-chain compatibility.", - "website": "https://clover.finance", - "explorer": "https://etherscan.io/token/0x80c62fe4487e1351b47ba49809ebd60ed085bf52", "status": "active", - "id": "0x80C62FE4487E1351b47Ba49809EBD60ED085bf52" -} \ No newline at end of file + "id": "0x80C62FE4487E1351b47Ba49809EBD60ED085bf52", + "links": [ + { + "name": "github", + "url": "https://github.com/clover-network" + }, + { + "name": "twitter", + "url": "https://twitter.com/clv_org" + }, + { + "name": "medium", + "url": "https://medium.com/@clv_org" + } + ] +} diff --git a/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/logo.png b/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/logo.png index 60932da90cae5..3765491ca96c3 100644 Binary files a/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/logo.png and b/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/logo.png differ diff --git a/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/info.json b/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/info.json index 18d3ae6a82154..5ccca031f36b9 100644 --- a/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/info.json +++ b/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/info.json @@ -1,13 +1,16 @@ { "name": "Stable UNI", - "website": "https://ichi.org", - "description": "Stable UNI is the stablecoin created for the Uniswap community. Backed by both a treasury of UNI and collateral of USDC this ERC20 token can be redeemed for USDC at anytime and also provides a vote for governance of the UNI treasury.", - "explorer": "https://etherscan.io/token/0x8290D7a64F25e6b5002d98367E8367c1b532b534", + "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", @@ -27,15 +30,11 @@ }, { "name": "discord", - "url": "https://discord.com/invite/Bm6pUHjHUC" + "url": "https://discord.com/invite/DvsYCfK8" }, { "name": "coingecko", "url": "https://coingecko.com/en/coins/stable-uni" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/stable-uni/" } ] -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/logo.png b/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/logo.png index b8c40e276ff15..d5720aa5d64b7 100644 Binary files a/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/logo.png and b/blockchains/ethereum/assets/0x8290D7a64F25e6b5002d98367E8367c1b532b534/logo.png differ diff --git a/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/info.json b/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/info.json new file mode 100644 index 0000000000000..aab9d4ca87543 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..1805ec23d1659 Binary files /dev/null and b/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/logo.png differ diff --git a/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/info.json b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/info.json new file mode 100644 index 0000000000000..97792c37e334a --- /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": "twitter", + "url": "https://twitter.com/ElfWallet" + }, + { + "name": "github", + "url": "https://github.com/ELF-Wallet" + }, + { + "name": "telegram", + "url": "https://t.me/ElfWallet_Global" + }, + { + "name": "whitepaper", + "url": "https://www.elfwallets.com/ELF.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elf-wallet/" + }, + { + "name": "medium", + "url": "https://medium.com/@elfwallet" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/logo.png b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/logo.png new file mode 100644 index 0000000000000..2f9cdfc5cb30c Binary files /dev/null and b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/logo.png differ diff --git a/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/info.json b/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/info.json new file mode 100644 index 0000000000000..8e1ed6372b062 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..46fe17fb77bd0 Binary files /dev/null and b/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/logo.png differ diff --git a/blockchains/ethereum/assets/0x84FA8f52E437Ac04107EC1768764B2b39287CB3e/info.json b/blockchains/ethereum/assets/0x84FA8f52E437Ac04107EC1768764B2b39287CB3e/info.json new file mode 100644 index 0000000000000..a400e96581e50 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/info.json b/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/info.json index baea6e8811fe5..313041befb26b 100644 --- a/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/info.json +++ b/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/info.json @@ -4,9 +4,30 @@ "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", - "type": "ERC20", "symbol": "DIA", + "type": "ERC20", "decimals": 18, "status": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.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 index cf40550575c67..8fd8d3e70ba4d 100644 Binary files a/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/logo.png and b/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/logo.png differ diff --git a/blockchains/ethereum/assets/0x85f138bfEE4ef8e540890CFb48F620571d67Eda3/info.json b/blockchains/ethereum/assets/0x85f138bfEE4ef8e540890CFb48F620571d67Eda3/info.json new file mode 100644 index 0000000000000..477bdb7157774 --- /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 0000000000000..5cfbd9abb2f7c Binary files /dev/null and b/blockchains/ethereum/assets/0x85f138bfEE4ef8e540890CFb48F620571d67Eda3/logo.png differ diff --git a/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/info.json b/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/info.json new file mode 100644 index 0000000000000..3ca62abbe35fd --- /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": "twitter", + "url": "https://twitter.com/badcrypto" + }, + { + "name": "discord", + "url": "https://discord.com/invite/NAWZfZBPm7" + }, + { + "name": "youtube", + "url": "https://youtube.com/badcryptopodcast" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/logo.png b/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/logo.png new file mode 100644 index 0000000000000..f76b3febd22e0 Binary files /dev/null and b/blockchains/ethereum/assets/0x862caA11AbE48c945D5361E80EaF19348C479240/logo.png differ diff --git a/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/info.json b/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/info.json new file mode 100644 index 0000000000000..53fc6fff90902 --- /dev/null +++ b/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/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://etherscan.io/token/0x8642A849D0dcb7a15a974794668ADcfbe4794B56", + "type": "ERC20", + "symbol": "PROS", + "decimals": 18, + "status": "active", + "id": "0x8642A849D0dcb7a15a974794668ADcfbe4794B56", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/logo.png b/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/logo.png new file mode 100644 index 0000000000000..5725990a5e6f0 Binary files /dev/null and b/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/logo.png differ diff --git a/blockchains/ethereum/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json b/blockchains/ethereum/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json new file mode 100644 index 0000000000000..0cbadd9a5c7a6 --- /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": "twitter", + "url": "https://twitter.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/0x88800092fF476844f74dC2FC427974BBee2794Ae/info.json b/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/info.json new file mode 100644 index 0000000000000..e60f7a7ec0897 --- /dev/null +++ b/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/info.json @@ -0,0 +1,58 @@ +{ + "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": "twitter", + "url": "https://twitter.com/AmbireWallet" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/AdEx" + }, + { + "name": "blog", + "url": "https://ambire.medium.com" + }, + { + "name": "telegram", + "url": "https://t.me/AmbireOfficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/nMBGJsb" + }, + { + "name": "facebook", + "url": "https://facebook.com/AmbireAdEx" + }, + { + "name": "whitepaper", + "url": "https://ambire.notion.site/ambire/Ambire-Wallet-Whitepaper-d502e54caf584fe7a67f9b0a018cd10f" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ambire-wallet" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/ambire-wallet" + } + ] +} diff --git a/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/logo.png b/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/logo.png new file mode 100644 index 0000000000000..2c33c7b401760 Binary files /dev/null and b/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/logo.png differ diff --git a/blockchains/ethereum/assets/0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2/info.json b/blockchains/ethereum/assets/0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2/info.json index 84740236134d2..79375f9113124 100644 --- a/blockchains/ethereum/assets/0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2/info.json +++ b/blockchains/ethereum/assets/0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2/info.json @@ -1,10 +1,10 @@ { - "name": "Chroma", + "name": "Chromia", "symbol": "CHR", "type": "ERC20", "decimals": 6, - "description": "-", - "website": "", + "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", diff --git a/blockchains/ethereum/assets/0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F/info.json b/blockchains/ethereum/assets/0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F/info.json index 4e8141b8a2032..5c645fc564dd5 100644 --- a/blockchains/ethereum/assets/0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F/info.json +++ b/blockchains/ethereum/assets/0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F/info.json @@ -6,6 +6,6 @@ "website": "https://saitamatoken.com", "description": "Community Owned Decentralised Token", "explorer": "https://etherscan.io/token/0x8b3192f5eebd8579568a2ed41e6feb402f93f73f", - "status": "active", + "status": "abandoned", "id": "0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/info.json b/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/info.json new file mode 100644 index 0000000000000..e8555b550752d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..ee8b25edc5483 Binary files /dev/null and b/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/logo.png differ diff --git a/blockchains/ethereum/assets/0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F/info.json b/blockchains/ethereum/assets/0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F/info.json new file mode 100644 index 0000000000000..0a481b0fe34b7 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d1e3a04a7a079 Binary files /dev/null and b/blockchains/ethereum/assets/0x8b385Ca3592A5EFc34E0C9fE663de56897F1751F/logo.png differ diff --git a/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/info.json b/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/info.json new file mode 100644 index 0000000000000..50f25d4987d88 --- /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": "twitter", + "url": "https://twitter.com/Bazaars_project" + }, + { + "name": "github", + "url": "https://github.com/Bazaars-project" + }, + { + "name": "telegram", + "url": "https://t.me/+47OlE7imAd8yNjQ0" + } + ], + "tags": [ + "governance" + ] +} diff --git a/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/logo.png b/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/logo.png new file mode 100644 index 0000000000000..55d19d6f4d0d1 Binary files /dev/null and b/blockchains/ethereum/assets/0x8d96B4ab6C741a4C8679AE323a100d74f085BA8F/logo.png differ diff --git a/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/info.json b/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/info.json new file mode 100644 index 0000000000000..614bdbbdf0d69 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..ac25780141b59 Binary files /dev/null and b/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/logo.png differ diff --git a/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/info.json b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/info.json new file mode 100644 index 0000000000000..e73c91f542d13 --- /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": "twitter", + "url": "https://twitter.com/okageerc" + }, + { + "name": "telegram", + "url": "https://t.me/OkageInu" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/logo.png b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/logo.png new file mode 100644 index 0000000000000..c5a86e41753d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/logo.png differ diff --git a/blockchains/ethereum/assets/0x8eB24319393716668D768dCEC29356ae9CfFe285/info.json b/blockchains/ethereum/assets/0x8eB24319393716668D768dCEC29356ae9CfFe285/info.json index 1b15327af2ead..8e13e7958884a 100644 --- a/blockchains/ethereum/assets/0x8eB24319393716668D768dCEC29356ae9CfFe285/info.json +++ b/blockchains/ethereum/assets/0x8eB24319393716668D768dCEC29356ae9CfFe285/info.json @@ -6,6 +6,6 @@ "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": "active", + "status": "abandoned", "id": "0x8eB24319393716668D768dCEC29356ae9CfFe285" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json b/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json new file mode 100644 index 0000000000000..9154082a6393f --- /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": "twitter", + "url": "https://twitter.com/Pleasure_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pleasure-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/pleasure-coin" + } + ] +} diff --git a/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/logo.png b/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/logo.png new file mode 100644 index 0000000000000..2592a2e3e7c1c Binary files /dev/null and b/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/logo.png differ diff --git a/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/info.json b/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/info.json index 7338d2a4009b1..b509b87f7e49f 100644 --- a/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/info.json +++ b/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/info.json @@ -1,11 +1,32 @@ { - "name": "ICHI", - "website": "https://ichi.farm", - "description": "ICHI is the ichi.farm governance token that enables (1) proposal submission, (2) voting, and (3) governance of ichi.farm's living agreement. The living agreement is between major cryptocurrencies to drive mass adoption of crypto through purchasing power protection, attractive passive income, and superior incentives.", + "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" -} \ No newline at end of file + "id": "0x903bEF1736CDdf2A537176cf3C64579C3867A881", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/ichifarm" + }, + { + "name": "twitter", + "url": "https://twitter.com/ichifoundation" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + } + ] +} diff --git a/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/logo.png b/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/logo.png index 56971aa77422e..96a6993ba144c 100644 Binary files a/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/logo.png and b/blockchains/ethereum/assets/0x903bEF1736CDdf2A537176cf3C64579C3867A881/logo.png differ diff --git a/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/info.json b/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/info.json new file mode 100644 index 0000000000000..27793d1c93f57 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/logo.png b/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/logo.png new file mode 100644 index 0000000000000..a1a26fbc863b7 Binary files /dev/null and b/blockchains/ethereum/assets/0x909E34d3f6124C324ac83DccA84b74398a6fa173/logo.png differ diff --git a/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/info.json b/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/info.json new file mode 100644 index 0000000000000..cd66d08eba3a7 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..bf6158f04300c Binary files /dev/null and b/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5/info.json b/blockchains/ethereum/assets/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5/info.json new file mode 100644 index 0000000000000..2ec94b1c768bb --- /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": "twitter", + "url": "https://twitter.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 0000000000000..0acb590111f84 Binary files /dev/null and b/blockchains/ethereum/assets/0x94E0BAb2F6Ab1F19F4750E42d7349f2740513aD5/logo.png differ diff --git a/blockchains/ethereum/assets/0x94a7f270cd12545A277E656266Aef5e27dF3Eb28/info.json b/blockchains/ethereum/assets/0x94a7f270cd12545A277E656266Aef5e27dF3Eb28/info.json new file mode 100644 index 0000000000000..4f3e2c3be4462 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..3e041120b65b0 Binary files /dev/null and b/blockchains/ethereum/assets/0x94a7f270cd12545A277E656266Aef5e27dF3Eb28/logo.png differ diff --git a/blockchains/ethereum/assets/0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1/info.json b/blockchains/ethereum/assets/0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1/info.json new file mode 100644 index 0000000000000..efa925d1c090c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..97fa01b1fa6c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x955d5c14C8D4944dA1Ea7836bd44D54a8eC35Ba1/logo.png differ diff --git a/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/info.json b/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/info.json new file mode 100644 index 0000000000000..02943154b3fbf --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/logo.png b/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/logo.png new file mode 100644 index 0000000000000..044ef07d91e19 Binary files /dev/null and b/blockchains/ethereum/assets/0x95aA5d2DbD3c16ee3fdea82D5C6EC3E38CE3314f/logo.png differ diff --git a/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json b/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json index 7807396cbe78c..3f2ba45185b60 100644 --- a/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json +++ b/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json @@ -1,21 +1,46 @@ { - "name": "DeFi Yield Protocol", - "website": "https://dyp.finance", - "description": "DeFi Yield Farming with Automated Vaults, combined with Ethereum Mining Pool", - "explorer": "https://etherscan.io/token/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "name": "Dypius", "type": "ERC20", "symbol": "DYP", "decimals": 18, - "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "website": "https://www.dypius.com/", + "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", + "explorer": "https://etherscan.io/token/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", "status": "active", + "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dypfinance" + }, { "name": "github", - "url": "https://github.com/dypfinance" + "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://dypfinance.medium.com/introducing-the-defi-yield-protocol-12ea2146d328" + "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/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png b/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png index d4d1c9c8123b5..129342cfae435 100644 Binary files a/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png and b/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png differ diff --git a/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/info.json b/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/info.json index 6952fdc8ea0df..dbb0794df418a 100644 --- a/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/info.json +++ b/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/info.json @@ -1,11 +1,40 @@ { "name": "Fuse Token", - "symbol": "FUSE", "type": "ERC20", + "symbol": "FUSE", "decimals": 18, - "description": "Fuse is a no-code smart contract platform for entrepreneurs that allows entrepreneurs to integrate everyday payments into their business.", "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" + "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": "twitter", + "url": "https://twitter.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 index f972ed0baefcc..db59eecdb6eec 100644 Binary files a/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/logo.png and b/blockchains/ethereum/assets/0x970B9bB2C0444F5E81e9d0eFb84C8ccdcdcAf84d/logo.png differ diff --git a/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/info.json b/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/info.json new file mode 100644 index 0000000000000..8109433f6da7b --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/logo.png b/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/logo.png new file mode 100644 index 0000000000000..2ef0532b8c00f Binary files /dev/null and b/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/logo.png differ diff --git a/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/info.json b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/info.json new file mode 100644 index 0000000000000..027f530aab4e2 --- /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": "twitter", + "url": "https://twitter.com/FlippedPepe" + } + ] +} diff --git a/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/logo.png b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/logo.png new file mode 100644 index 0000000000000..2f1a0dafec665 Binary files /dev/null and b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/logo.png differ diff --git a/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/info.json b/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/info.json new file mode 100644 index 0000000000000..5f29df04b4d0f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..74b84c85522d9 Binary files /dev/null and b/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/logo.png differ diff --git a/blockchains/ethereum/assets/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F/info.json b/blockchains/ethereum/assets/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F/info.json new file mode 100644 index 0000000000000..661afc6a952b4 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..fa9315e102908 Binary files /dev/null and b/blockchains/ethereum/assets/0x993864E43Caa7F7F12953AD6fEb1d1Ca635B875F/logo.png differ diff --git a/blockchains/ethereum/assets/0x99cFB8cBA9c821B4a343c6a1Fc630465C9708DF5/info.json b/blockchains/ethereum/assets/0x99cFB8cBA9c821B4a343c6a1Fc630465C9708DF5/info.json new file mode 100644 index 0000000000000..a33707aead88c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..16117ff79d76d Binary files /dev/null and b/blockchains/ethereum/assets/0x99cFB8cBA9c821B4a343c6a1Fc630465C9708DF5/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/info.json b/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/info.json new file mode 100644 index 0000000000000..bfe9276531dac --- /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": "twitter", + "url": "https://twitter.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 0000000000000..82f4e57e96b19 Binary files /dev/null and b/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/info.json b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/info.json new file mode 100644 index 0000000000000..c59ff05685f7b --- /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": "twitter", + "url": "https://twitter.com/ssv_network" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ssv-network/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ssv-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/logo.png b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/logo.png new file mode 100644 index 0000000000000..429bf6b6fec32 Binary files /dev/null and b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/info.json b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/info.json new file mode 100644 index 0000000000000..3b4499d0259a5 --- /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": "twitter", + "url": "https://twitter.com/BoredPepeVC" + }, + { + "name": "telegram", + "url": "https://t.me/BoredPepeVC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bored-pepe-vip-club/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/logo.png b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/logo.png new file mode 100644 index 0000000000000..ffba09e350c7f Binary files /dev/null and b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/logo.png differ diff --git a/blockchains/ethereum/assets/0x9a0242b7a33DAcbe40eDb927834F96eB39f8fBCB/info.json b/blockchains/ethereum/assets/0x9a0242b7a33DAcbe40eDb927834F96eB39f8fBCB/info.json index 50d820e3db3a8..df2b2e5595b67 100644 --- a/blockchains/ethereum/assets/0x9a0242b7a33DAcbe40eDb927834F96eB39f8fBCB/info.json +++ b/blockchains/ethereum/assets/0x9a0242b7a33DAcbe40eDb927834F96eB39f8fBCB/info.json @@ -6,6 +6,6 @@ "type": "ERC20", "symbol": "BAX", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x9a0242b7a33DAcbe40eDb927834F96eB39f8fBCB" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json new file mode 100644 index 0000000000000..9118a603e8d7f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..665e296697e89 Binary files /dev/null and b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/logo.png differ diff --git a/blockchains/ethereum/assets/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804/info.json b/blockchains/ethereum/assets/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804/info.json new file mode 100644 index 0000000000000..efbb829491e73 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804/logo.png b/blockchains/ethereum/assets/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804/logo.png new file mode 100644 index 0000000000000..44090a3dc5ff5 Binary files /dev/null and b/blockchains/ethereum/assets/0x9d71CE49ab8A0E6D2a1e7BFB89374C9392FD6804/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/info.json b/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/info.json new file mode 100644 index 0000000000000..99799d4fb56f5 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/logo.png b/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/logo.png new file mode 100644 index 0000000000000..8eaad5d69526b Binary files /dev/null and b/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/logo.png differ diff --git a/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/info.json b/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/info.json new file mode 100644 index 0000000000000..b32ddea3fd77a --- /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": "twitter", + "url": "https://twitter.com/myria" + } + ] +} diff --git a/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/logo.png b/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/logo.png new file mode 100644 index 0000000000000..75650993dc4be Binary files /dev/null and b/blockchains/ethereum/assets/0xA0Ef786Bf476fE0810408CaBA05E536aC800ff86/logo.png differ diff --git a/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/info.json b/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/info.json index 6d935174dba17..28fc1d944f622 100644 --- a/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/info.json +++ b/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/info.json @@ -1,7 +1,7 @@ { - "name": "Chain", - "website": "https://chain.com", - "description": "Chain is a cloud blockchain infrastructure that enables organizations to build better financial services from the ground up. Chain has launched Chain Core which is a permissioned and open source blockchain and Sequence, its ledger as a service product. Clients can receive discounts and pay for commercial fees with Chain Tokens (XCN) as well as participate in community protocol governance and access to premium features.", + "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", @@ -11,11 +11,11 @@ "links": [ { "name": "github", - "url": "https://github.com/chain" + "url": "https://github.com/Onyx-Protocol" }, { "name": "twitter", - "url": "https://twitter.com/chain" + "url": "https://twitter.com/OnyxProtocol" }, { "name": "blog", @@ -27,7 +27,7 @@ }, { "name": "telegram", - "url": "https://t.me/Chain" + "url": "https://t.me/onyx" } ], "tags": [ diff --git a/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/logo.png b/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/logo.png index d26f16ffbe921..18629f0ee352e 100644 Binary files a/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/logo.png and b/blockchains/ethereum/assets/0xA2cd3D43c775978A96BdBf12d733D5A1ED94fb18/logo.png differ diff --git a/blockchains/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/info.json b/blockchains/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/info.json new file mode 100644 index 0000000000000..a5a2866d24c8d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7bbf06f202f3f Binary files /dev/null and b/blockchains/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/logo.png differ diff --git a/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/info.json b/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/info.json new file mode 100644 index 0000000000000..83ac66042359c --- /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": "twitter", + "url": "https://twitter.com/LEAVINGRECORDS/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/2EmZsrf" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/logo.png b/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/logo.png new file mode 100644 index 0000000000000..f686b98fdabd2 Binary files /dev/null and b/blockchains/ethereum/assets/0xA392c35EC6900346aDEc720Abe50413F48Ee5143/logo.png differ diff --git a/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/info.json b/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/info.json new file mode 100644 index 0000000000000..6e8285412ceff --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/logo.png b/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/logo.png new file mode 100644 index 0000000000000..5badff4b8b69e Binary files /dev/null and b/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/logo.png differ diff --git a/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/info.json b/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/info.json new file mode 100644 index 0000000000000..83a9a3199153e --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/logo.png b/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/logo.png new file mode 100644 index 0000000000000..d3d0ec65e4aa2 Binary files /dev/null and b/blockchains/ethereum/assets/0xA67E9F021B9d208F7e3365B2A155E3C55B27de71/logo.png differ diff --git a/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json new file mode 100644 index 0000000000000..0b0a9a32f3afe --- /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": "twitter", + "url": "https://twitter.com/bounce_finance" + }, + { + "name": "telegram", + "url": "https://t.me/bounce_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bounce-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png new file mode 100644 index 0000000000000..c05d45d42e9c1 Binary files /dev/null and b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png differ diff --git a/blockchains/ethereum/assets/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be/info.json b/blockchains/ethereum/assets/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be/info.json index 829b22816be9d..769fdce3e1d4a 100644 --- a/blockchains/ethereum/assets/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be/info.json +++ b/blockchains/ethereum/assets/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be/info.json @@ -6,6 +6,6 @@ "description": "Offshift is a cryptographically private offshore storage & DeFi protocol on Ethereum.", "website": "https://offshift.io", "explorer": "https://etherscan.io/token/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be", - "status": "active", + "status": "abandoned", "id": "0xABe580E7ee158dA464b51ee1a83Ac0289622e6be" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be/logo.png b/blockchains/ethereum/assets/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be/logo.png deleted file mode 100644 index 2d0c52071238a..0000000000000 Binary files a/blockchains/ethereum/assets/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/info.json b/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/info.json new file mode 100644 index 0000000000000..a4e593cc6cdac --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a912e8bc92844 Binary files /dev/null and b/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/logo.png differ diff --git a/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/info.json b/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/info.json new file mode 100644 index 0000000000000..9c0a82b3f1488 --- /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 0000000000000..49d61fc769163 Binary files /dev/null and b/blockchains/ethereum/assets/0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6/logo.png differ diff --git a/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/info.json b/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/info.json new file mode 100644 index 0000000000000..60d49c644b1a1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..eb99be64fe168 Binary files /dev/null and b/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/logo.png differ diff --git a/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/info.json b/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/info.json new file mode 100644 index 0000000000000..926187b37a220 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/logo.png b/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/logo.png new file mode 100644 index 0000000000000..f426f46f701b1 Binary files /dev/null and b/blockchains/ethereum/assets/0xB1f1F47061A7Be15C69f378CB3f69423bD58F2F8/logo.png differ diff --git a/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/info.json b/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/info.json new file mode 100644 index 0000000000000..ff4941d421f31 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/logo.png b/blockchains/ethereum/assets/0xB4b9DC1C77bdbb135eA907fd5a08094d98883A35/logo.png new file mode 100644 index 0000000000000..b071fbc3b039f 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 index 89cb6230f9c0e..bb32f2c7a486e 100644 --- a/blockchains/ethereum/assets/0xB4d930279552397bbA2ee473229f89Ec245bc365/info.json +++ b/blockchains/ethereum/assets/0xB4d930279552397bbA2ee473229f89Ec245bc365/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "MAHA", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xB4d930279552397bbA2ee473229f89Ec245bc365", "links": [ { diff --git a/blockchains/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/info.json b/blockchains/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/info.json new file mode 100644 index 0000000000000..201792a751975 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..5402ed6bc17ad Binary files /dev/null and b/blockchains/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/logo.png differ diff --git a/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/info.json b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/info.json new file mode 100644 index 0000000000000..515049ad539cd --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/logo.png b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/logo.png new file mode 100644 index 0000000000000..f9069e357e65d Binary files /dev/null and b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/logo.png differ diff --git a/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png b/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png index 4ab97c315c9f7..9db68a25f3b4b 100644 Binary files a/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png and b/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png differ diff --git a/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json b/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json new file mode 100644 index 0000000000000..e1b68e704fe33 --- /dev/null +++ b/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json @@ -0,0 +1,46 @@ +{ + "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": "twitter", + "url": "https://twitter.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" + ] +} + diff --git a/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png b/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png new file mode 100644 index 0000000000000..68ecfe32afae5 Binary files /dev/null and b/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png differ diff --git a/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/info.json b/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/info.json index 1a1311b729a8f..201081cf689bb 100644 --- a/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/info.json +++ b/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/info.json @@ -1,13 +1,16 @@ { "name": "Stable FUSE", - "website": "https://ichi.org", - "description": "Stable FUSE is the stablecoin created for the Fuse community. Backed by both a treasury of FUSE and collateral of USDC this ERC20 token can be redeemed for USDC at anytime and also provides a vote for governance of the FUSE treasury.", + "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", @@ -27,11 +30,11 @@ }, { "name": "discord", - "url": "https://discord.com/invite/Bm6pUHjHUC" + "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 index 274474b391f06..0ea98f32c2191 100644 Binary files a/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/logo.png and b/blockchains/ethereum/assets/0xBbcE03B2E7f53caDCA93251CA4c928aF01Db6404/logo.png differ diff --git a/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/info.json b/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/info.json index ff7d75158874e..b5bd960860f70 100644 --- a/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/info.json +++ b/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/info.json @@ -3,9 +3,26 @@ "symbol": "SKULL", "type": "ERC20", "decimals": 4, - "description": "SKULL is the social money of the digital artist Skeenee.", - "website": "https://app.tryroll.com/rewards/SKULL", + "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" -} \ No newline at end of file + "id": "0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/skeenee_art" + }, + { + "name": "discord", + "url": "https://discord.com/invite/DZm9tY3" + }, + { + "name": "youtube", + "url": "https://youtube.com/skeenee" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/logo.png b/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/logo.png index 455c2225b27cf..e4b4c430c2701 100644 Binary files a/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/logo.png and b/blockchains/ethereum/assets/0xBcc66ed2aB491e9aE7Bf8386541Fb17421Fa9d35/logo.png differ diff --git a/blockchains/ethereum/assets/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF/info.json b/blockchains/ethereum/assets/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF/info.json new file mode 100644 index 0000000000000..f47cfab2573f1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..81a6f8c63e97a Binary files /dev/null and b/blockchains/ethereum/assets/0xC0c293ce456fF0ED870ADd98a0828Dd4d2903DBF/logo.png differ diff --git a/blockchains/ethereum/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json b/blockchains/ethereum/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json new file mode 100644 index 0000000000000..8cb71b20ba08a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..fb9f7a63b2f43 Binary files /dev/null and b/blockchains/ethereum/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png differ diff --git a/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/info.json b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/info.json new file mode 100644 index 0000000000000..5bbd26740cf3c --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png new file mode 100644 index 0000000000000..b4ea83b05d468 Binary files /dev/null and b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png differ diff --git a/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/info.json b/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/info.json new file mode 100644 index 0000000000000..4d4cb2d4e97e1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..96cf2327a3884 Binary files /dev/null and b/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/logo.png differ diff --git a/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/info.json b/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/info.json new file mode 100644 index 0000000000000..7c1f8858c05e1 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/logo.png b/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/logo.png new file mode 100644 index 0000000000000..a5b9e960170fb Binary files /dev/null and b/blockchains/ethereum/assets/0xC631bE100F6Cf9A7012C23De5a6ccb990EAFC133/logo.png differ diff --git a/blockchains/ethereum/assets/0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6/info.json b/blockchains/ethereum/assets/0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6/info.json new file mode 100644 index 0000000000000..ee06de6f1235b --- /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": "twitter", + "url": "https://twitter.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 0000000000000..01df4e76f4299 Binary files /dev/null and b/blockchains/ethereum/assets/0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6/logo.png differ diff --git a/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/info.json b/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/info.json new file mode 100644 index 0000000000000..424ca411a0d50 --- /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": "twitter", + "url": "https://twitter.com/FinaleCommunity" + }, + { + "name": "telegram", + "url": "https://t.me/BensFinaleCommunity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bens-finale/" + } + ] +} diff --git a/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/logo.png b/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/logo.png new file mode 100644 index 0000000000000..87567f6040b4c Binary files /dev/null and b/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/logo.png differ diff --git a/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json b/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json new file mode 100644 index 0000000000000..f9c146eddfa7e --- /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": "active", + "id": "0xCE3f08e664693ca792caCE4af1364D5e220827B2", + "tags": [ + "memes" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://saitamatoken.com/SAITAMA_INU_WHITEPAPER_V1.pdf" + }, + { + "name": "twitter", + "url": "https://twitter.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/" + } + ] +} diff --git a/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/logo.png b/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/logo.png new file mode 100644 index 0000000000000..c9674e2f10734 Binary files /dev/null and b/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/logo.png differ diff --git a/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/info.json b/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/info.json new file mode 100644 index 0000000000000..31633c3079c4a --- /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": "twitter", + "url": "https://twitter.com/peterpan_erc20" + }, + { + "name": "telegram", + "url": "https://t.me/peterpancoineth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/peter-pan/" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/logo.png b/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/logo.png new file mode 100644 index 0000000000000..c62f383e379db Binary files /dev/null and b/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/logo.png differ diff --git a/blockchains/ethereum/assets/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5/info.json b/blockchains/ethereum/assets/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5/info.json new file mode 100644 index 0000000000000..95459c411900c --- /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 0000000000000..90553a43201c3 Binary files /dev/null and b/blockchains/ethereum/assets/0xCdF7028ceAB81fA0C6971208e83fa7872994beE5/logo.png differ diff --git a/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png b/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png index 1dd63e79b0669..d5278e4cc57fd 100644 Binary files a/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png and b/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png differ diff --git a/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/info.json b/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/info.json new file mode 100644 index 0000000000000..716ab1606a54d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..39b73c08d4ebb Binary files /dev/null and b/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/logo.png differ diff --git a/blockchains/ethereum/assets/0xD31a59c85aE9D8edEFeC411D448f90841571b89c/info.json b/blockchains/ethereum/assets/0xD31a59c85aE9D8edEFeC411D448f90841571b89c/info.json new file mode 100644 index 0000000000000..564af8e57e2bb --- /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 0000000000000..7a2e75fd77f1b Binary files /dev/null and b/blockchains/ethereum/assets/0xD31a59c85aE9D8edEFeC411D448f90841571b89c/logo.png differ diff --git a/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/info.json b/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/info.json new file mode 100644 index 0000000000000..2c41cecc1a05b --- /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": "twitter", + "url": "https://twitter.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 0000000000000..df237d67d1d02 Binary files /dev/null and b/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/logo.png differ diff --git a/blockchains/ethereum/assets/0xDDdddd4301A082e62E84e43F474f044423921918/info.json b/blockchains/ethereum/assets/0xDDdddd4301A082e62E84e43F474f044423921918/info.json new file mode 100644 index 0000000000000..67bd81c043d72 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f548b2000edba Binary files /dev/null and b/blockchains/ethereum/assets/0xDDdddd4301A082e62E84e43F474f044423921918/logo.png differ diff --git a/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/info.json b/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/info.json new file mode 100644 index 0000000000000..0f27ee1090870 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..5fce9b50afd04 Binary files /dev/null and b/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/logo.png differ diff --git a/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/info.json b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/info.json new file mode 100644 index 0000000000000..9b78d035165a7 --- /dev/null +++ b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/info.json @@ -0,0 +1,36 @@ +{ + "name": "COW", + "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": "twitter", + "url": "https://twitter.com/MEVprotection" + }, + { + "name": "github", + "url": "https://github.com/gnosis/cow-token/" + }, + { + "name": "blog", + "url": "https://medium.com/@cow-protocol" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cowprotocol" + }, + { + "name": "forum", + "url": "https://forum.cow.fi" + } + ], + "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 0000000000000..e4ad872be94ac Binary files /dev/null and b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png differ diff --git a/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/info.json b/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/info.json new file mode 100644 index 0000000000000..0387a6a2d9fee --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/logo.png b/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/logo.png new file mode 100644 index 0000000000000..a7f87d6beb8da Binary files /dev/null and b/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/logo.png differ diff --git a/blockchains/ethereum/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json b/blockchains/ethereum/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json new file mode 100644 index 0000000000000..1c1abca266285 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..47ffbe08a8dcc Binary files /dev/null and b/blockchains/ethereum/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png differ diff --git a/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/info.json b/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/info.json new file mode 100644 index 0000000000000..a3ee58f9e4b35 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/logo.png b/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/logo.png new file mode 100644 index 0000000000000..0b1c45b8a2b7b Binary files /dev/null and b/blockchains/ethereum/assets/0xDc0327D50E6C73db2F8117760592C8BBf1CDCF38/logo.png differ diff --git a/blockchains/ethereum/assets/0xDe60aDfDdAAbaAAC3dAFa57B26AcC91Cb63728c4/info.json b/blockchains/ethereum/assets/0xDe60aDfDdAAbaAAC3dAFa57B26AcC91Cb63728c4/info.json new file mode 100644 index 0000000000000..e1f398c19d5f6 --- /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 0000000000000..498219815a122 Binary files /dev/null and b/blockchains/ethereum/assets/0xDe60aDfDdAAbaAAC3dAFa57B26AcC91Cb63728c4/logo.png differ diff --git a/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/info.json b/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/info.json new file mode 100644 index 0000000000000..12c6e4f8549f9 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..640bfae58212d Binary files /dev/null and b/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/logo.png differ diff --git a/blockchains/ethereum/assets/0xE22020F47B7378dfedcedd2C81d4137c22fE1152/info.json b/blockchains/ethereum/assets/0xE22020F47B7378dfedcedd2C81d4137c22fE1152/info.json new file mode 100644 index 0000000000000..3928f760d0240 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..33d9201f8deb1 Binary files /dev/null and b/blockchains/ethereum/assets/0xE22020F47B7378dfedcedd2C81d4137c22fE1152/logo.png differ diff --git a/blockchains/ethereum/assets/0xE3ADAA4fb7c92AB833Ee08B3561D9c434aA2A3eE/info.json b/blockchains/ethereum/assets/0xE3ADAA4fb7c92AB833Ee08B3561D9c434aA2A3eE/info.json new file mode 100644 index 0000000000000..550c3f4fbec1b --- /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 0000000000000..94f79d706b71c Binary files /dev/null and b/blockchains/ethereum/assets/0xE3ADAA4fb7c92AB833Ee08B3561D9c434aA2A3eE/logo.png differ diff --git a/blockchains/ethereum/assets/0xE617dd80c621a5072bD8cBa65E9d76c07327004d/info.json b/blockchains/ethereum/assets/0xE617dd80c621a5072bD8cBa65E9d76c07327004d/info.json new file mode 100644 index 0000000000000..381834e269b14 --- /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 0000000000000..cd42f7185e707 Binary files /dev/null and b/blockchains/ethereum/assets/0xE617dd80c621a5072bD8cBa65E9d76c07327004d/logo.png differ diff --git a/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/info.json b/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/info.json new file mode 100644 index 0000000000000..ca80af01fbbb5 --- /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": "twitter", + "url": "https://twitter.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/DvsYCfK8" + } + ] +} diff --git a/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/logo.png b/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/logo.png new file mode 100644 index 0000000000000..9e88b9d58512f Binary files /dev/null and b/blockchains/ethereum/assets/0xEc4325F0518584F0774b483c215F65474EAbD27F/logo.png differ diff --git a/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/info.json b/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/info.json new file mode 100644 index 0000000000000..935dd847ec11e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a9b0f8d10fc0e Binary files /dev/null and b/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/logo.png differ diff --git a/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/info.json b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/info.json new file mode 100644 index 0000000000000..d8181de402932 --- /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": "twitter", + "url": "https://twitter.com/bitgertbrise" + }, + { + "name": "telegram", + "url": "https://t.me/bitgertbrise" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/logo.png b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/logo.png new file mode 100644 index 0000000000000..4f1ec8dede0d1 Binary files /dev/null and b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/logo.png differ diff --git a/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json b/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json new file mode 100644 index 0000000000000..b6bb98e07c2d1 --- /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": "twitter", + "url": "https://twitter.com/GroveToken" + }, + { + "name": "facebook", + "url": "https://facebook.com/GroveTokenOfficial" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/logo.png b/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/logo.png new file mode 100644 index 0000000000000..4c8c7bcdcf762 Binary files /dev/null and b/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/logo.png differ diff --git a/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/info.json b/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/info.json new file mode 100644 index 0000000000000..bd427d97de14e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..855db6d966292 Binary files /dev/null and b/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/logo.png differ diff --git a/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/info.json b/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/info.json new file mode 100644 index 0000000000000..4094292c31f62 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..1b49f3d957904 Binary files /dev/null and b/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/logo.png differ diff --git a/blockchains/ethereum/assets/0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197/info.json b/blockchains/ethereum/assets/0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197/info.json new file mode 100644 index 0000000000000..150ca0a75e00e --- /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": "twitter", + "url": "https://twitter.com/GREY_____SUPPLY" + }, + { + "name": "discord", + "url": "https://discord.com/invite/HuG98Kw8T5" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/ethereum/assets/0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197/logo.png b/blockchains/ethereum/assets/0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197/logo.png new file mode 100644 index 0000000000000..6f735c2505d82 Binary files /dev/null and b/blockchains/ethereum/assets/0xFAD44249C2cd1F661BAc5f97C2Ff9f625ce27197/logo.png differ diff --git a/blockchains/ethereum/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json b/blockchains/ethereum/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json index 9548290dd863e..ffd760f026553 100644 --- a/blockchains/ethereum/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json +++ b/blockchains/ethereum/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json @@ -6,6 +6,6 @@ "website": "https://zedxion.io", "description": "Zedxion offers a comprehensive solution to the major problems faced by the traditional, fiat-driven monetary system. Building a crypto powered ecosystem comprising Zedxion Token.", "explorer": "https://etherscan.io/token/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341", - "status": "active", + "status": "abandoned", "id": "0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFf19138b039D938db46bDDA0067DC4BA132ec71C/info.json b/blockchains/ethereum/assets/0xFf19138b039D938db46bDDA0067DC4BA132ec71C/info.json index 6a4f0f335af4f..4093886df2b0a 100644 --- a/blockchains/ethereum/assets/0xFf19138b039D938db46bDDA0067DC4BA132ec71C/info.json +++ b/blockchains/ethereum/assets/0xFf19138b039D938db46bDDA0067DC4BA132ec71C/info.json @@ -3,9 +3,9 @@ "symbol": "SNET", "type": "ERC20", "decimals": 8, - "description": "-", + "description": "Distributed Shared Cloud Computing Network.", "website": "http://snetwork.io/", "explorer": "https://etherscan.io/token/0xFf19138b039D938db46bDDA0067DC4BA132ec71C", "status": "active", "id": "0xFf19138b039D938db46bDDA0067DC4BA132ec71C" -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json b/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json new file mode 100644 index 0000000000000..6f68b450b287d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f21a9869c8c27 Binary files /dev/null and b/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/logo.png differ diff --git a/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json new file mode 100644 index 0000000000000..da042e1613083 --- /dev/null +++ b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Binance Beacon ETH", + "type": "ERC20", + "symbol": "wBETH", + "decimals": 18, + "website": "https://www.binance.com/en/wbeth", + "description": "wBETH is a reward-bearing ETH liquid staking token offered by Binance. Each wBETH represents 1 BETH (1:1 to staked ETH) plus all of its accrued ETH2.0 staking rewards starting from when wBETH's conversion rate was initialized at 1:1 on Apr 27th 2023 00:00 (UTC+0).", + "explorer": "https://etherscan.io/token/0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "status": "active", + "id": "0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-beacon-eth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-beacon-eth" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png new file mode 100644 index 0000000000000..832596160ae8d Binary files /dev/null and b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png differ diff --git a/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/info.json b/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/info.json new file mode 100644 index 0000000000000..ef01fb0ac8b48 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..560c088528bd7 Binary files /dev/null and b/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/logo.png differ diff --git a/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/info.json b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/info.json new file mode 100644 index 0000000000000..09ce6e6942a5c --- /dev/null +++ b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/info.json @@ -0,0 +1,21 @@ +{ + "name": "X", + "website": "https://xerc20.pro", + "description": "$X Project is an Elon-inspired crypto, community-driven, X-Factor rewards, and deflationary mechanics. Join the X revolution now!", + "explorer": "https://etherscan.io/token/0xa62894d5196bc44e4c3978400ad07e7b30352372", + "type": "ERC20", + "symbol": "X", + "decimals": 9, + "status": "active", + "id": "0xa62894D5196bC44e4C3978400Ad07E7b30352372", + "links": [ + { + "name": "discord", + "url": "https://discord.com/YEJR2HN4" + }, + { + "name": "telegram", + "url": "https://t.me/Xerc20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/logo.png b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/logo.png new file mode 100644 index 0000000000000..c3c5fda4622af Binary files /dev/null and b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/logo.png differ diff --git a/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/info.json b/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/info.json new file mode 100644 index 0000000000000..fab907a83dd52 --- /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": "twitter", + "url": "https://twitter.com/Stormxio" + }, + { + "name": "telegram", + "url": "https://t.me/stormxapp" + }, + { + "name": "reddit", + "url": "https://reddit.com/stormxio/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/logo.png b/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/logo.png similarity index 100% rename from blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/logo.png rename to blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/logo.png diff --git a/blockchains/ethereum/assets/0xa693B19d2931d498c5B318dF961919BB4aee87a5/info.json b/blockchains/ethereum/assets/0xa693B19d2931d498c5B318dF961919BB4aee87a5/info.json new file mode 100644 index 0000000000000..e6b1fbf21c9d7 --- /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 0000000000000..e3110cce3bde2 Binary files /dev/null and b/blockchains/ethereum/assets/0xa693B19d2931d498c5B318dF961919BB4aee87a5/logo.png differ diff --git a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json b/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json index 8b9a4ef293823..9606cc09bd02c 100644 --- a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json +++ b/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json @@ -6,6 +6,6 @@ "type": "ERC20", "symbol": "GNT", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xa74476443119A942dE498590Fe1f2454d7D4aC0d" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/logo.png b/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/logo.png deleted file mode 100644 index 46d9e24512b0f..0000000000000 Binary files a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/info.json b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/info.json new file mode 100644 index 0000000000000..053847110ac3d --- /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": "twitter", + "url": "https://twitter.com/moses_erc20" + }, + { + "name": "telegram", + "url": "https://t.me/mosescoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moses-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/logo.png b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/logo.png new file mode 100644 index 0000000000000..a78954eb8bc53 Binary files /dev/null and b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/logo.png differ diff --git a/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/info.json b/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/info.json new file mode 100644 index 0000000000000..9190ee5e03a2a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d351ad85ab0f2 Binary files /dev/null and b/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/logo.png differ diff --git a/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/info.json b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/info.json new file mode 100644 index 0000000000000..b630af8659aae --- /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": "twitter", + "url": "https://twitter.com/MogCoinEth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mog-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/logo.png b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/logo.png new file mode 100644 index 0000000000000..fb84f1e879624 Binary files /dev/null and b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/logo.png differ diff --git a/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json b/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json index fa09aa0fa911e..432761aba5520 100644 --- a/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json +++ b/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0xab167E816E4d76089119900e941BEfdfA37d6b32", "links": [ { diff --git a/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/info.json b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/info.json new file mode 100644 index 0000000000000..c296be632ab9c --- /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": "twitter", + "url": "https://twitter.com/memecoin" + }, + { + "name": "telegram", + "url": "https://t.me/memecoin" + }, + { + "name": "whitepaper", + "url": "https://www.memecoin.org/whitepaper" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/meme" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/memecoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/logo.png b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/logo.png new file mode 100644 index 0000000000000..2db61d5fb9c56 Binary files /dev/null and b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/logo.png differ diff --git a/blockchains/ethereum/assets/0xb5fDe360d9d6D4Dddf6093a39F725081F9C601ae/info.json b/blockchains/ethereum/assets/0xb5fDe360d9d6D4Dddf6093a39F725081F9C601ae/info.json new file mode 100644 index 0000000000000..834efbf578c95 --- /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 0000000000000..77f4b3fb46136 Binary files /dev/null and b/blockchains/ethereum/assets/0xb5fDe360d9d6D4Dddf6093a39F725081F9C601ae/logo.png differ diff --git a/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/info.json b/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/info.json new file mode 100644 index 0000000000000..f5315fe95fff2 --- /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": "twitter", + "url": "https://twitter.com/NFTHearts" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/logo.png b/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/logo.png new file mode 100644 index 0000000000000..dd0c47f59613a Binary files /dev/null and b/blockchains/ethereum/assets/0xb65722e0fbD75aAF5Be39022510Ed9b018FC1FaC/logo.png differ diff --git a/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json b/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json new file mode 100644 index 0000000000000..62b86039cfd7f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..cc526a26256c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/logo.png differ diff --git a/blockchains/ethereum/assets/0xb9F747162AB1E95d07361f9048BcDF6eDdA9eEA7/info.json b/blockchains/ethereum/assets/0xb9F747162AB1E95d07361f9048BcDF6eDdA9eEA7/info.json new file mode 100644 index 0000000000000..9bef248823ef3 --- /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 0000000000000..8cd9b22a7f253 Binary files /dev/null and b/blockchains/ethereum/assets/0xb9F747162AB1E95d07361f9048BcDF6eDdA9eEA7/logo.png differ diff --git a/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json b/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json new file mode 100644 index 0000000000000..a2bf4d1a9f3c0 --- /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": "active", + "id": "0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/logo.png b/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/logo.png similarity index 100% rename from blockchains/ethereum/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/logo.png rename to blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/logo.png diff --git a/blockchains/ethereum/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json b/blockchains/ethereum/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json new file mode 100644 index 0000000000000..bc5f571d45c7a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..efff8d00af4a5 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 0000000000000..16f0cf4ce385e --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/logo.png b/blockchains/ethereum/assets/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/logo.png new file mode 100644 index 0000000000000..962f15a8fd0c6 Binary files /dev/null and b/blockchains/ethereum/assets/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/logo.png differ diff --git a/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json b/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json index e988ffd7c33de..3bbd2d3fa986b 100644 --- a/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json +++ b/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "STMX", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xbE9375C6a420D2eEB258962efB95551A5b722803", "links": [ { diff --git a/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/info.json b/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/info.json new file mode 100644 index 0000000000000..11f57130939cc --- /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": "twitter", + "url": "https://twitter.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 0000000000000..e4996ed3af470 Binary files /dev/null and b/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/logo.png differ diff --git a/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/info.json b/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/info.json new file mode 100644 index 0000000000000..151718fe62939 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a6cab14df317f Binary files /dev/null and b/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/logo.png differ diff --git a/blockchains/ethereum/assets/0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d/info.json b/blockchains/ethereum/assets/0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d/info.json new file mode 100644 index 0000000000000..598173bcf58dc --- /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 0000000000000..2a885151a2b72 Binary files /dev/null and b/blockchains/ethereum/assets/0xbd31EA8212119f94A611FA969881CBa3EA06Fa3d/logo.png differ diff --git a/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json b/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json new file mode 100644 index 0000000000000..26ce415bb493e --- /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": "twitter", + "url": "https://twitter.com/FEGtoken" + }, + { + "name": "telegram", + "url": "https://t.me/FEGchat" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/feg-token" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/logo.png b/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/logo.png new file mode 100644 index 0000000000000..94405ed8c6779 Binary files /dev/null and b/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/logo.png differ diff --git a/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/info.json b/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/info.json new file mode 100644 index 0000000000000..69be58b41709b --- /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": "The Centrifuge Token (CFG) guides the development of Centrifuge using an on-chain governance mechanism.", + "explorer": "https://etherscan.io/token/0xc221b7e65ffc80de234bbb6667abdd46593d34f0", + "status": "active", + "id": "0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/centrifuge" + }, + { + "name": "telegram", + "url": "https://t.me/centrifuge_chat" + }, + { + "name": "github", + "url": "https://github.com/centrifuge" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-centrifuge/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/logo.png b/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/logo.png new file mode 100644 index 0000000000000..d50f76fa47596 Binary files /dev/null and b/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/logo.png differ diff --git a/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/info.json b/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/info.json new file mode 100644 index 0000000000000..a3596fee84dd8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..e7332202bcb52 Binary files /dev/null and b/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC/info.json b/blockchains/ethereum/assets/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC/info.json new file mode 100644 index 0000000000000..071cacaec35f1 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC/logo.png b/blockchains/ethereum/assets/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC/logo.png new file mode 100644 index 0000000000000..a74baaf41e0cc Binary files /dev/null and b/blockchains/ethereum/assets/0xc5102fE9359FD9a28f877a67E36B0F050d81a3CC/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/info.json b/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/info.json new file mode 100644 index 0000000000000..060043df1bb79 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..0ee02b15f04e5 Binary files /dev/null and b/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/logo.png differ diff --git a/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/info.json b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/info.json new file mode 100644 index 0000000000000..802a2bc2515a9 --- /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": "twitter", + "url": "https://twitter.com/DRAC_Network" + }, + { + "name": "github", + "url": "https://github.com/DRAC-Network-Admin" + }, + { + "name": "telegram", + "url": "https://t.me/DRAC_English" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/drac-token" + }, + { + "name": "whitepaper", + "url": "https://drac.io/whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://dracnetwork.medium.com" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCcD7AsRqhU92IfqTh4SY0kQ" + }, + { + "name": "discord", + "url": "https://discord.com/invite/9DyPCHsk" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/logo.png b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/logo.png new file mode 100644 index 0000000000000..e49a73ebb5521 Binary files /dev/null and b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/logo.png differ diff --git a/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/info.json b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/info.json new file mode 100644 index 0000000000000..fcf0e7be82d3c --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/logo.png b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/logo.png new file mode 100644 index 0000000000000..a9db922bc0cd0 Binary files /dev/null and b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/logo.png differ diff --git a/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/info.json b/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/info.json new file mode 100644 index 0000000000000..cfa46e4923973 --- /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": "twitter", + "url": "https://twitter.com/ichifarm" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + }, + { + "name": "discord", + "url": "https://discord.com/invite/DvsYCfK8" + } + ] +} diff --git a/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/logo.png b/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/logo.png new file mode 100644 index 0000000000000..0e09f9d60bb1b Binary files /dev/null and b/blockchains/ethereum/assets/0xcA37530E7c5968627BE470081d1C993eb1dEaf90/logo.png differ diff --git a/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json b/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json new file mode 100644 index 0000000000000..8cebaec1467be --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6a8b61f41102c Binary files /dev/null and b/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/logo.png differ diff --git a/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/info.json b/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/info.json new file mode 100644 index 0000000000000..e2c44478effa1 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/logo.png b/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/logo.png new file mode 100644 index 0000000000000..a83d58a242a0e Binary files /dev/null and b/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/logo.png differ diff --git a/blockchains/ethereum/assets/0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2/info.json b/blockchains/ethereum/assets/0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2/info.json new file mode 100644 index 0000000000000..6b559ad1324f4 --- /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 0000000000000..25ffd17b23344 Binary files /dev/null and b/blockchains/ethereum/assets/0xcb46C550539ac3DB72dc7aF7c89B11c306C727c2/logo.png differ diff --git a/blockchains/ethereum/assets/0xccC8cb5229B0ac8069C51fd58367Fd1e622aFD97/info.json b/blockchains/ethereum/assets/0xccC8cb5229B0ac8069C51fd58367Fd1e622aFD97/info.json new file mode 100644 index 0000000000000..2a89b18b36d03 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..55b737ada1a1d Binary files /dev/null and b/blockchains/ethereum/assets/0xccC8cb5229B0ac8069C51fd58367Fd1e622aFD97/logo.png differ diff --git a/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/info.json b/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/info.json new file mode 100644 index 0000000000000..4ad6347443e4a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..2467cb033db32 Binary files /dev/null and b/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/info.json b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/info.json new file mode 100644 index 0000000000000..0a95594d84a4e --- /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": "twitter", + "url": "https://twitter.com/XDogeErc20" + }, + { + "name": "telegram", + "url": "https://t.me/xdogeerc2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xdoge-vip/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/logo.png b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/logo.png new file mode 100644 index 0000000000000..63be5587cb375 Binary files /dev/null and b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/logo.png differ diff --git a/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/info.json b/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/info.json new file mode 100644 index 0000000000000..0d0bdb813cdd9 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/logo.png b/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/logo.png new file mode 100644 index 0000000000000..26f3dbd585377 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 0000000000000..b55c899f532a5 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a3b20074ec34d Binary files /dev/null and b/blockchains/ethereum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png differ diff --git a/blockchains/ethereum/assets/0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4/info.json b/blockchains/ethereum/assets/0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4/info.json new file mode 100644 index 0000000000000..029160cb28b3f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..376f2689dbc50 Binary files /dev/null and b/blockchains/ethereum/assets/0xd3E4Ba569045546D09CF021ECC5dFe42b1d7f6E4/logo.png differ diff --git a/blockchains/ethereum/assets/0xd6327ce1fb9D6020E8C2c0E124A1eC23DCAb7536/logo.png b/blockchains/ethereum/assets/0xd6327ce1fb9D6020E8C2c0E124A1eC23DCAb7536/logo.png index 383d100496ca0..d59a0d7932d8b 100644 Binary files a/blockchains/ethereum/assets/0xd6327ce1fb9D6020E8C2c0E124A1eC23DCAb7536/logo.png and b/blockchains/ethereum/assets/0xd6327ce1fb9D6020E8C2c0E124A1eC23DCAb7536/logo.png differ diff --git a/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json b/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json new file mode 100644 index 0000000000000..77bf380acabde --- /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": "active", + "id": "0xd8Fa690304D2B2824D918C0c7376e2823704557A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png b/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png new file mode 100644 index 0000000000000..599cd735e829a Binary files /dev/null and b/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png differ diff --git a/blockchains/ethereum/assets/0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b/info.json b/blockchains/ethereum/assets/0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b/info.json new file mode 100644 index 0000000000000..3b52996cfb7cf --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6fda6afdd530f Binary files /dev/null and b/blockchains/ethereum/assets/0xd9Fcd98c322942075A5C3860693e9f4f03AAE07b/logo.png differ diff --git a/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/info.json b/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/info.json new file mode 100644 index 0000000000000..1695400eecce7 --- /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": "twitter", + "url": "https://twitter.com/goldfinch_fi" + }, + { + "name": "github", + "url": "https://github.com/goldfinch-eng" + }, + { + "name": "forum", + "url": "https://gov.goldfinch.finance/" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/logo.png b/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/logo.png new file mode 100644 index 0000000000000..81b5b64e14b57 Binary files /dev/null and b/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/logo.png differ diff --git a/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/info.json b/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/info.json new file mode 100644 index 0000000000000..1118380481667 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/logo.png b/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/logo.png new file mode 100644 index 0000000000000..3369020aed314 Binary files /dev/null and b/blockchains/ethereum/assets/0xdb4D1099D53e92593430e33483Db41c63525f55F/logo.png differ diff --git a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json index cbe60a42db60e..e3c714a07bc7c 100644 --- a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json +++ b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json @@ -1,5 +1,5 @@ { - "name": "Utrust", + "name": "xMoney", "website": "https://utrust.com", "description": "The Utrust platform allows merchants to accept digital currencies as a means of payment.", "explorer": "https://etherscan.io/token/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c", diff --git a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png old mode 100755 new mode 100644 index 532f258606ffb..c42fa10089b0e Binary files a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png and b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png differ diff --git a/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/info.json b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/info.json new file mode 100644 index 0000000000000..8b283939aa819 --- /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": "twitter", + "url": "https://twitter.com/BitRockChain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitrock/" + }, + { + "name": "telegram", + "url": "https://t.me/Bitrockchain" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/logo.png b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/logo.png new file mode 100644 index 0000000000000..c0d1e5fc04f8e Binary files /dev/null and b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/logo.png differ diff --git a/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/info.json b/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/info.json new file mode 100644 index 0000000000000..3d42741d5c7ce --- /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": "twitter", + "url": "https://twitter.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 0000000000000..c763e1fe930c1 Binary files /dev/null and b/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/logo.png differ diff --git a/blockchains/ethereum/assets/0xe1030B48b2033314979143766d7dC1F40ef8CE11/info.json b/blockchains/ethereum/assets/0xe1030B48b2033314979143766d7dC1F40ef8CE11/info.json index 8a67e5fb0f6ee..b93f9ca62b925 100644 --- a/blockchains/ethereum/assets/0xe1030B48b2033314979143766d7dC1F40ef8CE11/info.json +++ b/blockchains/ethereum/assets/0xe1030B48b2033314979143766d7dC1F40ef8CE11/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "PEEPS", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xe1030B48b2033314979143766d7dC1F40ef8CE11", "links": [ { @@ -26,4 +26,4 @@ "url": "https://t.me/ThePeoplesCoinOfficial" } ] -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/0xe1030B48b2033314979143766d7dC1F40ef8CE11/logo.png b/blockchains/ethereum/assets/0xe1030B48b2033314979143766d7dC1F40ef8CE11/logo.png deleted file mode 100644 index 51fb96689f205..0000000000000 Binary files a/blockchains/ethereum/assets/0xe1030B48b2033314979143766d7dC1F40ef8CE11/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png b/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png index dcc5ff1a0d0c5..f3a521dc1391a 100644 Binary files a/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png and b/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png differ diff --git a/blockchains/ethereum/assets/0xe803178b48A0e560C2b19F3b3d4e504f79D229ce/info.json b/blockchains/ethereum/assets/0xe803178b48A0e560C2b19F3b3d4e504f79D229ce/info.json new file mode 100644 index 0000000000000..fcb9f95f3847a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a0cd1709e6759 Binary files /dev/null and b/blockchains/ethereum/assets/0xe803178b48A0e560C2b19F3b3d4e504f79D229ce/logo.png differ diff --git a/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 0000000000000..411e3796c92ee --- /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": "twitter", + "url": "https://twitter.com/abbcfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbc-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png b/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png new file mode 100644 index 0000000000000..9259df4c30a91 Binary files /dev/null and b/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png differ diff --git a/blockchains/ethereum/assets/0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e/info.json b/blockchains/ethereum/assets/0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e/info.json new file mode 100644 index 0000000000000..c92794e4f34a0 --- /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 0000000000000..9aa7d1c15133f Binary files /dev/null and b/blockchains/ethereum/assets/0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e/logo.png differ diff --git a/blockchains/ethereum/assets/0xec67005c4E498Ec7f55E092bd1d35cbC47C91892/info.json b/blockchains/ethereum/assets/0xec67005c4E498Ec7f55E092bd1d35cbC47C91892/info.json index 5762c7711fbf2..cfb06fa0ae399 100644 --- a/blockchains/ethereum/assets/0xec67005c4E498Ec7f55E092bd1d35cbC47C91892/info.json +++ b/blockchains/ethereum/assets/0xec67005c4E498Ec7f55E092bd1d35cbC47C91892/info.json @@ -1,5 +1,5 @@ { - "name": "Melon", + "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", @@ -8,4 +8,4 @@ "decimals": 18, "status": "active", "id": "0xec67005c4E498Ec7f55E092bd1d35cbC47C91892" -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json b/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json new file mode 100644 index 0000000000000..974362b0804ef --- /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": "twitter", + "url": "https://twitter.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 0000000000000..24ec21b805ea7 Binary files /dev/null and b/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png differ diff --git a/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json b/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json index cfa61695b4380..31b53410f24cf 100644 --- a/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json +++ b/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json @@ -6,6 +6,6 @@ "description": "Freeway Tokens (FWT) are the native utility tokens for AuBit Freeway — a ground-breaking new asset management platform built for greater total returns on the world’s top investment products with no additional risk.", "website": "https://aubit.io/", "explorer": "https://etherscan.io/token/0xf151980E7A781481709e8195744bF2399FB3Cba4", - "status": "active", + "status": "abandoned", "id": "0xf151980E7A781481709e8195744bF2399FB3Cba4" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/info.json b/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/info.json index 3246f6e38545d..e578a9b93cb55 100644 --- a/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/info.json +++ b/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/info.json @@ -1,11 +1,36 @@ { - "name": "Tronix", - "symbol": "TRX", + "name": "Tronix (TRX)", "type": "ERC20", + "symbol": "TRX", "decimals": 6, - "description": "-", - "website": "", + "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": "abandoned", - "id": "0xf230b790E05390FC8295F4d3F60332c93BEd42e2" -} \ No newline at end of file + "status": "active", + "id": "0xf230b790E05390FC8295F4d3F60332c93BEd42e2", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/logo.png b/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/logo.png old mode 100755 new mode 100644 index 3518a70728125..26173628d7ad2 Binary files a/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/logo.png and b/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/logo.png differ diff --git a/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/info.json b/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/info.json new file mode 100644 index 0000000000000..529491aa6432a --- /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": "twitter", + "url": "https://twitter.com/Collections_NFT" + }, + { + "name": "discord", + "url": "https://discord.com/invite/lcnft" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/logo.png b/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/logo.png new file mode 100644 index 0000000000000..d5758ed2712ed Binary files /dev/null and b/blockchains/ethereum/assets/0xf4922496163E8176CeD096ED80c67ca8ea2168D6/logo.png differ diff --git a/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/info.json b/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/info.json index 5c50310e7d901..4ffdb232e909c 100644 --- a/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/info.json +++ b/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/info.json @@ -13,13 +13,12 @@ "name": "twitter", "url": "https://twitter.com/KishimotoInu" }, - { - "name": "coingecko", - "url": "https://coingecko.com/ru/%D0%9A%D1%80%D0%B8%D0%BF%D1%82%D0%BE%D0%B2%D0%B0%D0%BB%D1%8E%D1%82%D1%8B/kishimoto-inu" - }, { "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 index 338312defa233..90fe4aaf55c4e 100644 Binary files a/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/logo.png and b/blockchains/ethereum/assets/0xf5b1Fd29d23e98Db2D9EBb8435E1082e3B38FB65/logo.png differ diff --git a/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json b/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json new file mode 100644 index 0000000000000..a97ee6021aac9 --- /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": "twitter", + "url": "https://twitter.com/coinhubchb" + }, + { + "name": "facebook", + "url": "https://facebook.com/Thecoinhub-102940902381599" + } + ], + "tags": [ + "staking-native" + ] +} diff --git a/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/logo.png b/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/logo.png new file mode 100644 index 0000000000000..0043c489ef12f Binary files /dev/null and b/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/logo.png differ diff --git a/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/info.json b/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/info.json new file mode 100644 index 0000000000000..53389e83ce0a3 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..4463a7100f8f0 Binary files /dev/null and b/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/logo.png differ diff --git a/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/info.json b/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/info.json new file mode 100644 index 0000000000000..543d6e381ecbe --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/logo.png b/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/logo.png new file mode 100644 index 0000000000000..1de309edff9a9 Binary files /dev/null and b/blockchains/ethereum/assets/0xf920e4F3FBEF5B3aD0A25017514B769bDc4Ac135/logo.png differ diff --git a/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/info.json b/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/info.json new file mode 100644 index 0000000000000..01d40fe0f19ac --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/logo.png b/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/logo.png new file mode 100644 index 0000000000000..d192d67e1ad5a Binary files /dev/null and b/blockchains/ethereum/assets/0xfA5047c9c78B8877af97BDcb85Db743fD7313d4a/logo.png differ diff --git a/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/info.json b/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/info.json new file mode 100644 index 0000000000000..66540990971bb --- /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": "twitter", + "url": "https://twitter.com/MosesCoin777" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/logo.png b/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/logo.png new file mode 100644 index 0000000000000..f7ee1d61e88a9 Binary files /dev/null and b/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/logo.png differ diff --git a/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/info.json b/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/info.json new file mode 100644 index 0000000000000..a4456daf883f0 --- /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": "twitter", + "url": "https://twitter.com/Hippocrat_io" + }, + { + "name": "telegram", + "url": "https://t.me/nexofinance" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.hippocrat.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hippocrat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/logo.png b/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/logo.png new file mode 100644 index 0000000000000..bc67c8628bee5 Binary files /dev/null and b/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/logo.png differ diff --git a/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/info.json b/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/info.json new file mode 100644 index 0000000000000..582fe46b57787 --- /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": "active", + "id": "0xfb66321D7C674995dFcC2cb67A30bC978dc862AD", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/logo.png b/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/logo.png new file mode 100644 index 0000000000000..3c1ad56e03a30 Binary files /dev/null and b/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/logo.png differ diff --git a/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/info.json b/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/info.json index 60e319acb747d..24bfd33f68dbf 100644 --- a/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/info.json +++ b/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/info.json @@ -1,11 +1,54 @@ { - "name": "Token Prometeus Network", - "symbol": "PROM", + "name": "Prom", "type": "ERC20", + "symbol": "PROM", "decimals": 18, - "description": "Prometeus Network is a secure and decentralized ecosystem designed to solve real-world problems in data brokerage, created for the Influencer Marketing, Medical and Insurance data market industries.", - "website": "https://prometeus.io/", + "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" -} \ No newline at end of file + "id": "0xfc82bb4ba86045Af6F327323a46E80412b91b27d", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/logo.png b/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/logo.png index bd7dc3306af74..b8bd23e7924b0 100644 Binary files a/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/logo.png and b/blockchains/ethereum/assets/0xfc82bb4ba86045Af6F327323a46E80412b91b27d/logo.png differ diff --git a/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/info.json b/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/info.json new file mode 100644 index 0000000000000..c07f3326de1f5 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..dae785169e0a5 Binary files /dev/null and b/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/logo.png differ diff --git a/blockchains/ethereum/chainlist.json b/blockchains/ethereum/chainlist.json new file mode 100644 index 0000000000000..bd785c345a8b0 --- /dev/null +++ b/blockchains/ethereum/chainlist.json @@ -0,0 +1,164 @@ +{ + "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": "klaytn" + }, + { + "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": "32659", + "coinId": "fusion" + }, + { + "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" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/info/info.json b/blockchains/ethereum/info/info.json index 1c18235d81bd6..43fe2c5f73439 100644 --- a/blockchains/ethereum/info/info.json +++ b/blockchains/ethereum/info/info.json @@ -8,6 +8,9 @@ "type": "coin", "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "github", diff --git a/blockchains/ethereum/tokenlist-extended.json b/blockchains/ethereum/tokenlist-extended.json index bfc4dff03e791..f7ea909fa731b 100644 --- a/blockchains/ethereum/tokenlist-extended.json +++ b/blockchains/ethereum/tokenlist-extended.json @@ -10,7 +10,7 @@ "name": "Pax Dollar", "symbol": "USDP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x8E870D67F660D95d5be530380D0eC0bd388289E1/logo.png" + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8E870D67F660D95d5be530380D0eC0bd388289E1/logo.png" }, { "asset": "c60_t0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", @@ -19,7 +19,7 @@ "name": "UST Token", "symbol": "UST", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/logo.png" + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa47c8bf37f92aBed4A126BDA807A7b7498661acD/logo.png" } ], "version": { diff --git a/blockchains/ethereum/tokenlist.json b/blockchains/ethereum/tokenlist.json index edcc4716f95d7..73397b68cf0a0 100644 --- a/blockchains/ethereum/tokenlist.json +++ b/blockchains/ethereum/tokenlist.json @@ -11,7 +11,7 @@ "name": "WETH", "symbol": "WETH", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2/logo.png", "pairs": [ { "base": "c60_t0x0000000000085d4780B73119b644AE5ecd22b376" @@ -19,9 +19,6 @@ { "base": "c60_t0x0000000000095413afC295d19EDeb1Ad7B71c952" }, - { - "base": "c60_t0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0" - }, { "base": "c60_t0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7" }, @@ -139,9 +136,6 @@ { "base": "c60_t0x3845badAde8e6dFF049820680d1F14bD3903a5d0" }, - { - "base": "c60_t0x389999216860AB8E0175387A0c90E5c52522C945" - }, { "base": "c60_t0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1" }, @@ -278,7 +272,7 @@ "base": "c60_t0x8a854288a5976036A725879164Ca3e91d30c6A1B" }, { - "base": "c60_t0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F" + "base": "c60_t0xCE3f08e664693ca792caCE4af1364D5e220827B2" }, { "base": "c60_t0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9" @@ -504,6 +498,18 @@ }, { "base": "c60_t0xf4d2888d29D722226FafA5d9B24F9164c092421E" + }, + { + "base": "c60_t0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96" + }, + { + "base": "c60_t0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C" + }, + { + "base": "c60_t0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A" + }, + { + "base": "c60_t0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb" } ] }, @@ -515,7 +521,7 @@ "name": "TrueUSD", "symbol": "TUSD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0000000000085d4780B73119b644AE5ecd22b376/logo.png", "pairs": [] }, { @@ -525,17 +531,7 @@ "name": "Tokenlon", "symbol": "LON", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/logo.png", - "pairs": [] - }, - { - "asset": "c60_t0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0", - "type": "ERC20", - "address": "0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0", - "name": "AllianceBlock", - "symbol": "ALBT", - "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/logo.png", "pairs": [] }, { @@ -545,7 +541,7 @@ "name": "SKALE Network", "symbol": "SKL", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7/logo.png", "pairs": [] }, { @@ -555,7 +551,7 @@ "name": "UniLend", "symbol": "UFT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0202Be363B8a4820f3F4DE7FaF5224fF05943AB1/logo.png", "pairs": [] }, { @@ -565,7 +561,7 @@ "name": "Orion Protocol", "symbol": "ORN", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0258F474786DdFd37ABCE6df6BBb1Dd5dfC4434a/logo.png", "pairs": [] }, { @@ -575,7 +571,7 @@ "name": "Rai Reflex Index", "symbol": "RAI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x03ab458634910AaD20eF5f1C8ee96F1D6ac54919/logo.png", "pairs": [] }, { @@ -585,7 +581,7 @@ "name": "SparkPoint", "symbol": "SRK", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0488401c3F535193Fa8Df029d9fFe615A06E74E6/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0488401c3F535193Fa8Df029d9fFe615A06E74E6/logo.png", "pairs": [] }, { @@ -595,7 +591,7 @@ "name": "UMA", "symbol": "UMA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828/logo.png", "pairs": [] }, { @@ -605,7 +601,7 @@ "name": "SmartKey", "symbol": "Skey", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x06A01a4d579479Dd5D884EBf61A31727A3d8D442/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x06A01a4d579479Dd5D884EBf61A31727A3d8D442/logo.png", "pairs": [] }, { @@ -615,7 +611,7 @@ "name": "Base Protocol", "symbol": "BASE", "decimals": 9, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x07150e919B4De5fD6a63DE1F9384828396f25fDC/logo.png", "pairs": [] }, { @@ -625,7 +621,7 @@ "name": "Mirror Protocol", "symbol": "MIR", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x09a3EcAFa817268f77BE1283176B946C4ff2E608/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x09a3EcAFa817268f77BE1283176B946C4ff2E608/logo.png", "pairs": [] }, { @@ -635,7 +631,7 @@ "name": "Growth DeFi", "symbol": "GRO", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x09e64c2B61a5f1690Ee6fbeD9baf5D6990F8dFd0/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x09e64c2B61a5f1690Ee6fbeD9baf5D6990F8dFd0/logo.png", "pairs": [] }, { @@ -645,7 +641,7 @@ "name": "LGO Token", "symbol": "LGO", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0a50C93c762fDD6E56D86215C24AaAD43aB629aa/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0a50C93c762fDD6E56D86215C24AaAD43aB629aa/logo.png", "pairs": [] }, { @@ -656,7 +652,7 @@ "name": "xDai", "symbol": "STAKE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0Ae055097C6d159879521C384F1D2123D1f195e6/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0Ae055097C6d159879521C384F1D2123D1f195e6/logo.png", "pairs": [] }, { @@ -667,7 +663,7 @@ "name": "yearn.finance", "symbol": "YFI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0bc529c00C6401aEF6D220BE8C6Ea1667F6Ad93e/logo.png", "pairs": [] }, { @@ -677,7 +673,7 @@ "name": "Bifrost", "symbol": "BFC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0c7D5ae016f806603CB1782bEa29AC69471CAb9c/logo.png", "pairs": [] }, { @@ -687,7 +683,7 @@ "name": "Public Mint", "symbol": "MINT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0CDF9acd87E940837ff21BB40c9fd55F68bba059/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0CDF9acd87E940837ff21BB40c9fd55F68bba059/logo.png", "pairs": [] }, { @@ -697,7 +693,7 @@ "name": "PoolTogether", "symbol": "POOL", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0cEC1A9154Ff802e7934Fc916Ed7Ca50bDE6844e/logo.png", "pairs": [] }, { @@ -708,7 +704,7 @@ "name": "Basic Attention Token", "symbol": "BAT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0D8775F648430679A709E98d2b0Cb6250d2887EF/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0D8775F648430679A709E98d2b0Cb6250d2887EF/logo.png", "pairs": [] }, { @@ -718,7 +714,7 @@ "name": "DAO Maker", "symbol": "DAO", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0f51bb10119727a7e5eA3538074fb341F56B09Ad/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0f51bb10119727a7e5eA3538074fb341F56B09Ad/logo.png", "pairs": [] }, { @@ -729,7 +725,7 @@ "name": "Decentraland", "symbol": "MANA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0F5D2fB29fb7d3CFeE444a200298f468908cC942/logo.png", "pairs": [] }, { @@ -739,7 +735,7 @@ "name": "Blockzero Labs", "symbol": "XIO", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0f7F961648aE6Db43C75663aC7E5414Eb79b5704/logo.png", "pairs": [] }, { @@ -749,7 +745,7 @@ "name": "Pundi X", "symbol": "PUNDIX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38/logo.png", "pairs": [] }, { @@ -759,7 +755,7 @@ "name": "Unilayer", "symbol": "LAYER", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x0fF6ffcFDa92c53F615a4A75D982f399C989366b/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0fF6ffcFDa92c53F615a4A75D982f399C989366b/logo.png", "pairs": [] }, { @@ -769,7 +765,7 @@ "name": "UniMex Network", "symbol": "UMX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x10Be9a8dAe441d276a5027936c3aADEd2d82bC15/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x10Be9a8dAe441d276a5027936c3aADEd2d82bC15/logo.png", "pairs": [] }, { @@ -780,7 +776,7 @@ "name": "1INCH Token", "symbol": "1INCH", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x111111111117dC0aa78b770fA6A738034120C302/logo.png", "pairs": [] }, { @@ -790,7 +786,7 @@ "name": "ARMOR", "symbol": "ARMOR", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1337DEF16F9B486fAEd0293eb623Dc8395dFE46a/logo.png", "pairs": [] }, { @@ -800,7 +796,7 @@ "name": "Armor NXM", "symbol": "arNXM", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1337DEF18C680aF1f9f45cBcab6309562975b1dD/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1337DEF18C680aF1f9f45cBcab6309562975b1dD/logo.png", "pairs": [] }, { @@ -810,7 +806,7 @@ "name": "DeFi Pulse Index", "symbol": "DPI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1494CA1F11D487c2bBe4543E90080AeBa4BA3C2b/logo.png", "pairs": [] }, { @@ -820,7 +816,7 @@ "name": "DeltaHub Community", "symbol": "DHC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x152687Bc4A7FCC89049cF119F9ac3e5aCF2eE7ef/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x152687Bc4A7FCC89049cF119F9ac3e5aCF2eE7ef/logo.png", "pairs": [] }, { @@ -830,7 +826,7 @@ "name": "EthereumMax", "symbol": "eMax", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x15874d65e649880c2614e7a480cb7c9A55787FF6/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x15874d65e649880c2614e7a480cb7c9A55787FF6/logo.png", "pairs": [] }, { @@ -840,7 +836,7 @@ "name": "PAID Network", "symbol": "PAID", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1614F18Fc94f47967A3Fbe5FfcD46d4e7Da3D787/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1614F18Fc94f47967A3Fbe5FfcD46d4e7Da3D787/logo.png", "pairs": [] }, { @@ -850,7 +846,7 @@ "name": "KIRA Network", "symbol": "KEX", "decimals": 6, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x16980b3B4a3f9D89E33311B5aa8f80303E5ca4F8/logo.png", "pairs": [] }, { @@ -860,7 +856,7 @@ "name": "Polychain Monsters", "symbol": "PMON", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1796ae0b0fa4862485106a0de9b654eFE301D0b2/logo.png", "pairs": [] }, { @@ -870,7 +866,7 @@ "name": "Cryptocurrency Top 10 Tokens Index", "symbol": "CC10", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x17aC188e09A7890a1844E5E65471fE8b0CcFadF3/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x17aC188e09A7890a1844E5E65471fE8b0CcFadF3/logo.png", "pairs": [] }, { @@ -880,7 +876,7 @@ "name": "Audius", "symbol": "AUDIO", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x18aAA7115705e8be94bfFEBDE57Af9BFc265B998/logo.png", "pairs": [] }, { @@ -891,7 +887,7 @@ "name": "Augur", "symbol": "REP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1985365e9f78359a9B6AD760e32412f4a445E862/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1985365e9f78359a9B6AD760e32412f4a445E862/logo.png", "pairs": [] }, { @@ -901,7 +897,7 @@ "name": "Vesper", "symbol": "VSP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1b40183EFB4Dd766f11bDa7A7c3AD8982e998421/logo.png", "pairs": [] }, { @@ -911,7 +907,7 @@ "name": "Antimatter.Finance Governance Token", "symbol": "MATTER", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1C9491865a1DE77C5b6e19d2E6a5F1D7a6F2b25F/logo.png", "pairs": [] }, { @@ -921,7 +917,7 @@ "name": "TOWER", "symbol": "TOWER", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1C9922314ED1415c95b9FD453c3818fd41867d0B/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1C9922314ED1415c95b9FD453c3818fd41867d0B/logo.png", "pairs": [] }, { @@ -931,7 +927,7 @@ "name": "Non-Fungible Yearn", "symbol": "NFY", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1cBb83EbcD552D5EBf8131eF8c9CD9d9BAB342bC/logo.png", "pairs": [] }, { @@ -942,7 +938,7 @@ "name": "Keep3rV1", "symbol": "KP3R", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1cEB5cB57C4D4E2b2433641b95Dd330A33185A44/logo.png", "pairs": [] }, { @@ -952,7 +948,7 @@ "name": "Lead Wallet", "symbol": "LEAD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1dD80016e3d4ae146Ee2EBB484e8edD92dacC4ce/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1dD80016e3d4ae146Ee2EBB484e8edD92dacC4ce/logo.png", "pairs": [] }, { @@ -963,7 +959,7 @@ "name": "Uniswap", "symbol": "UNI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984/logo.png", "pairs": [] }, { @@ -973,7 +969,7 @@ "name": "ChainGuardians Governance Token", "symbol": "CGG", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43/logo.png", "pairs": [] }, { @@ -983,7 +979,7 @@ "name": "OVR", "symbol": "OVR", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png", "pairs": [] }, { @@ -993,7 +989,7 @@ "name": "Reputation", "symbol": "REPv2", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x221657776846890989a759BA2973e427DfF5C9bB/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x221657776846890989a759BA2973e427DfF5C9bB/logo.png", "pairs": [] }, { @@ -1004,7 +1000,7 @@ "name": "Wrapped Bitcoin", "symbol": "WBTC", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599/logo.png", "pairs": [] }, { @@ -1014,7 +1010,7 @@ "name": "UNION Protocol Governance Token", "symbol": "UNN", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x226f7b842E0F0120b7E194D05432b3fd14773a9D/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x226f7b842E0F0120b7E194D05432b3fd14773a9D/logo.png", "pairs": [] }, { @@ -1024,7 +1020,7 @@ "name": "Unisocks Edition 0", "symbol": "SOCKS", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x23B608675a2B2fB1890d3ABBd85c5775c51691d5/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x23B608675a2B2fB1890d3ABBd85c5775c51691d5/logo.png", "pairs": [] }, { @@ -1034,7 +1030,7 @@ "name": "Bidao", "symbol": "BID", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x25e1474170c4c0aA64fa98123bdc8dB49D7802fa/logo.png", "pairs": [] }, { @@ -1044,7 +1040,7 @@ "name": "Cellframe", "symbol": "CELL", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x26c8AFBBFE1EBaca03C2bB082E69D0476Bffe099/logo.png", "pairs": [] }, { @@ -1054,7 +1050,7 @@ "name": "DegenVC", "symbol": "DGVC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x26E43759551333e57F073bb0772F50329A957b30/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x26E43759551333e57F073bb0772F50329A957b30/logo.png", "pairs": [] }, { @@ -1064,7 +1060,7 @@ "name": "DOGE KILLER", "symbol": "LEASH", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x27C70Cd1946795B66be9d954418546998b546634/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x27C70Cd1946795B66be9d954418546998b546634/logo.png", "pairs": [] }, { @@ -1074,7 +1070,7 @@ "name": "Froge Finance", "symbol": "FROGE", "decimals": 9, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x29502fE4d233EF0b45C3647101Fa1252cE0634BD/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x29502fE4d233EF0b45C3647101Fa1252cE0634BD/logo.png", "pairs": [] }, { @@ -1085,7 +1081,7 @@ "name": "HEX", "symbol": "HEX", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x2b591e99afE9f32eAA6214f7B7629768c40Eeb39/logo.png", "pairs": [] }, { @@ -1096,7 +1092,7 @@ "name": "Cream Finance", "symbol": "CREAM", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x2ba592F78dB6436527729929AAf6c908497cB200/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x2ba592F78dB6436527729929AAf6c908497cB200/logo.png", "pairs": [] }, { @@ -1106,7 +1102,7 @@ "name": "Mettalex", "symbol": "MTLX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x2e1E15C44Ffe4Df6a0cb7371CD00d5028e571d14/logo.png", "pairs": [] }, { @@ -1116,7 +1112,7 @@ "name": "Yfi.mobi", "symbol": "YFIM", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x2e2f3246b6c65CCc4239c9Ee556EC143a7E5DE2c/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x2e2f3246b6c65CCc4239c9Ee556EC143a7E5DE2c/logo.png", "pairs": [] }, { @@ -1126,7 +1122,7 @@ "name": "ZeroSwap", "symbol": "ZEE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x2eDf094dB69d6Dcd487f1B3dB9febE2eeC0dd4c5/logo.png", "pairs": [] }, { @@ -1136,7 +1132,7 @@ "name": "Decentr", "symbol": "DEC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/logo.png", "pairs": [] }, { @@ -1146,7 +1142,7 @@ "name": "THORChain ETH.RUNE", "symbol": "RUNE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/logo.png", "pairs": [] }, { @@ -1156,7 +1152,7 @@ "name": "Akita Inu", "symbol": "AKITA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/logo.png", "pairs": [] }, { @@ -1166,7 +1162,7 @@ "name": "Anatha", "symbol": "wANATHA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3383c5a8969Dc413bfdDc9656Eb80A1408E4bA20/logo.png", "pairs": [] }, { @@ -1176,7 +1172,7 @@ "name": "RAMP DEFI", "symbol": "RAMP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x33D0568941C0C64ff7e0FB4fbA0B11BD37deEd9f/logo.png", "pairs": [] }, { @@ -1186,7 +1182,7 @@ "name": "MANTRA DAO", "symbol": "OM", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png", "pairs": [] }, { @@ -1196,7 +1192,7 @@ "name": "PARSIQ", "symbol": "PRQ", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x362bc847A3a9637d3af6624EeC853618a43ed7D2/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x362bc847A3a9637d3af6624EeC853618a43ed7D2/logo.png", "pairs": [] }, { @@ -1206,17 +1202,7 @@ "name": "The Sandbox", "symbol": "SAND", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x3845badAde8e6dFF049820680d1F14bD3903a5d0/logo.png", - "pairs": [] - }, - { - "asset": "c60_t0x389999216860AB8E0175387A0c90E5c52522C945", - "type": "ERC20", - "address": "0x389999216860AB8E0175387A0c90E5c52522C945", - "name": "FEG Token", - "symbol": "FEGeth", - "decimals": 9, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3845badAde8e6dFF049820680d1F14bD3903a5d0/logo.png", "pairs": [] }, { @@ -1226,7 +1212,7 @@ "name": "Concentrated Voting Power", "symbol": "CVP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1/logo.png", "pairs": [] }, { @@ -1236,7 +1222,7 @@ "name": "DSLA", "symbol": "DSLA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3aFfCCa64c2A6f4e3B6Bd9c64CD2C969EFd1ECBe/logo.png", "pairs": [] }, { @@ -1246,7 +1232,7 @@ "name": "Vidya", "symbol": "VIDYA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3D3D35bb9bEC23b06Ca00fe472b50E7A4c692C30/logo.png", "pairs": [] }, { @@ -1257,7 +1243,7 @@ "name": "Ren", "symbol": "REN", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x408e41876cCCDC0F92210600ef50372656052a38/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x408e41876cCCDC0F92210600ef50372656052a38/logo.png", "pairs": [] }, { @@ -1268,7 +1254,7 @@ "name": "SORA", "symbol": "XOR", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x40FD72257597aA14C7231A7B1aaa29Fce868F677/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x40FD72257597aA14C7231A7B1aaa29Fce868F677/logo.png", "pairs": [] }, { @@ -1278,7 +1264,7 @@ "name": "FunFair", "symbol": "FUN", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b/logo.png", "pairs": [] }, { @@ -1288,7 +1274,7 @@ "name": "GoBlank", "symbol": "BLANK", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x41A3Dba3D677E573636BA691a70ff2D606c29666/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x41A3Dba3D677E573636BA691a70ff2D606c29666/logo.png", "pairs": [] }, { @@ -1298,7 +1284,7 @@ "name": "Pickle Finance", "symbol": "PICKLE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5/logo.png", "pairs": [] }, { @@ -1308,7 +1294,7 @@ "name": "dForce", "symbol": "DF", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0/logo.png", "pairs": [] }, { @@ -1318,7 +1304,7 @@ "name": "FLOKI", "symbol": "FLOKI", "decimals": 9, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E/logo.png", "pairs": [] }, { @@ -1328,7 +1314,7 @@ "name": "Orchid", "symbol": "OXT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4575f41308EC1483f3d399aa9a2826d74Da13Deb/logo.png", "pairs": [] }, { @@ -1338,7 +1324,7 @@ "name": "PAX Gold", "symbol": "PAXG", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x45804880De22913dAFE09f4980848ECE6EcbAf78/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x45804880De22913dAFE09f4980848ECE6EcbAf78/logo.png", "pairs": [] }, { @@ -1348,7 +1334,7 @@ "name": "WOO Network", "symbol": "WOO", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4691937a7508860F876c9c0a2a617E7d9E945D4B/logo.png", "pairs": [] }, { @@ -1358,7 +1344,7 @@ "name": "Quant", "symbol": "QNT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x4a220E6096B25EADb88358cb44068A3248254675/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4a220E6096B25EADb88358cb44068A3248254675/logo.png", "pairs": [] }, { @@ -1368,7 +1354,7 @@ "name": "Jupiter", "symbol": "JUP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4B1E80cAC91e2216EEb63e29B957eB91Ae9C2Be8/logo.png", "pairs": [] }, { @@ -1378,7 +1364,7 @@ "name": "Oraichain Token", "symbol": "ORAI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x4c11249814f11b9346808179Cf06e71ac328c1b5/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4c11249814f11b9346808179Cf06e71ac328c1b5/logo.png", "pairs": [] }, { @@ -1388,7 +1374,7 @@ "name": "TrueFi", "symbol": "TRU", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x4C19596f5aAfF459fA38B0f7eD92F11AE6543784/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4C19596f5aAfF459fA38B0f7eD92F11AE6543784/logo.png", "pairs": [] }, { @@ -1398,7 +1384,7 @@ "name": "MCDEX Token", "symbol": "MCB", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/logo.png", "pairs": [] }, { @@ -1408,7 +1394,7 @@ "name": "NuCypher", "symbol": "NU", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4fE83213D56308330EC302a8BD641f1d0113A4Cc/logo.png", "pairs": [] }, { @@ -1418,7 +1404,7 @@ "name": "Razor Network", "symbol": "RAZOR", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x50DE6856358Cc35f3A9a57eAAA34BD4cB707d2cd/logo.png", "pairs": [] }, { @@ -1429,7 +1415,7 @@ "name": "Chainlink", "symbol": "LINK", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x514910771AF9Ca656af840dff83E8264EcF986CA/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x514910771AF9Ca656af840dff83E8264EcF986CA/logo.png", "pairs": [] }, { @@ -1439,7 +1425,7 @@ "name": "unFederalReserve", "symbol": "eRSDL", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5218E472cFCFE0b64A064F055B43b4cdC9EfD3A6/logo.png", "pairs": [] }, { @@ -1449,7 +1435,7 @@ "name": "pTokens BTC", "symbol": "pBTC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5228a22e72ccC52d415EcFd199F99D0665E7733b/logo.png", "pairs": [] }, { @@ -1459,7 +1445,7 @@ "name": "BarterTrade", "symbol": "BART", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x54C9EA2E9C9E8eD865Db4A4ce6711C2a0d5063Ba/logo.png", "pairs": [] }, { @@ -1469,7 +1455,7 @@ "name": "REVV", "symbol": "REVV", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x557B933a7C2c45672B610F8954A3deB39a51A8Ca/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x557B933a7C2c45672B610F8954A3deB39a51A8Ca/logo.png", "pairs": [] }, { @@ -1480,7 +1466,7 @@ "name": "sUSD", "symbol": "sUSD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x57Ab1ec28D129707052df4dF418D58a2D46d5f51/logo.png", "pairs": [] }, { @@ -1491,7 +1477,7 @@ "name": "Hegic", "symbol": "HEGIC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x584bC13c7D411c00c01A62e8019472dE68768430/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x584bC13c7D411c00c01A62e8019472dE68768430/logo.png", "pairs": [] }, { @@ -1501,7 +1487,7 @@ "name": "UnMarshal", "symbol": "MARSH", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5a666c7d92E5fA7Edcb6390E4efD6d0CDd69cF37/logo.png", "pairs": [] }, { @@ -1511,7 +1497,7 @@ "name": "Xfinance", "symbol": "XFI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x5BEfBB272290dD5b8521D4a938f6c4757742c430/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5BEfBB272290dD5b8521D4a938f6c4757742c430/logo.png", "pairs": [] }, { @@ -1521,7 +1507,7 @@ "name": "Dev", "symbol": "DEV", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5cAf454Ba92e6F2c929DF14667Ee360eD9fD5b26/logo.png", "pairs": [] }, { @@ -1531,7 +1517,7 @@ "name": "BOND", "symbol": "BOND", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x5Dc02Ea99285E17656b8350722694c35154DB1E8/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5Dc02Ea99285E17656b8350722694c35154DB1E8/logo.png", "pairs": [] }, { @@ -1541,7 +1527,7 @@ "name": "DEXTF Token", "symbol": "DEXTF", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5F64Ab1544D28732F0A24F4713c2C8ec0dA089f0/logo.png", "pairs": [] }, { @@ -1551,7 +1537,7 @@ "name": "Liquity USD", "symbol": "LUSD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x5f98805A4E8be255a32880FDeC7F6728C6568bA0/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5f98805A4E8be255a32880FDeC7F6728C6568bA0/logo.png", "pairs": [] }, { @@ -1562,7 +1548,7 @@ "name": "iExec RLC", "symbol": "RLC", "decimals": 9, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x607F4C5BB672230e8672085532f7e901544a7375/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x607F4C5BB672230e8672085532f7e901544a7375/logo.png", "pairs": [] }, { @@ -1572,7 +1558,7 @@ "name": "Launchpool", "symbol": "LPOOL", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x6149C26Cd2f7b5CCdb32029aF817123F6E37Df5B/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6149C26Cd2f7b5CCdb32029aF817123F6E37Df5B/logo.png", "pairs": [] }, { @@ -1582,7 +1568,7 @@ "name": "cVault.finance", "symbol": "CORE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x62359Ed7505Efc61FF1D56fEF82158CcaffA23D7/logo.png", "pairs": [] }, { @@ -1592,7 +1578,7 @@ "name": "Reflexer Ungovernance Token", "symbol": "FLX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x6243d8CEA23066d098a15582d81a598b4e8391F4/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6243d8CEA23066d098a15582d81a598b4e8391F4/logo.png", "pairs": [] }, { @@ -1602,7 +1588,7 @@ "name": "AIOZ Network", "symbol": "AIOZ", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x626E8036dEB333b408Be468F951bdB42433cBF18/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x626E8036dEB333b408Be468F951bdB42433cBF18/logo.png", "pairs": [] }, { @@ -1612,7 +1598,7 @@ "name": "CyberFi Token", "symbol": "CFi", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x63b4f3e3fa4e438698CE330e365E831F7cCD1eF4/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x63b4f3e3fa4e438698CE330e365E831F7cCD1eF4/logo.png", "pairs": [] }, { @@ -1622,7 +1608,7 @@ "name": "Wise Token", "symbol": "WISE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x66a0f676479Cee1d7373f3DC2e2952778BfF5bd6/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x66a0f676479Cee1d7373f3DC2e2952778BfF5bd6/logo.png", "pairs": [] }, { @@ -1632,7 +1618,7 @@ "name": "Kylin", "symbol": "KYL", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x67B6D479c7bB412C54e03dCA8E1Bc6740ce6b99C/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x67B6D479c7bB412C54e03dCA8E1Bc6740ce6b99C/logo.png", "pairs": [] }, { @@ -1642,7 +1628,7 @@ "name": "Benchmark Protocol", "symbol": "MARK", "decimals": 9, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x67c597624B17b16fb77959217360B7cD18284253/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x67c597624B17b16fb77959217360B7cD18284253/logo.png", "pairs": [] }, { @@ -1652,7 +1638,7 @@ "name": "Gnosis", "symbol": "GNO", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x6810e776880C02933D47DB1b9fc05908e5386b96/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6810e776880C02933D47DB1b9fc05908e5386b96/logo.png", "pairs": [] }, { @@ -1662,7 +1648,7 @@ "name": "chads.vc", "symbol": "CHADS", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x69692D3345010a207b759a7D1af6fc7F38b35c5E/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x69692D3345010a207b759a7D1af6fc7F38b35c5E/logo.png", "pairs": [] }, { @@ -1672,7 +1658,7 @@ "name": "Poolz Finance", "symbol": "POOLZ", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/logo.png", "pairs": [] }, { @@ -1682,7 +1668,7 @@ "name": "Mask Network", "symbol": "MASK", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074/logo.png", "pairs": [] }, { @@ -1693,7 +1679,7 @@ "name": "Dai", "symbol": "DAI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x6B175474E89094C44Da98b954EedeAC495271d0F/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6B175474E89094C44Da98b954EedeAC495271d0F/logo.png", "pairs": [] }, { @@ -1704,7 +1690,7 @@ "name": "SushiSwap", "symbol": "SUSHI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6B3595068778DD592e39A122f4f5a5cF09C90fE2/logo.png", "pairs": [] }, { @@ -1715,7 +1701,7 @@ "name": "Fyooz", "symbol": "FYZ", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x6BFf2fE249601ed0Db3a87424a2E923118BB0312/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6BFf2fE249601ed0Db3a87424a2E923118BB0312/logo.png", "pairs": [] }, { @@ -1725,7 +1711,7 @@ "name": "Holo", "symbol": "HOT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x6c6EE5e31d828De241282B9606C8e98Ea48526E2/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6c6EE5e31d828De241282B9606C8e98Ea48526E2/logo.png", "pairs": [] }, { @@ -1735,7 +1721,7 @@ "name": "QuiverX", "symbol": "QRX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x6e0daDE58D2d89eBBe7aFc384e3E4f15b70b14D8/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6e0daDE58D2d89eBBe7aFc384e3E4f15b70b14D8/logo.png", "pairs": [] }, { @@ -1745,7 +1731,7 @@ "name": "UniTrade", "symbol": "TRADE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x6F87D756DAf0503d08Eb8993686c7Fc01Dc44fB1/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6F87D756DAf0503d08Eb8993686c7Fc01Dc44fB1/logo.png", "pairs": [] }, { @@ -1755,7 +1741,7 @@ "name": "Umbrella Network", "symbol": "UMB", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x6fC13EACE26590B80cCCAB1ba5d51890577D83B2/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6fC13EACE26590B80cCCAB1ba5d51890577D83B2/logo.png", "pairs": [] }, { @@ -1765,7 +1751,7 @@ "name": "Bird.Money", "symbol": "BIRD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x70401dFD142A16dC7031c56E862Fc88Cb9537Ce0/logo.png", "pairs": [] }, { @@ -1775,7 +1761,7 @@ "name": "Axion", "symbol": "AXN", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x71F85B2E46976bD21302B64329868fd15eb0D127/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x71F85B2E46976bD21302B64329868fd15eb0D127/logo.png", "pairs": [] }, { @@ -1785,7 +1771,7 @@ "name": "Bridge Mutual", "symbol": "BMI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x725C263e32c72dDC3A19bEa12C5a0479a81eE688/logo.png", "pairs": [] }, { @@ -1795,7 +1781,7 @@ "name": "Paypolitan Token", "symbol": "EPAN", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x72630B1e3B42874bf335020Ba0249e3E9e47Bafc/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x72630B1e3B42874bf335020Ba0249e3E9e47Bafc/logo.png", "pairs": [] }, { @@ -1805,7 +1791,7 @@ "name": "Metaverse Index", "symbol": "MVI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x72e364F2ABdC788b7E918bc238B21f109Cd634D7/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x72e364F2ABdC788b7E918bc238B21f109Cd634D7/logo.png", "pairs": [] }, { @@ -1815,7 +1801,7 @@ "name": "SmartCredit Token", "symbol": "SMARTCREDIT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x72e9D9038cE484EE986FEa183f8d8Df93f9aDA13/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x72e9D9038cE484EE986FEa183f8d8Df93f9aDA13/logo.png", "pairs": [] }, { @@ -1825,7 +1811,7 @@ "name": "Dogelon", "symbol": "ELON", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x761D38e5ddf6ccf6Cf7c55759d5210750B5D60F3/logo.png", "pairs": [] }, { @@ -1835,7 +1821,7 @@ "name": "XCAD Network", "symbol": "XCAD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x7659CE147D0e714454073a5dd7003544234b6Aa0/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7659CE147D0e714454073a5dd7003544234b6Aa0/logo.png", "pairs": [] }, { @@ -1845,7 +1831,7 @@ "name": "Boolberry", "symbol": "BBR", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x7671904eed7f10808B664fc30BB8693FD7237abF/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7671904eed7f10808B664fc30BB8693FD7237abF/logo.png", "pairs": [] }, { @@ -1855,7 +1841,7 @@ "name": "Tornado Cash", "symbol": "TORN", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x77777FeDdddFfC19Ff86DB637967013e6C6A116C/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x77777FeDdddFfC19Ff86DB637967013e6C6A116C/logo.png", "pairs": [] }, { @@ -1865,7 +1851,7 @@ "name": "WAXE", "symbol": "WAXE", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7a2Bc711E19ba6aff6cE8246C546E8c4B4944DFD/logo.png", "pairs": [] }, { @@ -1875,7 +1861,7 @@ "name": "DFOhub", "symbol": "buidl", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x7b123f53421b1bF8533339BFBdc7C98aA94163db/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7b123f53421b1bF8533339BFBdc7C98aA94163db/logo.png", "pairs": [] }, { @@ -1885,7 +1871,7 @@ "name": "Polygon", "symbol": "MATIC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0/logo.png", "pairs": [] }, { @@ -1895,7 +1881,7 @@ "name": "Robonomics", "symbol": "XRT", "decimals": 9, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7dE91B204C1C737bcEe6F000AAA6569Cf7061cb7/logo.png", "pairs": [] }, { @@ -1905,7 +1891,7 @@ "name": "xToken", "symbol": "XTK", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB/logo.png", "pairs": [] }, { @@ -1916,7 +1902,7 @@ "name": "Aave", "symbol": "AAVE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9/logo.png", "pairs": [] }, { @@ -1926,7 +1912,7 @@ "name": "Tenset", "symbol": "10SET", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x7FF4169a6B5122b664c51c95727d87750eC07c84/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x7FF4169a6B5122b664c51c95727d87750eC07c84/logo.png", "pairs": [] }, { @@ -1936,7 +1922,7 @@ "name": "Origin Protocol", "symbol": "OGN", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8207c1FfC5B6804F6024322CcF34F29c3541Ae26/logo.png", "pairs": [] }, { @@ -1946,7 +1932,7 @@ "name": "Polkastarter", "symbol": "POLS", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x83e6f1E41cdd28eAcEB20Cb649155049Fac3D5Aa/logo.png", "pairs": [] }, { @@ -1957,7 +1943,7 @@ "name": "Unibright", "symbol": "UBT", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8400D94A5cb0fa0D041a3788e395285d61c9ee5e/logo.png", "pairs": [] }, { @@ -1968,7 +1954,7 @@ "name": "DIA", "symbol": "DIA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/logo.png", "pairs": [] }, { @@ -1978,7 +1964,7 @@ "name": "Frax", "symbol": "FRAX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x853d955aCEf822Db058eb8505911ED77F175b99e/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x853d955aCEf822Db058eb8505911ED77F175b99e/logo.png", "pairs": [] }, { @@ -1988,7 +1974,7 @@ "name": "KEEP Token", "symbol": "KEEP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x85Eee30c52B0b379b046Fb0F85F4f3Dc3009aFEC/logo.png", "pairs": [] }, { @@ -1998,7 +1984,7 @@ "name": "88mph.app", "symbol": "MPH", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x8888801aF4d980682e47f1A9036e589479e835C5/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8888801aF4d980682e47f1A9036e589479e835C5/logo.png", "pairs": [] }, { @@ -2008,7 +1994,7 @@ "name": "Alchemist", "symbol": "⚗️", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x88ACDd2a6425c3FaAE4Bc9650Fd7E27e0Bebb7aB/logo.png", "pairs": [] }, { @@ -2018,7 +2004,7 @@ "name": "Dego Finance", "symbol": "DEGO", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x88EF27e69108B2633F8E1C184CC37940A075cC02/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x88EF27e69108B2633F8E1C184CC37940A075cC02/logo.png", "pairs": [] }, { @@ -2028,7 +2014,7 @@ "name": "pNetwork", "symbol": "PNT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x89Ab32156e46F46D02ade3FEcbe5Fc4243B9AAeD/logo.png", "pairs": [] }, { @@ -2038,7 +2024,7 @@ "name": "Finxflo", "symbol": "FXF", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8a40c222996f9F3431f63Bf80244C36822060f12/logo.png", "pairs": [] }, { @@ -2048,17 +2034,17 @@ "name": "GET", "symbol": "GET", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x8a854288a5976036A725879164Ca3e91d30c6A1B/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8a854288a5976036A725879164Ca3e91d30c6A1B/logo.png", "pairs": [] }, { - "asset": "c60_t0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F", + "asset": "c60_t0xCE3f08e664693ca792caCE4af1364D5e220827B2", "type": "ERC20", - "address": "0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F", - "name": "Saitama Inu", + "address": "0xCE3f08e664693ca792caCE4af1364D5e220827B2", + "name": "SAITAMA", "symbol": "SAITAMA", "decimals": 9, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x8B3192f5eEBD8579568A2Ed41E6FEB402f93f73F/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/logo.png", "pairs": [] }, { @@ -2068,7 +2054,7 @@ "name": "PolkaFoundry", "symbol": "PKF", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8B39B70E39Aa811b69365398e0aACe9bee238AEb/logo.png", "pairs": [] }, { @@ -2078,7 +2064,7 @@ "name": "Function X", "symbol": "FX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x8c15Ef5b4B21951d50E53E4fbdA8298FFAD25057/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8c15Ef5b4B21951d50E53E4fbdA8298FFAD25057/logo.png", "pairs": [] }, { @@ -2089,7 +2075,7 @@ "name": "Swipe", "symbol": "SXP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9/logo.png", "pairs": [] }, { @@ -2099,17 +2085,17 @@ "name": "tBTC", "symbol": "TBTC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8dAEBADE922dF735c38C80C7eBD708Af50815fAa/logo.png", "pairs": [] }, { - "asset": "c60_t0x8eB24319393716668D768dCEC29356ae9CfFe285", + "asset": "c60_t0x5B7533812759B45C2B44C19e320ba2cD2681b542", "type": "ERC20", - "address": "0x8eB24319393716668D768dCEC29356ae9CfFe285", + "address": "0x5B7533812759B45C2B44C19e320ba2cD2681b542", "name": "SingularityNET Token", - "symbol": "AGI", + "symbol": "AGIX", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x8eB24319393716668D768dCEC29356ae9CfFe285/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x5B7533812759B45C2B44C19e320ba2cD2681b542/logo.png", "pairs": [] }, { @@ -2119,7 +2105,7 @@ "name": "Request Token", "symbol": "REQ", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8f8221aFbB33998d8584A2B05749bA73c37a938a/logo.png", "pairs": [] }, { @@ -2129,7 +2115,7 @@ "name": "WHALE", "symbol": "WHALE", "decimals": 4, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x9355372396e3F6daF13359B7b607a3374cc638e0/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9355372396e3F6daF13359B7b607a3374cc638e0/logo.png", "pairs": [] }, { @@ -2139,7 +2125,7 @@ "name": "Pinakion", "symbol": "PNK", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x93ED3FBe21207Ec2E8f2d3c3de6e058Cb73Bc04d/logo.png", "pairs": [] }, { @@ -2149,7 +2135,7 @@ "name": "Evolution Land Global Token", "symbol": "RING", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x9469D013805bFfB7D3DEBe5E7839237e535ec483/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9469D013805bFfB7D3DEBe5E7839237e535ec483/logo.png", "pairs": [] }, { @@ -2159,7 +2145,7 @@ "name": "Cardstack", "symbol": "CARD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x954b890704693af242613edEf1B603825afcD708/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x954b890704693af242613edEf1B603825afcD708/logo.png", "pairs": [] }, { @@ -2169,7 +2155,7 @@ "name": "Fei USD", "symbol": "FEI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x956F47F50A910163D8BF957Cf5846D573E7f87CA/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x956F47F50A910163D8BF957Cf5846D573E7f87CA/logo.png", "pairs": [] }, { @@ -2179,7 +2165,7 @@ "name": "APY.Finance", "symbol": "APY", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x95a4492F028aa1fd432Ea71146b433E7B4446611/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x95a4492F028aa1fd432Ea71146b433E7B4446611/logo.png", "pairs": [] }, { @@ -2189,17 +2175,17 @@ "name": "SHIBA INU", "symbol": "SHIB", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE/logo.png", "pairs": [] }, { "asset": "c60_t0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", "type": "ERC20", "address": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "name": "DeFi Yield Protocol", + "name": "Dypius", "symbol": "DYP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png", "pairs": [] }, { @@ -2210,7 +2196,7 @@ "name": "Ocean Protocol", "symbol": "OCEAN", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x967da4048cD07aB37855c090aAF366e4ce1b9F48/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x967da4048cD07aB37855c090aAF366e4ce1b9F48/logo.png", "pairs": [] }, { @@ -2220,7 +2206,7 @@ "name": "Strong", "symbol": "STRONG", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x990f341946A3fdB507aE7e52d17851B87168017c/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x990f341946A3fdB507aE7e52d17851B87168017c/logo.png", "pairs": [] }, { @@ -2230,7 +2216,7 @@ "name": "Shopping.io", "symbol": "SPI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9B02dD390a603Add5c07f9fd9175b7DABE8D63B7/logo.png", "pairs": [] }, { @@ -2240,7 +2226,7 @@ "name": "Binance Wrapped BTC", "symbol": "BBTC", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9BE89D2a4cd102D8Fecc6BF9dA793be995C22541/logo.png", "pairs": [] }, { @@ -2250,7 +2236,7 @@ "name": "Doki Doki Finance", "symbol": "DOKI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544/logo.png", "pairs": [] }, { @@ -2260,7 +2246,7 @@ "name": "Delta Financial", "symbol": "DELTA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x9EA3b5b4EC044b70375236A281986106457b20EF/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9EA3b5b4EC044b70375236A281986106457b20EF/logo.png", "pairs": [] }, { @@ -2270,7 +2256,7 @@ "name": "Unistake", "symbol": "UNISTAKE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9Ed8e7C9604790F7Ec589F99b94361d8AAB64E5E/logo.png", "pairs": [] }, { @@ -2280,7 +2266,7 @@ "name": "Tadpole", "symbol": "TAD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x9f7229aF0c4b9740e207Ea283b9094983f78ba04/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9f7229aF0c4b9740e207Ea283b9094983f78ba04/logo.png", "pairs": [] }, { @@ -2291,7 +2277,7 @@ "name": "Maker", "symbol": "MKR", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2/logo.png", "pairs": [] }, { @@ -2301,7 +2287,7 @@ "name": "GraphLinq", "symbol": "GLQ", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x9F9c8ec3534c3cE16F928381372BfbFBFb9F4D24/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9F9c8ec3534c3cE16F928381372BfbFBFb9F4D24/logo.png", "pairs": [] }, { @@ -2311,7 +2297,7 @@ "name": "Harvest Finance", "symbol": "FARM", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xa0246c9032bC3A600820415aE600c6388619A14D/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa0246c9032bC3A600820415aE600c6388619A14D/logo.png", "pairs": [] }, { @@ -2321,7 +2307,7 @@ "name": "Wrapped CrescoFin", "symbol": "wCRES", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xa0afAA285Ce85974c3C881256cB7F225e3A1178a/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa0afAA285Ce85974c3C881256cB7F225e3A1178a/logo.png", "pairs": [] }, { @@ -2332,7 +2318,7 @@ "name": "USD Coin", "symbol": "USDC", "decimals": 6, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png", "pairs": [] }, { @@ -2342,7 +2328,7 @@ "name": "Aragon", "symbol": "ANT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xa117000000f279D81A1D3cc75430fAA017FA5A2e/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa117000000f279D81A1D3cc75430fAA017FA5A2e/logo.png", "pairs": [] }, { @@ -2352,7 +2338,7 @@ "name": "RFOX", "symbol": "RFOX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xa1d6Df714F91DeBF4e0802A542E13067f31b8262/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa1d6Df714F91DeBF4e0802A542E13067f31b8262/logo.png", "pairs": [] }, { @@ -2362,7 +2348,7 @@ "name": "Lattice Token", "symbol": "LTX", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xa393473d64d2F9F026B60b6Df7859A689715d092/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa393473d64d2F9F026B60b6Df7859A689715d092/logo.png", "pairs": [] }, { @@ -2372,7 +2358,7 @@ "name": "Meta", "symbol": "MTA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2/logo.png", "pairs": [] }, { @@ -2382,7 +2368,7 @@ "name": "Rubic", "symbol": "RBC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xA4EED63db85311E22dF4473f87CcfC3DaDCFA3E3/logo.png", "pairs": [] }, { @@ -2392,7 +2378,7 @@ "name": "LUKSO", "symbol": "LYXe", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xA8b919680258d369114910511cc87595aec0be6D/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xA8b919680258d369114910511cc87595aec0be6D/logo.png", "pairs": [] }, { @@ -2402,7 +2388,7 @@ "name": "Syntropy", "symbol": "NOIA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca/logo.png", "pairs": [] }, { @@ -2412,7 +2398,7 @@ "name": "Bella Protocol", "symbol": "BEL", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xA91ac63D040dEB1b7A5E4d4134aD23eb0ba07e14/logo.png", "pairs": [] }, { @@ -2422,7 +2408,7 @@ "name": "ETH 2x Flexible Leverage Index", "symbol": "ETH2x-FLI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xAa6E8127831c9DE45ae56bB1b0d4D4Da6e5665BD/logo.png", "pairs": [] }, { @@ -2432,7 +2418,7 @@ "name": "Trace Token", "symbol": "TRAC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaA7a9CA87d3694B5755f213B5D04094b8d0F0A6F/logo.png", "pairs": [] }, { @@ -2443,7 +2429,7 @@ "name": "Celsius", "symbol": "CEL", "decimals": 4, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d/logo.png", "pairs": [] }, { @@ -2453,7 +2439,7 @@ "name": "Monolith TKN", "symbol": "TKN", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a/logo.png", "pairs": [] }, { @@ -2463,7 +2449,7 @@ "name": "Crowns", "symbol": "CWS", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaC0104Cca91D167873B8601d2e71EB3D4D8c33e0/logo.png", "pairs": [] }, { @@ -2473,7 +2459,7 @@ "name": "OptionRoom Token", "symbol": "ROOM", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xAd4f86a25bbc20FfB751f2FAC312A0B4d8F88c64/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xAd4f86a25bbc20FfB751f2FAC312A0B4d8F88c64/logo.png", "pairs": [] }, { @@ -2483,7 +2469,7 @@ "name": "UniCrypt", "symbol": "UNCX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaDB2437e6F65682B85F814fBc12FeC0508A7B1D0/logo.png", "pairs": [] }, { @@ -2493,7 +2479,7 @@ "name": "Ambire AdEx", "symbol": "ADX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xADE00C28244d5CE17D72E40330B1c318cD12B7c3/logo.png", "pairs": [] }, { @@ -2503,7 +2489,7 @@ "name": "YOP", "symbol": "YOP", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xAE1eaAE3F627AAca434127644371b67B18444051/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xAE1eaAE3F627AAca434127644371b67B18444051/logo.png", "pairs": [] }, { @@ -2513,7 +2499,7 @@ "name": "LGCY Network", "symbol": "LGCY", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaE697F994Fc5eBC000F8e22EbFfeE04612f98A0d/logo.png", "pairs": [] }, { @@ -2523,7 +2509,7 @@ "name": "Rio Fuel Token", "symbol": "RFuel", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xaf9f549774ecEDbD0966C52f250aCc548D3F36E5/logo.png", "pairs": [] }, { @@ -2533,7 +2519,7 @@ "name": "Zenfuse", "symbol": "ZEFU", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xB1e9157c2Fdcc5a856C8DA8b2d89b6C32b3c1229/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xB1e9157c2Fdcc5a856C8DA8b2d89b6C32b3c1229/logo.png", "pairs": [] }, { @@ -2543,17 +2529,17 @@ "name": "Minds", "symbol": "MINDS", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xB26631c6dda06aD89B93C71400D25692de89c068/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xB26631c6dda06aD89B93C71400D25692de89c068/logo.png", "pairs": [] }, { - "asset": "c60_t0xB4d930279552397bbA2ee473229f89Ec245bc365", + "asset": "c60_t0x745407c86DF8DB893011912d3aB28e68B62E49B0", "type": "ERC20", - "address": "0xB4d930279552397bbA2ee473229f89Ec245bc365", + "address": "0x745407c86DF8DB893011912d3aB28e68B62E49B0", "name": "MahaDAO", "symbol": "MAHA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xB4d930279552397bbA2ee473229f89Ec245bc365/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/logo.png", "pairs": [] }, { @@ -2563,7 +2549,7 @@ "name": "Nexo", "symbol": "NEXO", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206/logo.png", "pairs": [] }, { @@ -2573,7 +2559,7 @@ "name": "SYNC", "symbol": "SYNC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xB6ff96B8A8d214544Ca0dBc9B33f7AD6503eFD32/logo.png", "pairs": [] }, { @@ -2583,7 +2569,7 @@ "name": "saffron.finance", "symbol": "SFI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xb753428af26E81097e7fD17f40c88aaA3E04902c/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xb753428af26E81097e7fD17f40c88aaA3E04902c/logo.png", "pairs": [] }, { @@ -2593,7 +2579,7 @@ "name": "Stabilize Token", "symbol": "STBZ", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xB987D48Ed8f2C468D52D6405624EADBa5e76d723/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xB987D48Ed8f2C468D52D6405624EADBa5e76d723/logo.png", "pairs": [] }, { @@ -2603,7 +2589,7 @@ "name": "K21", "symbol": "K21", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xB9d99C33eA2d86EC5eC6b8A4dD816EBBA64404AF/logo.png", "pairs": [] }, { @@ -2613,7 +2599,7 @@ "name": "0chain", "symbol": "ZCN", "decimals": 10, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xb9EF770B6A5e12E45983C5D80545258aA38F3B78/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xb9EF770B6A5e12E45983C5D80545258aA38F3B78/logo.png", "pairs": [] }, { @@ -2624,7 +2610,7 @@ "name": "Balancer", "symbol": "BAL", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xba100000625a3754423978a60c9317c58a424e3D/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xba100000625a3754423978a60c9317c58a424e3D/logo.png", "pairs": [] }, { @@ -2635,7 +2621,7 @@ "name": "Band Protocol", "symbol": "BAND", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png", "pairs": [] }, { @@ -2645,7 +2631,7 @@ "name": "Swapfolio", "symbol": "SWFL", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xBa21Ef4c9f433Ede00badEFcC2754B8E74bd538A/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xBa21Ef4c9f433Ede00badEFcC2754B8E74bd538A/logo.png", "pairs": [] }, { @@ -2655,7 +2641,7 @@ "name": "Loopring", "symbol": "LRC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xBBbbCA6A901c926F240b89EacB641d8Aec7AEafD/logo.png", "pairs": [] }, { @@ -2665,7 +2651,7 @@ "name": "Ethernity Chain", "symbol": "ERN", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xBBc2AE13b23d715c30720F079fcd9B4a74093505/logo.png", "pairs": [] }, { @@ -2675,17 +2661,7 @@ "name": "Perpetual", "symbol": "PERP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xbC396689893D065F41bc2C6EcbeE5e0085233447/logo.png", - "pairs": [] - }, - { - "asset": "c60_t0xbE9375C6a420D2eEB258962efB95551A5b722803", - "type": "ERC20", - "address": "0xbE9375C6a420D2eEB258962efB95551A5b722803", - "name": "StormX", - "symbol": "STMX", - "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xbC396689893D065F41bc2C6EcbeE5e0085233447/logo.png", "pairs": [] }, { @@ -2695,7 +2671,7 @@ "name": "GYSR", "symbol": "GYSR", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb/logo.png", "pairs": [] }, { @@ -2705,7 +2681,7 @@ "name": "World Token", "symbol": "WORLD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xBF494F02EE3FdE1F20BEE6242bCe2d1ED0c15e47/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xBF494F02EE3FdE1F20BEE6242bCe2d1ED0c15e47/logo.png", "pairs": [] }, { @@ -2716,7 +2692,7 @@ "name": "Compound", "symbol": "COMP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xc00e94Cb662C3520282E6f5717214004A7f26888/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xc00e94Cb662C3520282E6f5717214004A7f26888/logo.png", "pairs": [] }, { @@ -2727,7 +2703,7 @@ "name": "Synthetix", "symbol": "SNX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets//logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets//logo.png", "pairs": [] }, { @@ -2737,7 +2713,7 @@ "name": "DLP Duck Token", "symbol": "DUCK", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC0bA369c8Db6eB3924965e5c4FD0b4C1B91e305F/logo.png", "pairs": [] }, { @@ -2747,7 +2723,7 @@ "name": "Ethereum Name Service", "symbol": "ENS", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC18360217D8F7Ab5e7c516566761Ea12Ce7F9D72/logo.png", "pairs": [] }, { @@ -2757,7 +2733,7 @@ "name": "Chain Games", "symbol": "CHAIN", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png", "pairs": [] }, { @@ -2767,7 +2743,7 @@ "name": "ZEN Exchange Token", "symbol": "ZCX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png", "pairs": [] }, { @@ -2777,7 +2753,7 @@ "name": "PowerTrade Fuel", "symbol": "PTF", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xC57d533c50bC22247d49a368880fb49a1caA39F7/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC57d533c50bC22247d49a368880fb49a1caA39F7/logo.png", "pairs": [] }, { @@ -2787,7 +2763,7 @@ "name": "Decentralized Insurance Protocol", "symbol": "DIP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xc719d010B63E5bbF2C0551872CD5316ED26AcD83/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xc719d010B63E5bbF2C0551872CD5316ED26AcD83/logo.png", "pairs": [] }, { @@ -2797,7 +2773,7 @@ "name": "Tribe", "symbol": "TRIBE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xc7283b66Eb1EB5FB86327f08e1B5816b0720212B/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xc7283b66Eb1EB5FB86327f08e1B5816b0720212B/logo.png", "pairs": [] }, { @@ -2807,7 +2783,7 @@ "name": "Convergence", "symbol": "CONV", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50/logo.png", "pairs": [] }, { @@ -2817,7 +2793,7 @@ "name": "The Graph", "symbol": "GRT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xc944E90C64B2c07662A292be6244BDf05Cda44a7/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xc944E90C64B2c07662A292be6244BDf05Cda44a7/logo.png", "pairs": [] }, { @@ -2827,7 +2803,7 @@ "name": "Rootkit Finance", "symbol": "ROOT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xCb5f72d37685C3D5aD0bB5F982443BC8FcdF570E/logo.png", "pairs": [] }, { @@ -2837,7 +2813,7 @@ "name": "Kine Governance Token", "symbol": "KINE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xCbfef8fdd706cde6F208460f2Bf39Aa9c785F05D/logo.png", "pairs": [] }, { @@ -2847,7 +2823,7 @@ "name": "TrustSwap Token", "symbol": "SWAP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xCC4304A31d09258b0029eA7FE63d032f52e44EFe/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xCC4304A31d09258b0029eA7FE63d032f52e44EFe/logo.png", "pairs": [] }, { @@ -2857,7 +2833,7 @@ "name": "BEPRO Network", "symbol": "BEPRO", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xCF3C8Be2e2C42331Da80EF210e9B1b307C03d36A/logo.png", "pairs": [] }, { @@ -2867,7 +2843,7 @@ "name": "Terra Virtua Kolect", "symbol": "TVK", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xd084B83C305daFD76AE3E1b4E1F1fe2eCcCb3988/logo.png", "pairs": [] }, { @@ -2877,7 +2853,7 @@ "name": "SIREN", "symbol": "SI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xD23Ac27148aF6A2f339BD82D0e3CFF380b5093de/logo.png", "pairs": [] }, { @@ -2888,7 +2864,7 @@ "name": "OMG Network", "symbol": "OMG", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets//logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets//logo.png", "pairs": [] }, { @@ -2898,7 +2874,7 @@ "name": "Terra", "symbol": "LUNA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xd2877702675e6cEb975b4A1dFf9fb7BAF4C91ea9/logo.png", "pairs": [] }, { @@ -2908,7 +2884,7 @@ "name": "Dextrust", "symbol": "DETS", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xd379700999F4805Ce80aa32DB46A94dF64561108/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xd379700999F4805Ce80aa32DB46A94dF64561108/logo.png", "pairs": [] }, { @@ -2919,7 +2895,7 @@ "name": "Ampleforth", "symbol": "AMPL", "decimals": 9, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets//logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets//logo.png", "pairs": [] }, { @@ -2929,7 +2905,7 @@ "name": "Polkamarkets", "symbol": "POLK", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xD478161C952357F05f0292B56012Cd8457F1cfbF/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xD478161C952357F05f0292B56012Cd8457F1cfbF/logo.png", "pairs": [] }, { @@ -2939,7 +2915,7 @@ "name": "Curve DAO Token", "symbol": "CRV", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xD533a949740bb3306d119CC777fa900bA034cd52/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xD533a949740bb3306d119CC777fa900bA034cd52/logo.png", "pairs": [] }, { @@ -2949,7 +2925,7 @@ "name": "MEME", "symbol": "MEME", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xD5525D397898e5502075Ea5E830d8914f6F0affe/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xD5525D397898e5502075Ea5E830d8914f6F0affe/logo.png", "pairs": [] }, { @@ -2959,7 +2935,7 @@ "name": "ExNetwork Token", "symbol": "EXNT", "decimals": 16, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xD6c67B93a7b248dF608a653d82a100556144c5DA/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xD6c67B93a7b248dF608a653d82a100556144c5DA/logo.png", "pairs": [] }, { @@ -2970,7 +2946,7 @@ "name": "Tether", "symbol": "USDT", "decimals": 6, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/logo.png", "pairs": [] }, { @@ -2980,7 +2956,7 @@ "name": "Atari Token", "symbol": "ATRI", "decimals": 0, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xdacD69347dE42baBfAEcD09dC88958378780FB62/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xdacD69347dE42baBfAEcD09dC88958378780FB62/logo.png", "pairs": [] }, { @@ -2990,7 +2966,7 @@ "name": "Yield", "symbol": "YLD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xDcB01cc464238396E213a6fDd933E36796eAfF9f/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xDcB01cc464238396E213a6fDd933E36796eAfF9f/logo.png", "pairs": [] }, { @@ -3000,7 +2976,7 @@ "name": "COTI", "symbol": "COTI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xDDB3422497E61e13543BeA06989C0789117555c5/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xDDB3422497E61e13543BeA06989C0789117555c5/logo.png", "pairs": [] }, { @@ -3010,7 +2986,7 @@ "name": "Curate", "symbol": "XCUR", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xE1c7E30C42C24582888C758984f6e382096786bd/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xE1c7E30C42C24582888C758984f6e382096786bd/logo.png", "pairs": [] }, { @@ -3020,7 +2996,7 @@ "name": "Injective", "symbol": "INJ", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xe28b3B32B6c345A34Ff64674606124Dd5Aceca30/logo.png", "pairs": [] }, { @@ -3030,7 +3006,7 @@ "name": "PILLAR", "symbol": "PLR", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xe3818504c1B32bF1557b16C238B2E01Fd3149C17/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xe3818504c1B32bF1557b16C238B2E01Fd3149C17/logo.png", "pairs": [] }, { @@ -3041,7 +3017,7 @@ "name": "0x", "symbol": "ZRX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xE41d2489571d322189246DaFA5ebDe1F4699F498/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xE41d2489571d322189246DaFA5ebDe1F4699F498/logo.png", "pairs": [] }, { @@ -3051,7 +3027,7 @@ "name": "WCELO", "symbol": "WCELO", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xE452E6Ea2dDeB012e20dB73bf5d3863A3Ac8d77a/logo.png", "pairs": [] }, { @@ -3061,7 +3037,7 @@ "name": "SuperFarm", "symbol": "SUPER", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png", "pairs": [] }, { @@ -3071,7 +3047,7 @@ "name": "Ferrum Network", "symbol": "FRM", "decimals": 6, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xE5CAeF4Af8780E59Df925470b050Fb23C43CA68C/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xE5CAeF4Af8780E59Df925470b050Fb23C43CA68C/logo.png", "pairs": [] }, { @@ -3081,7 +3057,7 @@ "name": "COIN", "symbol": "COIN", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xE61fDAF474Fac07063f2234Fb9e60C1163Cfa850/logo.png", "pairs": [] }, { @@ -3091,7 +3067,7 @@ "name": "ankrETH", "symbol": "aETHc", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xE95A203B1a91a908F9B9CE46459d101078c2c3cb/logo.png", "pairs": [] }, { @@ -3101,7 +3077,7 @@ "name": "Modefi", "symbol": "MOD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEA1ea0972fa092dd463f2968F9bB51Cc4c981D71/logo.png", "pairs": [] }, { @@ -3111,7 +3087,7 @@ "name": "SURF Finance", "symbol": "SURF", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEa319e87Cf06203DAe107Dd8E5672175e3Ee976c/logo.png", "pairs": [] }, { @@ -3121,7 +3097,7 @@ "name": "renBTC", "symbol": "renBTC", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEB4C2781e4ebA804CE9a9803C67d0893436bB27D/logo.png", "pairs": [] }, { @@ -3131,7 +3107,7 @@ "name": "Everest", "symbol": "ID", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xEBd9D99A3982d547C5Bb4DB7E3b1F9F14b67Eb83/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEBd9D99A3982d547C5Bb4DB7E3b1F9F14b67Eb83/logo.png", "pairs": [] }, { @@ -3141,7 +3117,7 @@ "name": "DMM: Governance", "symbol": "DMG", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xEd91879919B71bB6905f23af0A68d231EcF87b14/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEd91879919B71bB6905f23af0A68d231EcF87b14/logo.png", "pairs": [] }, { @@ -3151,7 +3127,7 @@ "name": "Exeedme", "symbol": "XED", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xee573a945B01B788B9287CE062A0CFC15bE9fd86/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xee573a945B01B788B9287CE062A0CFC15bE9fd86/logo.png", "pairs": [] }, { @@ -3161,7 +3137,7 @@ "name": "GOVI", "symbol": "GOVI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107/logo.png", "pairs": [] }, { @@ -3171,7 +3147,7 @@ "name": "Dopex Governance Token", "symbol": "DPX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEec2bE5c91ae7f8a338e1e5f3b5DE49d07AfdC81/logo.png", "pairs": [] }, { @@ -3181,7 +3157,7 @@ "name": "Hermez Network Token", "symbol": "HEZ", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xEEF9f339514298C6A857EfCfC1A762aF84438dEE/logo.png", "pairs": [] }, { @@ -3191,7 +3167,7 @@ "name": "DxSale Network", "symbol": "SALE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xF063fE1aB7a291c5d06a86e14730b00BF24cB589/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xF063fE1aB7a291c5d06a86e14730b00BF24cB589/logo.png", "pairs": [] }, { @@ -3201,7 +3177,7 @@ "name": "Rally", "symbol": "RLY", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b/logo.png", "pairs": [] }, { @@ -3211,7 +3187,7 @@ "name": "Realio Network", "symbol": "RIO", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xf21661D0D1d76d3ECb8e1B9F1c923DBfffAe4097/logo.png", "pairs": [] }, { @@ -3221,7 +3197,7 @@ "name": "Verasity", "symbol": "VRA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xF411903cbC70a74d22900a5DE66A2dda66507255/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xF411903cbC70a74d22900a5DE66A2dda66507255/logo.png", "pairs": [] }, { @@ -3231,7 +3207,7 @@ "name": "PUSH", "symbol": "PUSH", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xf418588522d5dd018b425E472991E52EBBeEEEEE/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xf418588522d5dd018b425E472991E52EBBeEEEEE/logo.png", "pairs": [] }, { @@ -3241,7 +3217,7 @@ "name": "YfDAI.finance", "symbol": "Yf-DAI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xf4CD3d3Fda8d7Fd6C5a500203e38640A70Bf9577/logo.png", "pairs": [] }, { @@ -3251,7 +3227,7 @@ "name": "Fractal", "symbol": "FCL", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xF4d861575ecC9493420A3f5a14F85B13f0b50EB3/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xF4d861575ecC9493420A3f5a14F85B13f0b50EB3/logo.png", "pairs": [] }, { @@ -3262,7 +3238,7 @@ "name": "Enjin Coin", "symbol": "ENJ", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c/logo.png", "pairs": [] }, { @@ -3272,7 +3248,7 @@ "name": "GIVLY Coin", "symbol": "GIV", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xf6537FE0df7F0Cc0985Cf00792CC98249E73EFa0/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xf6537FE0df7F0Cc0985Cf00792CC98249E73EFa0/logo.png", "pairs": [] }, { @@ -3282,7 +3258,7 @@ "name": "Visor.Finance", "symbol": "VISR", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xF938424F7210f31dF2Aee3011291b658f872e91e/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xF938424F7210f31dF2Aee3011291b658f872e91e/logo.png", "pairs": [] }, { @@ -3292,7 +3268,7 @@ "name": "Yield", "symbol": "YLD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xF94b5C5651c888d928439aB6514B93944eEE6F48/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xF94b5C5651c888d928439aB6514B93944eEE6F48/logo.png", "pairs": [] }, { @@ -3302,7 +3278,7 @@ "name": "Hoge Finance", "symbol": "HOGE", "decimals": 9, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xfAd45E47083e4607302aa43c65fB3106F1cd7607/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xfAd45E47083e4607302aa43c65fB3106F1cd7607/logo.png", "pairs": [] }, { @@ -3312,7 +3288,7 @@ "name": "DuckDaoDime", "symbol": "DDIM", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xFbEEa1C75E4c4465CB2FCCc9c6d6afe984558E20/logo.png", "pairs": [] }, { @@ -3322,7 +3298,7 @@ "name": "Moss Carbon Credit", "symbol": "MCO2", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xfC98e825A2264D890F9a1e68ed50E1526abCcacD/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xfC98e825A2264D890F9a1e68ed50E1526abCcacD/logo.png", "pairs": [] }, { @@ -3332,7 +3308,7 @@ "name": "Rarible", "symbol": "RARI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xFca59Cd816aB1eaD66534D82bc21E7515cE441CF/logo.png", "pairs": [] }, { @@ -3342,7 +3318,7 @@ "name": "Reef", "symbol": "REEF", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf/logo.png", "pairs": [] }, { @@ -3352,7 +3328,7 @@ "name": "Amp", "symbol": "AMP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xfF20817765cB7f73d4bde2e66e067E58D11095C2/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xfF20817765cB7f73d4bde2e66e067E58D11095C2/logo.png", "pairs": [] }, { @@ -3362,7 +3338,7 @@ "name": "FalconSwap Token", "symbol": "FSW", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xfffffffFf15AbF397dA76f1dcc1A1604F45126DB/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xfffffffFf15AbF397dA76f1dcc1A1604F45126DB/logo.png", "pairs": [] }, { @@ -3372,7 +3348,7 @@ "name": "OlympusDAO", "symbol": "OHM", "decimals": 9, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x383518188C0C6d7730D91b2c03a03C837814a899/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x383518188C0C6d7730D91b2c03a03C837814a899/logo.png", "pairs": [] }, { @@ -3382,17 +3358,17 @@ "name": "Illuvium", "symbol": "ILV", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x767FE9EDC9E0dF98E07454847909b5E959D7ca0E/logo.png", "pairs": [] }, { - "asset": "c60_t0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA", + "asset": "c60_t0xd1d2Eb1B1e90B638588728b4130137D262C87cae", "type": "ERC20", - "address": "0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA", + "address": "0xd1d2Eb1B1e90B638588728b4130137D262C87cae", "name": "Gala", "symbol": "GALA", "decimals": 8, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/logo.png", "pairs": [] }, { @@ -3402,7 +3378,7 @@ "name": "Convex Token", "symbol": "CVX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4e3FBD56CD56c3e72c1403e103b45Db9da5B9D2B/logo.png", "pairs": [] }, { @@ -3412,7 +3388,7 @@ "name": "Spell Token", "symbol": "SPELL", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x090185f2135308BaD17527004364eBcC2D37e5F6/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x090185f2135308BaD17527004364eBcC2D37e5F6/logo.png", "pairs": [] }, { @@ -3422,7 +3398,7 @@ "name": "OpenDAO", "symbol": "SOS", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x3b484b82567a09e2588A13D54D032153f0c0aEe0/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3b484b82567a09e2588A13D54D032153f0c0aEe0/logo.png", "pairs": [] }, { @@ -3432,7 +3408,7 @@ "name": "Gas DAO", "symbol": "GAS", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x6Bba316c48b49BD1eAc44573c5c871ff02958469/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x6Bba316c48b49BD1eAc44573c5c871ff02958469/logo.png", "pairs": [] }, { @@ -3442,7 +3418,7 @@ "name": "Binance USD", "symbol": "BUSD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x4Fabb145d64652a948d72533023f6E7A623C7C53/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x4Fabb145d64652a948d72533023f6E7A623C7C53/logo.png", "pairs": [] }, { @@ -3452,7 +3428,7 @@ "name": "MetisDAO", "symbol": "Metis", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x9E32b13ce7f2E80A01932B42553652E053D6ed8e/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x9E32b13ce7f2E80A01932B42553652E053D6ed8e/logo.png", "pairs": [] }, { @@ -3462,7 +3438,7 @@ "name": "LooksRare", "symbol": "LOOKS", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0xf4d2888d29D722226FafA5d9B24F9164c092421E/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xf4d2888d29D722226FafA5d9B24F9164c092421E/logo.png", "pairs": [] }, { @@ -3472,7 +3448,7 @@ "name": "X2Y2Token", "symbol": "X2Y2", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x1E4EDE388cbc9F4b5c79681B7f94d36a11ABEBC9/logo.png", "pairs": [] }, { @@ -3482,7 +3458,57 @@ "name": "ApeCoin (APE)", "symbol": "APE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/ethereum/assets/0x4d224452801ACEd8B2F0aebE155379bb5D594381/logo.png", + "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_t0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C", + "type": "ERC20", + "address": "0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C", + "name": "ZEDXION", + "symbol": "ZEDXION", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/logo.png", + "pairs": [] + }, + { + "asset": "c60_t0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A", + "type": "ERC20", + "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": [] } ], diff --git a/blockchains/ethereumpow/info/info.json b/blockchains/ethereumpow/info/info.json new file mode 100644 index 0000000000000..79e2161076890 --- /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": "twitter", + "url": "https://twitter.com/EthereumPoW" + }, + { + "name": "telegram_news", + "url": "https://t.me/ethereumpow_official" + } + ], + "tags": [ + "pow" + ] +} diff --git a/blockchains/ethereumpow/info/logo.png b/blockchains/ethereumpow/info/logo.png new file mode 100644 index 0000000000000..dbc9a756f8066 Binary files /dev/null and b/blockchains/ethereumpow/info/logo.png differ diff --git a/blockchains/everscale/info/info.json b/blockchains/everscale/info/info.json new file mode 100644 index 0000000000000..dc37652490575 --- /dev/null +++ b/blockchains/everscale/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Everscale", + "website": "https://everscale.network", + "description": "Everscale is a layer-1 blockchain, providing linear scalability while maintaining a high level of security and decentralization.", + "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/tonlabs" + }, + { + "name": "twitter", + "url": "https://twitter.com/Everscale_net" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Everscale/" + }, + { + "name": "whitepaper", + "url": "https://everscale.network/docs/everscale-whitepaper.pdf" + } + ] +} diff --git a/blockchains/everscale/info/logo.png b/blockchains/everscale/info/logo.png new file mode 100644 index 0000000000000..6033bec224d03 Binary files /dev/null and b/blockchains/everscale/info/logo.png differ diff --git a/blockchains/evmos/info/info.json b/blockchains/evmos/info/info.json new file mode 100644 index 0000000000000..3732094ef3a77 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..e78f6fc0c5bba Binary files /dev/null and b/blockchains/evmos/info/logo.png differ diff --git a/blockchains/evmos/validators/assets/evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70/logo.png b/blockchains/evmos/validators/assets/evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/evmos/validators/assets/evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70/logo.png differ diff --git a/blockchains/evmos/validators/assets/evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9/logo.png b/blockchains/evmos/validators/assets/evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/evmos/validators/assets/evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9/logo.png differ diff --git a/blockchains/evmos/validators/assets/evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w/logo.png b/blockchains/evmos/validators/assets/evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/evmos/validators/assets/evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w/logo.png differ diff --git a/blockchains/evmos/validators/list.json b/blockchains/evmos/validators/list.json new file mode 100644 index 0000000000000..2a36f70460b34 --- /dev/null +++ b/blockchains/evmos/validators/list.json @@ -0,0 +1,20 @@ +[ + { + "id": "evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "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": "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" + } +] diff --git a/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/info.json b/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/info.json new file mode 100644 index 0000000000000..c1af9779cbbff --- /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": "twitter", + "url": "https://twitter.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 0000000000000..1660741aaf752 Binary files /dev/null and b/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/logo.png differ diff --git a/blockchains/fantom/assets/0x1B6382DBDEa11d97f24495C9A90b7c88469134a4/info.json b/blockchains/fantom/assets/0x1B6382DBDEa11d97f24495C9A90b7c88469134a4/info.json new file mode 100644 index 0000000000000..1cb95586a6e67 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/fantom/assets/0x1B6382DBDEa11d97f24495C9A90b7c88469134a4/logo.png b/blockchains/fantom/assets/0x1B6382DBDEa11d97f24495C9A90b7c88469134a4/logo.png new file mode 100644 index 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/fantom/assets/0x1B6382DBDEa11d97f24495C9A90b7c88469134a4/logo.png differ diff --git a/blockchains/fantom/assets/0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6/info.json b/blockchains/fantom/assets/0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6/info.json new file mode 100644 index 0000000000000..2a50b820228f3 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7d64923490658 Binary files /dev/null and b/blockchains/fantom/assets/0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6/logo.png differ diff --git a/blockchains/fantom/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json b/blockchains/fantom/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json new file mode 100644 index 0000000000000..a6d589bbc1471 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..4272c382f1522 Binary files /dev/null and b/blockchains/fantom/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png differ diff --git a/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json new file mode 100644 index 0000000000000..595bd45f88a2a --- /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 0000000000000..f983849d90c4f Binary files /dev/null and b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png differ diff --git a/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/info.json b/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/info.json new file mode 100644 index 0000000000000..b3323b4c87b66 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..9db68a25f3b4b Binary files /dev/null and b/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/logo.png differ diff --git a/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/info.json b/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/info.json new file mode 100644 index 0000000000000..2fb97003b9f5d --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/logo.png b/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/logo.png new file mode 100644 index 0000000000000..46040ed8ec9d2 Binary files /dev/null and b/blockchains/fantom/assets/0x5C4FDfc5233f935f20D2aDbA572F770c2E377Ab0/logo.png differ diff --git a/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/info.json b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/info.json new file mode 100644 index 0000000000000..734cfda57ef00 --- /dev/null +++ b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/info.json @@ -0,0 +1,36 @@ +{ + "name": "Wootrade Network", + "type": "FANTOM", + "symbol": "WOO", + "decimals": 18, + "website": "https://woo.network", + "description": "Wootrade aims to provide deep liquidity and superior order execution at the lowest cost for traders, exchanges, institutions, and DeFi platforms. Its flagship, WOO X, is a professional trading platform featuring customizable modules, and zero-fees with deep liquidity across spot and margin. Wootrade was founded by Kronos Research, a quantitative trading firm generating $10-15B in daily volume, with the goal of democratizing access to deep liquidity and yield strategies through various products.", + "explorer": "https://ftmscan.com/token/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a", + "status": "active", + "id": "0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/wootrade" + }, + { + "name": "blog", + "url": "https://medium.com/@wootrade" + }, + { + "name": "facebook", + "url": "https://facebook.com/Wootrade" + }, + { + "name": "whitepaper", + "url": "https://woo.network/Litepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wootrade-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/logo.png b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/logo.png new file mode 100644 index 0000000000000..5cd7c39954306 Binary files /dev/null and b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/logo.png differ diff --git a/blockchains/fantom/assets/0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e/info.json b/blockchains/fantom/assets/0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e/info.json new file mode 100644 index 0000000000000..cad900f0362a0 --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/fantom/assets/0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e/logo.png b/blockchains/fantom/assets/0x74E23dF9110Aa9eA0b6ff2fAEE01e740CA1c642e/logo.png new file mode 100644 index 0000000000000..ecd893efed723 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 0000000000000..176d94b1d980d --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/fantom/assets/0x75bdeF24285013387A47775828bEC90b91Ca9a5F/logo.png b/blockchains/fantom/assets/0x75bdeF24285013387A47775828bEC90b91Ca9a5F/logo.png new file mode 100644 index 0000000000000..ce524bb6ff7a2 Binary files /dev/null and b/blockchains/fantom/assets/0x75bdeF24285013387A47775828bEC90b91Ca9a5F/logo.png differ diff --git a/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json b/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json new file mode 100644 index 0000000000000..1cd4aebadc99b --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/logo.png b/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/logo.png new file mode 100644 index 0000000000000..6c156aba62660 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 0000000000000..19c16917fff93 --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/fantom/assets/0x94CcF60f700146BeA8eF7832820800E2dFa92EdA/logo.png b/blockchains/fantom/assets/0x94CcF60f700146BeA8eF7832820800E2dFa92EdA/logo.png new file mode 100644 index 0000000000000..5335c3e5bb74a 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 0000000000000..1a4b4f4ec6a79 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..44b1ce3071856 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 0000000000000..6c424cdaa65e5 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..9d7b0435acaac 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 0000000000000..3b5041641290f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..9db68a25f3b4b 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 0000000000000..98cdabb74f594 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..fb9f7a63b2f43 Binary files /dev/null and b/blockchains/fantom/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png differ diff --git a/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/info.json b/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/info.json new file mode 100644 index 0000000000000..cbe6cc027c77e --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/logo.png b/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/logo.png new file mode 100644 index 0000000000000..bdded7aa1301a Binary files /dev/null and b/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/logo.png differ diff --git a/blockchains/fantom/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json b/blockchains/fantom/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json new file mode 100644 index 0000000000000..efe1b33182434 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..47ffbe08a8dcc 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 0000000000000..af10640c24680 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..577673c43c6a4 Binary files /dev/null and b/blockchains/fantom/assets/0xE55e19Fb4F2D85af758950957714292DAC1e25B2/logo.png differ diff --git a/blockchains/fantom/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json b/blockchains/fantom/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json new file mode 100644 index 0000000000000..32552ec9cd1aa --- /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": "twitter", + "url": "https://twitter.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 0000000000000..efff8d00af4a5 Binary files /dev/null and b/blockchains/fantom/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png differ diff --git a/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json new file mode 100644 index 0000000000000..a4b2d624c588f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png b/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png new file mode 100644 index 0000000000000..a3b20074ec34d 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 0000000000000..ae74aac4f8967 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6c09bb9a38215 Binary files /dev/null and b/blockchains/fantom/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/logo.png differ diff --git a/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 0000000000000..fdb965a3901a2 --- /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": "twitter", + "url": "https://twitter.com/abbcfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbc-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png b/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png new file mode 100644 index 0000000000000..9259df4c30a91 Binary files /dev/null and b/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png differ diff --git a/blockchains/fantom/info/info.json b/blockchains/fantom/info/info.json index 240861819cf13..27ecd498e267c 100644 --- a/blockchains/fantom/info/info.json +++ b/blockchains/fantom/info/info.json @@ -7,7 +7,11 @@ "symbol": "FTM", "type": "coin", "decimals": 18, + "rpc_url": "https://rpc.ftm.tools", "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "discord", diff --git a/blockchains/fantom/tokenlist.json b/blockchains/fantom/tokenlist.json new file mode 100644 index 0000000000000..bc2c70da3ca48 --- /dev/null +++ b/blockchains/fantom/tokenlist.json @@ -0,0 +1,192 @@ +{ + "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_t0x1E4F97b9f9F913c46F1632781732927B9019C68b", + "type": "FANTOM", + "address": "0x1E4F97b9f9F913c46F1632781732927B9019C68b", + "name": "Curve DAO", + "symbol": "CRV", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/fantom/assets/0x1E4F97b9f9F913c46F1632781732927B9019C68b/logo.png", + "pairs": [] + }, + { + "asset": "c10000250_t0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E", + "type": "FANTOM", + "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 0000000000000..07ddf4ce66ac8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..eadd40bdccfb5 Binary files /dev/null and b/blockchains/fetch/info/logo.png differ diff --git a/blockchains/fetch/validators/assets/fetchvaloper14gtl0dgam6cqvjkuh6kfcnszchwzk0ghumdmhw/logo.png b/blockchains/fetch/validators/assets/fetchvaloper14gtl0dgam6cqvjkuh6kfcnszchwzk0ghumdmhw/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper14gtl0dgam6cqvjkuh6kfcnszchwzk0ghumdmhw/logo.png differ diff --git a/blockchains/fetch/validators/assets/fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0/logo.png b/blockchains/fetch/validators/assets/fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0/logo.png differ diff --git a/blockchains/fetch/validators/assets/fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw/logo.png b/blockchains/fetch/validators/assets/fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw/logo.png differ diff --git a/blockchains/fetch/validators/list.json b/blockchains/fetch/validators/list.json new file mode 100644 index 0000000000000..dce8d7b6b077f --- /dev/null +++ b/blockchains/fetch/validators/list.json @@ -0,0 +1,20 @@ +[ + { + "id": "fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw", + "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": "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" + } +] diff --git a/blockchains/fusion/info/info.json b/blockchains/fusion/info/info.json new file mode 100644 index 0000000000000..2c0a4ffec84ed --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/fusion/info/logo.png b/blockchains/fusion/info/logo.png new file mode 100644 index 0000000000000..9c2bb8e257e36 Binary files /dev/null and b/blockchains/fusion/info/logo.png differ diff --git a/blockchains/gbnb/info/info.json b/blockchains/gbnb/info/info.json new file mode 100644 index 0000000000000..4d53481213b23 --- /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 0000000000000..3fe22aa3a1995 Binary files /dev/null and b/blockchains/gbnb/info/logo.png differ diff --git a/blockchains/goerlitestnet/info/info.json b/blockchains/goerlitestnet/info/info.json new file mode 100644 index 0000000000000..ab1563f1732c4 --- /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://rpc.goerli.mudit.blog", + "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 0000000000000..ad463789d50b7 Binary files /dev/null and b/blockchains/goerlitestnet/info/logo.png differ diff --git a/blockchains/greenfield/info/info.json b/blockchains/greenfield/info/info.json new file mode 100644 index 0000000000000..7d7d0e258161f --- /dev/null +++ b/blockchains/greenfield/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "BNB Greenfield", + "website": "https://greenfield.bnbchain.org/en", + "description": "The goal of the BNB Greenfield is to unleash the power of decentralized blockchain and storage technology on data ownership and data economy.", + "explorer": "https://greenfieldscan.com", + "symbol": "BNB", + "rpc_url": "https://greenfield-chain-us.bnbchain.org", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/greenfield/info/logo.png b/blockchains/greenfield/info/logo.png new file mode 100644 index 0000000000000..0fad6635d8d41 Binary files /dev/null and b/blockchains/greenfield/info/logo.png differ diff --git a/blockchains/harmony/info/info.json b/blockchains/harmony/info/info.json index 4dce937d169e0..3dab39279f00c 100644 --- a/blockchains/harmony/info/info.json +++ b/blockchains/harmony/info/info.json @@ -4,10 +4,15 @@ "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", diff --git a/blockchains/harmony/validators/assets/one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha/logo.png b/blockchains/harmony/validators/assets/one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha/logo.png differ diff --git a/blockchains/harmony/validators/list.json b/blockchains/harmony/validators/list.json index df91a5caf71cc..dd5629bfb079a 100644 --- a/blockchains/harmony/validators/list.json +++ b/blockchains/harmony/validators/list.json @@ -23,6 +23,12 @@ "description": "24h node support, managing slots and shards to get the maximum APR with a 100% uptime. Help descentralization, delegate with us", "website": "harmony.com" }, + { + "id": "one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn higher yields with AutoStake.com", + "website": "https://autostake.com" + }, { "id": "one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6", "name": "StakingTeam", diff --git a/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/info.json b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/info.json new file mode 100644 index 0000000000000..8d73c5afc655e --- /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": "twitter", + "url": "https://twitter.com/Mdextech" + }, + { + "name": "github", + "url": "https://github.com/mdexSwap" + }, + { + "name": "telegram", + "url": "https://t.me/MixDex" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/logo.png b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/logo.png new file mode 100644 index 0000000000000..484410a92769f Binary files /dev/null and b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/logo.png differ diff --git a/blockchains/heco/assets/0x765277EebeCA2e31912C9946eAe1021199B39C61/info.json b/blockchains/heco/assets/0x765277EebeCA2e31912C9946eAe1021199B39C61/info.json new file mode 100644 index 0000000000000..2bcf009b46f2f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6c09bb9a38215 Binary files /dev/null and b/blockchains/heco/assets/0x765277EebeCA2e31912C9946eAe1021199B39C61/logo.png differ diff --git a/blockchains/heco/info/info.json b/blockchains/heco/info/info.json index 5cc2f04e0c124..20da693b852b2 100644 --- a/blockchains/heco/info/info.json +++ b/blockchains/heco/info/info.json @@ -6,6 +6,7 @@ "symbol": "HT", "type": "coin", "decimals": 18, + "rpc_url": "https://http-mainnet.hecochain.com", "status": "active", "links": [ { diff --git a/blockchains/hedera/info/info.json b/blockchains/hedera/info/info.json new file mode 100644 index 0000000000000..b0200e8a208b8 --- /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": "twitter", + "url": "https://twitter.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/" + } + ] +} diff --git a/blockchains/hedera/info/logo.png b/blockchains/hedera/info/logo.png new file mode 100644 index 0000000000000..e16f79294ddf7 Binary files /dev/null and b/blockchains/hedera/info/logo.png differ diff --git a/blockchains/hoo/info/info.json b/blockchains/hoo/info/info.json new file mode 100644 index 0000000000000..abe69b08158e1 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/hoo/info/logo.png b/blockchains/hoo/info/logo.png new file mode 100644 index 0000000000000..3a5ff5eb7fedd Binary files /dev/null and b/blockchains/hoo/info/logo.png differ diff --git a/blockchains/info.json b/blockchains/info.json new file mode 100644 index 0000000000000..88662092fc533 --- /dev/null +++ b/blockchains/info.json @@ -0,0 +1,24 @@ +{ + "name": "Blockton", + "website": "https://blocktoncoin.com", + "short_description": "Blockton is a fast, high-throughput open-source Scalable, fast, and secure blockchain ecosystem.", + "description": "Blockton is a fast, high-throughput open-source Scalable, fast, and secure blockchain ecosystem.", + "explorer": "https://blocktonscan.com/", + "research": "https://docs.blocktonscan.com", + "type": "coin", + "symbol": "BTON", + "rpc_url": "https://rpc.blocktonscan.com/", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/blocktoncoin" + }, + { + "name": "whitepaper", + "url": "https://blocktoncoin.com/whitepaper.pdf" + } + ] +} + diff --git a/blockchains/internetcomputer/info/info.json b/blockchains/internetcomputer/info/info.json new file mode 100644 index 0000000000000..c191849b54bf4 --- /dev/null +++ b/blockchains/internetcomputer/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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/internetcomputer/info/logo.png b/blockchains/internetcomputer/info/logo.png new file mode 100644 index 0000000000000..07b0d6c66c371 Binary files /dev/null and b/blockchains/internetcomputer/info/logo.png differ diff --git a/blockchains/iost/info/info.json b/blockchains/iost/info/info.json index 7a09bd8d2ad7b..e8ee62111f4a3 100644 --- a/blockchains/iost/info/info.json +++ b/blockchains/iost/info/info.json @@ -2,12 +2,12 @@ "name": "IOST", "website": "http://iost.io", "description": "The IOS (Internet of Services) offers a solid infrastructure for online service providers. Features a high TPS, scalable and secure blockchain, with privacy protection.", - "explorer": "https://www.iostabc.com/", + "explorer": "https://explorer.iost.io", "research": "https://research.binance.com/en/projects/iost", "symbol": "IOST", "type": "coin", - "decimals": 8, - "status": "abandoned", + "decimals": 2, + "status": "active", "links": [ { "name": "github", @@ -15,7 +15,7 @@ }, { "name": "twitter", - "url": "https://twitter.com/iostoken" + "url": "https://twitter.com/IOST_Official" }, { "name": "reddit", diff --git a/blockchains/iotexevm/info/info.json b/blockchains/iotexevm/info/info.json new file mode 100644 index 0000000000000..4a681740d5222 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..fac1be9df58be Binary files /dev/null and b/blockchains/iotexevm/info/logo.png differ diff --git a/blockchains/iris/info/info.json b/blockchains/iris/info/info.json new file mode 100644 index 0000000000000..7d2b2d8b34798 --- /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-ia.cosmosia.notional.ventures/", + "denom": "uiris", + "lcd_url": "https://api-irisnet-ia.cosmosia.notional.ventures/", + "hrp": "iaa", + "fee_rate": "0.025", + "links": [ + { + "name": "telegram", + "url": "https://t.me/irisnetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/irisnet/" + }, + { + "name": "twitter", + "url": "https://twitter.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 0000000000000..b4b0d12cd25ca Binary files /dev/null and b/blockchains/iris/info/logo.png differ diff --git a/blockchains/iris/validators/assets/iva1d3z30ndxuqas8vr3mrc7028ykvfaukal0tnj0p/logo.png b/blockchains/iris/validators/assets/iva1d3z30ndxuqas8vr3mrc7028ykvfaukal0tnj0p/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/iris/validators/assets/iva1d3z30ndxuqas8vr3mrc7028ykvfaukal0tnj0p/logo.png differ diff --git a/blockchains/iris/validators/assets/iva1n3hnhva22tykxxekrdq6zup4qcznsr9qc00fp6/logo.png b/blockchains/iris/validators/assets/iva1n3hnhva22tykxxekrdq6zup4qcznsr9qc00fp6/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/iris/validators/assets/iva1n3hnhva22tykxxekrdq6zup4qcznsr9qc00fp6/logo.png differ diff --git a/blockchains/iris/validators/list.json b/blockchains/iris/validators/list.json new file mode 100644 index 0000000000000..1f07af0eedfc1 --- /dev/null +++ b/blockchains/iris/validators/list.json @@ -0,0 +1,14 @@ +[ + { + "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" + } +] \ No newline at end of file diff --git a/blockchains/juno/info/info.json b/blockchains/juno/info/info.json new file mode 100644 index 0000000000000..f77be438c10fc --- /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": "twitter", + "url": "https://twitter.com/JunoNetwork" + } + ] +} diff --git a/blockchains/juno/info/logo.png b/blockchains/juno/info/logo.png new file mode 100644 index 0000000000000..dd6c870c1dd22 Binary files /dev/null and b/blockchains/juno/info/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm/logo.png b/blockchains/juno/validators/assets/junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn/logo.png b/blockchains/juno/validators/assets/junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn/logo.png new file mode 100644 index 0000000000000..c3f41f6b4206b Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw/logo.png b/blockchains/juno/validators/assets/junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw/logo.png new file mode 100644 index 0000000000000..5f2434df2bfdd Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1afhtjur8js4589xymu346ca7a5y5293x7p64ca/logo.png b/blockchains/juno/validators/assets/junovaloper1afhtjur8js4589xymu346ca7a5y5293x7p64ca/logo.png new file mode 100644 index 0000000000000..9a688eab883cb Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1afhtjur8js4589xymu346ca7a5y5293x7p64ca/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1ka8v934kgrw6679fs9cuu0kesyl0ljjy2kdtrl/logo.png b/blockchains/juno/validators/assets/junovaloper1ka8v934kgrw6679fs9cuu0kesyl0ljjy2kdtrl/logo.png new file mode 100644 index 0000000000000..ba2f64c9b4f19 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1ka8v934kgrw6679fs9cuu0kesyl0ljjy2kdtrl/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55/logo.png b/blockchains/juno/validators/assets/junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9uxyejze/logo.png b/blockchains/juno/validators/assets/junovaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9uxyejze/logo.png new file mode 100644 index 0000000000000..bcdec563b9539 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9uxyejze/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1ssmt2aveqpc7e0ncgxt0tpj83ur623dvk7uvng/logo.png b/blockchains/juno/validators/assets/junovaloper1ssmt2aveqpc7e0ncgxt0tpj83ur623dvk7uvng/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1ssmt2aveqpc7e0ncgxt0tpj83ur623dvk7uvng/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa/logo.png b/blockchains/juno/validators/assets/junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa/logo.png new file mode 100644 index 0000000000000..70c64d1b880b9 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1xdywquvz5g6r5wv6tpkj6chad0fkk459gf9ny6/logo.png b/blockchains/juno/validators/assets/junovaloper1xdywquvz5g6r5wv6tpkj6chad0fkk459gf9ny6/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1xdywquvz5g6r5wv6tpkj6chad0fkk459gf9ny6/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2wsdcwk/logo.png b/blockchains/juno/validators/assets/junovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2wsdcwk/logo.png new file mode 100644 index 0000000000000..b39ad7ed7ff85 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2wsdcwk/logo.png differ diff --git a/blockchains/juno/validators/list.json b/blockchains/juno/validators/list.json new file mode 100644 index 0000000000000..82cf45456e9e2 --- /dev/null +++ b/blockchains/juno/validators/list.json @@ -0,0 +1,68 @@ +[ + { + "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": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "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" + } +] diff --git a/blockchains/kava/assets/busd/info.json b/blockchains/kava/assets/busd/info.json new file mode 100644 index 0000000000000..66d65002c370e --- /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": "twitter", + "url": "https://twitter.com/kava_platform" + }, + { + "name": "telegram", + "url": "https://t.me/kavalabs" + } + ] +} diff --git a/blockchains/kava/assets/c459_tbusd/logo.png b/blockchains/kava/assets/busd/logo.png similarity index 100% rename from blockchains/kava/assets/c459_tbusd/logo.png rename to blockchains/kava/assets/busd/logo.png diff --git a/blockchains/kava/assets/c459_tbusd/info.json b/blockchains/kava/assets/c459_tbusd/info.json deleted file mode 100644 index 0eb20179712eb..0000000000000 --- a/blockchains/kava/assets/c459_tbusd/info.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "Binance USD", - "symbol": "BUSD", - "type": "KAVA", - "decimals": 6, - "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": "c459_tbusd", - "tags": [ - "stablecoin" - ], - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/kava_platform" - }, - { - "name": "telegram", - "url": "https://t.me/kavalabs" - } - ] -} diff --git a/blockchains/kava/assets/usdt/info.json b/blockchains/kava/assets/usdt/info.json new file mode 100644 index 0000000000000..4d8d58e13c122 --- /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": "twitter", + "url": "https://twitter.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/kava/assets/usdt/logo.png b/blockchains/kava/assets/usdt/logo.png new file mode 100644 index 0000000000000..f8ba68a56c9a8 Binary files /dev/null and b/blockchains/kava/assets/usdt/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper14vk3997r4ea4m7eej7ugmr503ru768fxwynsmq/logo.png b/blockchains/kava/validators/assets/kavavaloper14vk3997r4ea4m7eej7ugmr503ru768fxwynsmq/logo.png new file mode 100644 index 0000000000000..2bd3a1e2d4571 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper14vk3997r4ea4m7eej7ugmr503ru768fxwynsmq/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 0000000000000..145cb3cb09913 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper196w5nuha6u2ucwr65cqwnqrzxuemsyhv2c0lq8/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 0000000000000..ab2a9d60ef52a Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1fwru9at8hsu7hmhu0zypdn3863xvdcg80nm5dv/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq/logo.png b/blockchains/kava/validators/assets/kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u/logo.png b/blockchains/kava/validators/assets/kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u/logo.png new file mode 100644 index 0000000000000..cbc90da983488 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 0000000000000..95674f5ffbf9a Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1j4tymd9r3au3vm508l4jugdg7l892l2lmh4jry/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9/logo.png b/blockchains/kava/validators/assets/kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1st7akgudd4d3x5t4zd3kn0fg948zn9yf4qpa0m/logo.png b/blockchains/kava/validators/assets/kavavaloper1st7akgudd4d3x5t4zd3kn0fg948zn9yf4qpa0m/logo.png new file mode 100644 index 0000000000000..489f49d89c26e 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 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png b/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png index 3c29ee005d51c..0888af01c5da5 100644 Binary files a/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png and b/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1y8elet4hh0qpl9jq5hlkkejgl2gx845ekmdq55/logo.png b/blockchains/kava/validators/assets/kavavaloper1y8elet4hh0qpl9jq5hlkkejgl2gx845ekmdq55/logo.png new file mode 100644 index 0000000000000..70ee36d1bc856 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1y8elet4hh0qpl9jq5hlkkejgl2gx845ekmdq55/logo.png differ diff --git a/blockchains/kava/validators/list.json b/blockchains/kava/validators/list.json index dfe7fea0c2d15..820adc1ceeee8 100644 --- a/blockchains/kava/validators/list.json +++ b/blockchains/kava/validators/list.json @@ -1,7 +1,43 @@ [ + { + "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": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, { "id": "kavavaloper1xfyyvg9v66yef6cea5ruw8kaqw5a84kjd86r75", - "name": "0% Best APR ❤️ NodesByGirls", + "name": "NodesByGirls", "description": "We are a professional team with many years of experience in the crypto industry. Stake with us to get the best APR!", "website": "https://nodesbygirls.com" }, @@ -115,9 +151,9 @@ }, { "id": "kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g", - "name": "Genesis Lab", - "description": "Genesis Lab is a validation nodes operator in PoS networks and blockchain-focused software development company", - "website": "https://genesislab.net" + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" }, { "id": "kavavaloper1ppj7c8tqt2e3rzqtmztsmd6ea6u3nz6qggcp5e", @@ -160,5 +196,29 @@ "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.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/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": "kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" } -] \ No newline at end of file +] diff --git a/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/info.json b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/info.json new file mode 100644 index 0000000000000..598d710a816a6 --- /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": "twitter", + "url": "https://twitter.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/logo.png b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/logo.png new file mode 100644 index 0000000000000..0a265affb2c8a Binary files /dev/null and b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/logo.png differ diff --git a/blockchains/kavaevm/info/info.json b/blockchains/kavaevm/info/info.json new file mode 100644 index 0000000000000..dd878b46a84db --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/kavaevm/info/logo.png b/blockchains/kavaevm/info/logo.png new file mode 100644 index 0000000000000..c3a0556a0ba30 Binary files /dev/null and b/blockchains/kavaevm/info/logo.png differ diff --git a/blockchains/kcc/assets/0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48/info.json b/blockchains/kcc/assets/0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48/info.json new file mode 100644 index 0000000000000..d173bc3976833 --- /dev/null +++ b/blockchains/kcc/assets/0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48/info.json @@ -0,0 +1,21 @@ +{ + "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": "twitter", + "url": "https://twitter.com/Tether_to" + }, + { + "name": "whitepaper", + "url": "https://tether.to/en/transparency/" + } + ] +} diff --git a/blockchains/kcc/assets/0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48/logo.png b/blockchains/kcc/assets/0x0039f574eE5cC39bdD162E9A88e3EB1f111bAF48/logo.png new file mode 100644 index 0000000000000..2090693b2f6db 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 0000000000000..c11b7b396bcac --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a550c3fa3ef67 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 0000000000000..e37b31431b859 --- /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": "twitter", + "url": "https://twitter.com/MojitoSwap" + }, + { + "name": "github", + "url": "https://github.com/MojitoFinance" + } + ] +} diff --git a/blockchains/kcc/assets/0x2cA48b4eeA5A731c2B54e7C3944DBDB87c0CFB6F/logo.png b/blockchains/kcc/assets/0x2cA48b4eeA5A731c2B54e7C3944DBDB87c0CFB6F/logo.png new file mode 100644 index 0000000000000..3a0c1fac360f9 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 0000000000000..74c2afc337f8b --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/kcc/assets/0x4446Fc4eb47f2f6586f9fAAb68B3498F86C07521/logo.png b/blockchains/kcc/assets/0x4446Fc4eb47f2f6586f9fAAb68B3498F86C07521/logo.png new file mode 100644 index 0000000000000..7b7397d46fa01 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 0000000000000..fc0450994dedf --- /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": "twitter", + "url": "https://twitter.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 0000000000000..dc789428802a5 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 0000000000000..b50288b2c9ca4 --- /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 0000000000000..e4b303c5ec71d 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 0000000000000..25a9f18e81356 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..bc01f46ad665b 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 0000000000000..fdd81eac0fa2d --- /dev/null +++ b/blockchains/kcc/assets/0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430/info.json @@ -0,0 +1,21 @@ +{ + "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" + } + ] +} diff --git a/blockchains/kcc/assets/0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430/logo.png b/blockchains/kcc/assets/0x980a5AfEf3D17aD98635F6C5aebCBAedEd3c3430/logo.png new file mode 100644 index 0000000000000..456d1e5d63965 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 0000000000000..07ce6a65f6a4e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..2e4e2b57b7959 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 0000000000000..be328b6262156 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..1e7cef36a8aaa 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 0000000000000..5807dc1625b5f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..9ca39721c5225 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 0000000000000..c8d0354e4cad1 --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/kcc/info/logo.png b/blockchains/kcc/info/logo.png new file mode 100644 index 0000000000000..7b7397d46fa01 Binary files /dev/null and b/blockchains/kcc/info/logo.png differ diff --git a/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/info.json b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/info.json new file mode 100644 index 0000000000000..ce344f192e4e7 --- /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://scope.klaytn.com/token/0x5c74070fdea071359b86082bd9f9b3deaafbe32b", + "research": "https://research.binance.com/en/projects/dai", + "type": "KLAYTN", + "symbol": "KDAI", + "decimals": 18, + "status": "active", + "id": "0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MakerDAO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MakerDAO/" + }, + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-collateral-dai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/logo.png b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/logo.png new file mode 100644 index 0000000000000..f62e11387ebef Binary files /dev/null and b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/logo.png differ diff --git a/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/info.json b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/info.json new file mode 100644 index 0000000000000..b2ec7f4ba6c8f --- /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://scope.klaytn.com/token/0x6270b58be569a7c0b8f47594f191631ae5b2c86c", + "type": "KLAYTN", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/logo.png b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/logo.png new file mode 100644 index 0000000000000..2191b105edec5 Binary files /dev/null and b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/logo.png differ diff --git a/blockchains/klaytn/info/info.json b/blockchains/klaytn/info/info.json new file mode 100644 index 0000000000000..7b32bdcab1889 --- /dev/null +++ b/blockchains/klaytn/info/info.json @@ -0,0 +1,21 @@ +{ + "name": "klaytn", + "website": "https://klaytn.foundation", + "description": "Klaytn is an open-source public blockchain for all who wish to build, work, or play in the metaverse.", + "explorer": "https://scope.klaytn.com", + "research": "", + "symbol": "KLAY", + "type": "coin", + "decimals": 18, + "rpc_url": "https://public-node-api.klaytnapi.com/v1/cypress", + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/klaytn_official" + } + ] +} diff --git a/blockchains/klaytn/info/logo.png b/blockchains/klaytn/info/logo.png new file mode 100644 index 0000000000000..091f89c31c5f4 Binary files /dev/null and b/blockchains/klaytn/info/logo.png differ diff --git a/blockchains/komodo/info/info.json b/blockchains/komodo/info/info.json new file mode 100644 index 0000000000000..63f7522fd5b9c --- /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": "twitter", + "url": "https://twitter.com/KomodoPlatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/komodo/info/logo.png b/blockchains/komodo/info/logo.png new file mode 100644 index 0000000000000..2584dcde87a0d Binary files /dev/null and b/blockchains/komodo/info/logo.png differ diff --git a/blockchains/kujira/info/info.json b/blockchains/kujira/info/info.json new file mode 100644 index 0000000000000..1ee2750c56143 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..779329cacaee4 Binary files /dev/null and b/blockchains/kujira/info/logo.png differ diff --git a/blockchains/kujira/validators/assets/kujiravaloper1esj2mkumg8q9l7wunkqzu85jvz7zrrcykeeka7/logo.png b/blockchains/kujira/validators/assets/kujiravaloper1esj2mkumg8q9l7wunkqzu85jvz7zrrcykeeka7/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/kujira/validators/assets/kujiravaloper1esj2mkumg8q9l7wunkqzu85jvz7zrrcykeeka7/logo.png differ diff --git a/blockchains/kujira/validators/assets/kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0/logo.png b/blockchains/kujira/validators/assets/kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/kujira/validators/assets/kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0/logo.png differ diff --git a/blockchains/kujira/validators/list.json b/blockchains/kujira/validators/list.json new file mode 100644 index 0000000000000..46d56b1fb343d --- /dev/null +++ b/blockchains/kujira/validators/list.json @@ -0,0 +1,14 @@ +[ + { + "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" + } +] \ No newline at end of file diff --git a/blockchains/kusama/info/info.json b/blockchains/kusama/info/info.json index e3f084473e307..f23f52705d15c 100644 --- a/blockchains/kusama/info/info.json +++ b/blockchains/kusama/info/info.json @@ -20,5 +20,8 @@ "name": "reddit", "url": "https://reddit.com/r/Kusama" } + ], + "tags": [ + "staking-native" ] } \ No newline at end of file diff --git a/blockchains/kusama/validators/assets/CmjHFdR59QAZMuyjDF5Sn4mwTgGbKMH2cErUFuf6UT51UwS/logo.png b/blockchains/kusama/validators/assets/CmjHFdR59QAZMuyjDF5Sn4mwTgGbKMH2cErUFuf6UT51UwS/logo.png new file mode 100644 index 0000000000000..8a1a37b8cc02a Binary files /dev/null and b/blockchains/kusama/validators/assets/CmjHFdR59QAZMuyjDF5Sn4mwTgGbKMH2cErUFuf6UT51UwS/logo.png differ diff --git a/blockchains/kusama/validators/assets/DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi/logo.png b/blockchains/kusama/validators/assets/DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/kusama/validators/assets/DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi/logo.png differ diff --git a/blockchains/kusama/validators/assets/DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv/logo.png b/blockchains/kusama/validators/assets/DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv/logo.png new file mode 100644 index 0000000000000..33273a1e37b6d Binary files /dev/null and b/blockchains/kusama/validators/assets/DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv/logo.png differ diff --git a/blockchains/kusama/validators/assets/DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ/logo.png b/blockchains/kusama/validators/assets/DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/kusama/validators/assets/DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ/logo.png differ diff --git a/blockchains/kusama/validators/assets/EDEVriQd4TpEHHyWnLbQHDYjY9avxxkWhNmBou4SHKixgt1/logo.png b/blockchains/kusama/validators/assets/EDEVriQd4TpEHHyWnLbQHDYjY9avxxkWhNmBou4SHKixgt1/logo.png new file mode 100644 index 0000000000000..33273a1e37b6d Binary files /dev/null and b/blockchains/kusama/validators/assets/EDEVriQd4TpEHHyWnLbQHDYjY9avxxkWhNmBou4SHKixgt1/logo.png differ diff --git a/blockchains/kusama/validators/assets/ESRBbWstgpPV1pVBsqjMo717rA8HLrtQvEUVwAGeFZyKcia/logo.png b/blockchains/kusama/validators/assets/ESRBbWstgpPV1pVBsqjMo717rA8HLrtQvEUVwAGeFZyKcia/logo.png new file mode 100644 index 0000000000000..63b99724ea40c Binary files /dev/null and b/blockchains/kusama/validators/assets/ESRBbWstgpPV1pVBsqjMo717rA8HLrtQvEUVwAGeFZyKcia/logo.png differ diff --git a/blockchains/kusama/validators/assets/F2VckTExmProzJnwNaN3YVqDoBPS1LyNVmyG8HUAygtDV3T/logo.png b/blockchains/kusama/validators/assets/F2VckTExmProzJnwNaN3YVqDoBPS1LyNVmyG8HUAygtDV3T/logo.png new file mode 100644 index 0000000000000..33273a1e37b6d Binary files /dev/null and b/blockchains/kusama/validators/assets/F2VckTExmProzJnwNaN3YVqDoBPS1LyNVmyG8HUAygtDV3T/logo.png differ diff --git a/blockchains/kusama/validators/list.json b/blockchains/kusama/validators/list.json new file mode 100644 index 0000000000000..438c042b734b5 --- /dev/null +++ b/blockchains/kusama/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "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" + } +] \ No newline at end of file diff --git a/blockchains/linea/info/info.json b/blockchains/linea/info/info.json new file mode 100644 index 0000000000000..f8a21075cfb2a --- /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": "TBA", + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/consensys" + }, + { + "name": "twitter", + "url": "https://twitter.com/LineaBuild" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linea/" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/info/logo.png b/blockchains/linea/info/logo.png new file mode 100644 index 0000000000000..a94dca4ae17b8 Binary files /dev/null and b/blockchains/linea/info/logo.png differ diff --git a/blockchains/logo.png b/blockchains/logo.png new file mode 100644 index 0000000000000..9592cd25373f8 Binary files /dev/null and b/blockchains/logo.png differ diff --git a/blockchains/mantle/info/info.json b/blockchains/mantle/info/info.json new file mode 100644 index 0000000000000..e3f36c6d417b1 --- /dev/null +++ b/blockchains/mantle/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mantle Chain", + "website": "https://www.mantle.xyz", + "description": "Mantle Network is a technology stack for scaling Ethereum, and we strive to be EVM-compatible while doing so.", + "explorer": "https://explorer.mantle.xyz/blocks", + "symbol": "MNT", + "rpc_url": "https://rpc.mantle.xyz", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/mantle/info/logo.png b/blockchains/mantle/info/logo.png new file mode 100644 index 0000000000000..a6393b66b7a5e Binary files /dev/null and b/blockchains/mantle/info/logo.png differ diff --git a/blockchains/mars/info/info.json b/blockchains/mars/info/info.json new file mode 100644 index 0000000000000..06a3a228ebca0 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..959975333d5c3 Binary files /dev/null and b/blockchains/mars/info/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2/logo.png b/blockchains/mars/validators/assets/marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2/logo.png new file mode 100644 index 0000000000000..b9144cc5256cc Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq/logo.png b/blockchains/mars/validators/assets/marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh/logo.png b/blockchains/mars/validators/assets/marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw/logo.png b/blockchains/mars/validators/assets/marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw/logo.png new file mode 100644 index 0000000000000..e3d5db9dd90c8 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e/logo.png b/blockchains/mars/validators/assets/marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e/logo.png new file mode 100644 index 0000000000000..7d46ea7269f9e Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e/logo.png differ diff --git a/blockchains/mars/validators/list.json b/blockchains/mars/validators/list.json new file mode 100644 index 0000000000000..98bddaa673752 --- /dev/null +++ b/blockchains/mars/validators/list.json @@ -0,0 +1,32 @@ +[ + { + "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/" + } +] \ No newline at end of file diff --git a/blockchains/meter/assets/0x1cf09D1B5Da9d9d24365D87B932A7c4bD018A419/info.json b/blockchains/meter/assets/0x1cf09D1B5Da9d9d24365D87B932A7c4bD018A419/info.json new file mode 100644 index 0000000000000..b8278fdc4494f --- /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 0000000000000..da535f6df531d 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 0000000000000..5d8034de28dee --- /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 0000000000000..2bf6afd5c9251 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 0000000000000..391eac879ce72 --- /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 0000000000000..76d02e370b6d6 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 0000000000000..3a9356c32401f --- /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 0000000000000..59d44aeeefd94 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 0000000000000..2178e066f9c88 --- /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 0000000000000..e7e61990ab820 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 0000000000000..adea9270eb0b4 --- /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 0000000000000..54a7cb282e554 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 0000000000000..eb1f00d2268e6 --- /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 0000000000000..bf957d38c766d 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 0000000000000..943e3e580aba6 --- /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 0000000000000..eafbaac194aa7 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 0000000000000..cb44a6c36bd10 --- /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 0000000000000..27688c0af1e64 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 0000000000000..db1b7ca481d67 --- /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 0000000000000..45376ce23b7cf 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 0000000000000..b6e75f5d2ef65 --- /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 0000000000000..702d64a2e040a 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 0000000000000..d4034a871c6c8 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/meter/info/logo.png b/blockchains/meter/info/logo.png new file mode 100644 index 0000000000000..ac3658a60c238 Binary files /dev/null and b/blockchains/meter/info/logo.png differ diff --git a/blockchains/meter/tokenlist.json b/blockchains/meter/tokenlist.json new file mode 100644 index 0000000000000..02d4665d38185 --- /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 0000000000000..04b86e2f4405a --- /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": "twitter", + "url": "https://twitter.com/metisdao" + } + ] +} diff --git a/blockchains/metis/info/logo.png b/blockchains/metis/info/logo.png new file mode 100644 index 0000000000000..7229b9ba505e9 Binary files /dev/null and b/blockchains/metis/info/logo.png differ diff --git a/blockchains/moonbasealpha/info/info.json b/blockchains/moonbasealpha/info/info.json new file mode 100644 index 0000000000000..8f189ed59698e --- /dev/null +++ b/blockchains/moonbasealpha/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "Moonbase Alpha Testnet", + "website": "https://moon.based.money", + "description": "The first Moonbeam TestNet, named Moonbase Alpha, aims to provide developers with a place to start experimenting and building on Moonbeam in a shared environment.", + "explorer": "https://moonbase-blockscout.testnet.moonbeam.network/", + "symbol": "tDEV", + "rpc_url": "https://rpc.api.moonbase.moonbeam.network", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/moonbasealpha/info/logo.png b/blockchains/moonbasealpha/info/logo.png new file mode 100644 index 0000000000000..a66722e6a4b01 Binary files /dev/null and b/blockchains/moonbasealpha/info/logo.png differ diff --git a/blockchains/moonbeam/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json b/blockchains/moonbeam/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/info.json new file mode 100644 index 0000000000000..df6afbf862b9f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/moonbeam/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/logo.png b/blockchains/moonbeam/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/logo.png new file mode 100644 index 0000000000000..6c156aba62660 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 0000000000000..cfc51ffaabd5f --- /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": "twitter", + "url": "https://twitter.com/binance_dex" + }, + { + "name": "blog", + "url": "https://binance.org/en/blog/" + }, + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binance-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/logo.png b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/logo.png new file mode 100644 index 0000000000000..76d02e370b6d6 Binary files /dev/null and b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/logo.png differ diff --git a/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/info.json b/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/info.json new file mode 100644 index 0000000000000..11889a180ed52 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/logo.png b/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/logo.png new file mode 100644 index 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/logo.png differ diff --git a/blockchains/moonbeam/info/info.json b/blockchains/moonbeam/info/info.json new file mode 100644 index 0000000000000..3f0697be8c5f5 --- /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://moonbeam.public.blastapi.io", + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/moonbeamnetwork" + } + ] +} diff --git a/blockchains/moonbeam/info/logo.png b/blockchains/moonbeam/info/logo.png new file mode 100644 index 0000000000000..356442914c3ce Binary files /dev/null and b/blockchains/moonbeam/info/logo.png differ diff --git a/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json b/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json new file mode 100644 index 0000000000000..29a7d072a2855 --- /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": "twitter", + "url": "https://twitter.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png b/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png new file mode 100644 index 0000000000000..f4c1f1e7ecba0 Binary files /dev/null and b/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png differ diff --git a/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/info.json b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/info.json new file mode 100644 index 0000000000000..e0fc82fd009c6 --- /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 0000000000000..c4def0472868c Binary files /dev/null and b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/logo.png differ diff --git a/blockchains/moonriver/info/info.json b/blockchains/moonriver/info/info.json new file mode 100644 index 0000000000000..ea8bdb2701f85 --- /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://moonriver.public.blastapi.io", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/moonrivernw" + } + ] +} diff --git a/blockchains/moonriver/info/logo.png b/blockchains/moonriver/info/logo.png new file mode 100644 index 0000000000000..45376ce23b7cf Binary files /dev/null and b/blockchains/moonriver/info/logo.png differ diff --git a/blockchains/nativecanto/info/info.json b/blockchains/nativecanto/info/info.json new file mode 100644 index 0000000000000..6fc6743c7d3e0 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..bc1cf96684790 Binary files /dev/null and b/blockchains/nativecanto/info/logo.png differ diff --git a/blockchains/nativecanto/validators/assets/cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u/logo.png b/blockchains/nativecanto/validators/assets/cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/nativecanto/validators/assets/cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u/logo.png differ diff --git a/blockchains/nativecanto/validators/assets/cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz/logo.png b/blockchains/nativecanto/validators/assets/cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/nativecanto/validators/assets/cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz/logo.png differ diff --git a/blockchains/nativecanto/validators/list.json b/blockchains/nativecanto/validators/list.json new file mode 100644 index 0000000000000..43f038c1a44b6 --- /dev/null +++ b/blockchains/nativecanto/validators/list.json @@ -0,0 +1,14 @@ +[ + { + "id": "cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + } +] \ No newline at end of file diff --git a/blockchains/nativeevmos/info/info.json b/blockchains/nativeevmos/info/info.json new file mode 100644 index 0000000000000..5678059500be7 --- /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": "twitter", + "url": "https://twitter.com/EvmosOrg" + }, + { + "name": "discord", + "url": "https://discord.com/invite/evmos" + }, + { + "name": "telegram", + "url": "https://t.me/EvmosOrg" + } + ] +} diff --git a/blockchains/nativeevmos/info/logo.png b/blockchains/nativeevmos/info/logo.png new file mode 100644 index 0000000000000..e78f6fc0c5bba Binary files /dev/null and b/blockchains/nativeevmos/info/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 0000000000000..34a0818a45a71 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper14zatq4jagqtm9ejgvglnv0t364d88u80futp65/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 0000000000000..0f6305d87f6e5 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 0000000000000..266947772880c 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 0000000000000..4ef5a482dda84 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 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70/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 0000000000000..96ca9e91ee186 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 0000000000000..55c515cc3b14b 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 0000000000000..71ecba0f965b2 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 0000000000000..846266d88236b 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 0000000000000..cbc90da983488 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 0000000000000..caa00eba6deb2 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 0000000000000..76c3606ec8bd6 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 0000000000000..abcfc3298bba4 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 0000000000000..5425c1a4cf79d --- /dev/null +++ b/blockchains/nativeevmos/validators/list.json @@ -0,0 +1,80 @@ +[ + { + "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": "Your Trusted Crypto Rewards", + "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" + } +] diff --git a/blockchains/nativeinjective/info/info.json b/blockchains/nativeinjective/info/info.json new file mode 100644 index 0000000000000..0e145d0604a64 --- /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": "twitter", + "url": "https://twitter.com/Injective_" + } + ], + "tags": [ + "staking-native" + ] +} \ No newline at end of file diff --git a/blockchains/nativeinjective/info/logo.png b/blockchains/nativeinjective/info/logo.png new file mode 100644 index 0000000000000..6a4ed4e02e8ea Binary files /dev/null and b/blockchains/nativeinjective/info/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper125fkz3mq6qxxpkmphdl3ep92t0d3y9695mhclt/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper125fkz3mq6qxxpkmphdl3ep92t0d3y9695mhclt/logo.png new file mode 100644 index 0000000000000..60b018002cdc2 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper125fkz3mq6qxxpkmphdl3ep92t0d3y9695mhclt/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper134dct56cq5v7uerxcy2cn4m06mqf4dxrlgpp24/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper134dct56cq5v7uerxcy2cn4m06mqf4dxrlgpp24/logo.png new file mode 100644 index 0000000000000..1288b5884311a Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper134dct56cq5v7uerxcy2cn4m06mqf4dxrlgpp24/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1esud09zs5754g5nlkmrgxsfdj276xm64cgmd3w/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1esud09zs5754g5nlkmrgxsfdj276xm64cgmd3w/logo.png new file mode 100644 index 0000000000000..ab27231ce5952 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1esud09zs5754g5nlkmrgxsfdj276xm64cgmd3w/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1ffsdugrhfzdyxltjve8v68n6aazyc6p97uhfn0/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1ffsdugrhfzdyxltjve8v68n6aazyc6p97uhfn0/logo.png new file mode 100644 index 0000000000000..ee70539329ea5 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1ffsdugrhfzdyxltjve8v68n6aazyc6p97uhfn0/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1g4d6dmvnpg7w7yugy6kplndp7jpfmf3krtschp/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1g4d6dmvnpg7w7yugy6kplndp7jpfmf3krtschp/logo.png new file mode 100644 index 0000000000000..e9622798cec65 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1g4d6dmvnpg7w7yugy6kplndp7jpfmf3krtschp/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1h4t5dqenq86znza06thc64pzyxtme7zltyeg8k/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1h4t5dqenq86znza06thc64pzyxtme7zltyeg8k/logo.png new file mode 100644 index 0000000000000..a542ccaa22d50 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1h4t5dqenq86znza06thc64pzyxtme7zltyeg8k/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1hsxaln75wjs033t3spd8a0gawl4jvxawn6v849/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1hsxaln75wjs033t3spd8a0gawl4jvxawn6v849/logo.png new file mode 100644 index 0000000000000..b8e77f1c07be9 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1hsxaln75wjs033t3spd8a0gawl4jvxawn6v849/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1kpfxtqt5cmlew46dem32fqlk5g6k4wyueh4szu/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1kpfxtqt5cmlew46dem32fqlk5g6k4wyueh4szu/logo.png new file mode 100644 index 0000000000000..fd2f07798958f Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1kpfxtqt5cmlew46dem32fqlk5g6k4wyueh4szu/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1lsuqpgm8kgwpq96ewyew26xnfwyn3lh3ncrkrk/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1lsuqpgm8kgwpq96ewyew26xnfwyn3lh3ncrkrk/logo.png new file mode 100644 index 0000000000000..5d160d301f69f Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1lsuqpgm8kgwpq96ewyew26xnfwyn3lh3ncrkrk/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1tly62qxj2t8wz2zw4d7p37jcysvgasqa0zjtlk/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1tly62qxj2t8wz2zw4d7p37jcysvgasqa0zjtlk/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1tly62qxj2t8wz2zw4d7p37jcysvgasqa0zjtlk/logo.png differ diff --git a/blockchains/nativeinjective/validators/list.json b/blockchains/nativeinjective/validators/list.json new file mode 100644 index 0000000000000..a47698ff116eb --- /dev/null +++ b/blockchains/nativeinjective/validators/list.json @@ -0,0 +1,80 @@ +[ + { + "id": "injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts", + "name": "AutoStake.com", + "description": "Earn extra Rewards on AutoStake.com 🛡️ 100% Refund on soft slashing backed by a SAFU fund", + "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 🔗 Twitter, 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": "injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + } +] diff --git a/blockchains/near/info/info.json b/blockchains/near/info/info.json index c11741e51773b..c493ea528e046 100644 --- a/blockchains/near/info/info.json +++ b/blockchains/near/info/info.json @@ -8,6 +8,9 @@ "type": "coin", "decimals": 24, "status": "active", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", diff --git a/blockchains/near/validators/assets/astro-stakers.poolv1.near/logo.png b/blockchains/near/validators/assets/astro-stakers.poolv1.near/logo.png new file mode 100644 index 0000000000000..571f2711a0835 Binary files /dev/null and b/blockchains/near/validators/assets/astro-stakers.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/autostake.poolv1.near/logo.png b/blockchains/near/validators/assets/autostake.poolv1.near/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/near/validators/assets/autostake.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/epic.poolv1.near/logo.png b/blockchains/near/validators/assets/epic.poolv1.near/logo.png new file mode 100644 index 0000000000000..6d612781cc3df Binary files /dev/null and b/blockchains/near/validators/assets/epic.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/everstake.poolv1.near/logo.png b/blockchains/near/validators/assets/everstake.poolv1.near/logo.png new file mode 100644 index 0000000000000..02edac54f305a Binary files /dev/null and b/blockchains/near/validators/assets/everstake.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/p2p-org.poolv1.near/logo.png b/blockchains/near/validators/assets/p2p-org.poolv1.near/logo.png new file mode 100644 index 0000000000000..a0c10f645691b Binary files /dev/null and b/blockchains/near/validators/assets/p2p-org.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/staked.poolv1.near/logo.png b/blockchains/near/validators/assets/staked.poolv1.near/logo.png new file mode 100644 index 0000000000000..74be06fa8dfe2 Binary files /dev/null and b/blockchains/near/validators/assets/staked.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/stakeflow.poolv1.near/logo.png b/blockchains/near/validators/assets/stakeflow.poolv1.near/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/near/validators/assets/stakeflow.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/stakin.poolv1.near/logo.png b/blockchains/near/validators/assets/stakin.poolv1.near/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/near/validators/assets/stakin.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/trust-nodes.poolv1.near/logo.png b/blockchains/near/validators/assets/trust-nodes.poolv1.near/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/near/validators/assets/trust-nodes.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/zavodil.poolv1.near/logo.png b/blockchains/near/validators/assets/zavodil.poolv1.near/logo.png new file mode 100644 index 0000000000000..4cc089433a7ea Binary files /dev/null and b/blockchains/near/validators/assets/zavodil.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/list.json b/blockchains/near/validators/list.json new file mode 100644 index 0000000000000..2bfda0a597950 --- /dev/null +++ b/blockchains/near/validators/list.json @@ -0,0 +1,62 @@ +[ + { + "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.com", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund 🛡️", + "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": "trust-nodes.poolv1.near", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.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" + } +] diff --git a/blockchains/neblio/info/info.json b/blockchains/neblio/info/info.json new file mode 100644 index 0000000000000..2143f6b4e07fb --- /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": "twitter", + "url": "https://twitter.com/NeblioTeam" + } + ] +} \ No newline at end of file diff --git a/blockchains/neblio/info/logo.png b/blockchains/neblio/info/logo.png new file mode 100644 index 0000000000000..13f01d403a2aa Binary files /dev/null and b/blockchains/neblio/info/logo.png differ diff --git a/blockchains/neon/info/info.json b/blockchains/neon/info/info.json new file mode 100644 index 0000000000000..88c9cb524d6c8 --- /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": "twitter", + "url": "https://twitter.com/Neon_EVM" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/neon/info/logo.png b/blockchains/neon/info/logo.png new file mode 100644 index 0000000000000..8368ca2e5eccd Binary files /dev/null and b/blockchains/neon/info/logo.png differ diff --git a/blockchains/neutron/info/info.json b/blockchains/neutron/info/info.json new file mode 100644 index 0000000000000..154030e2b0fa1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..b09d390df17f7 Binary files /dev/null and b/blockchains/neutron/info/logo.png differ diff --git a/blockchains/neutrontestnet/info/info.json b/blockchains/neutrontestnet/info/info.json new file mode 100644 index 0000000000000..7b4671a6b6d68 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a430ec1500f76 Binary files /dev/null and b/blockchains/neutrontestnet/info/logo.png differ diff --git a/blockchains/noble/info/info.json b/blockchains/noble/info/info.json new file mode 100644 index 0000000000000..0f088e99ae30e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..93e4f7280f131 Binary files /dev/null and b/blockchains/noble/info/logo.png differ diff --git a/blockchains/oasis/assets/0x05832a0905E516f29344ADBa1c2052a788B10129/info.json b/blockchains/oasis/assets/0x05832a0905E516f29344ADBa1c2052a788B10129/info.json new file mode 100644 index 0000000000000..8498d6fd2910a --- /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 0000000000000..9e63d73503a5d 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 0000000000000..8de8c767ae3e1 --- /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 0000000000000..f448cdfef620e 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 0000000000000..0706e891c50f3 --- /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 0000000000000..c9ca83078881a 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 0000000000000..95f7a0c60e765 --- /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 0000000000000..d52df831af1f9 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 0000000000000..ee52212045e03 --- /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 0000000000000..2d99a939536c4 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 0000000000000..0a3f0d1c1b907 --- /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 0000000000000..5cfbd9abb2f7c 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 0000000000000..6d20f230948ae --- /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 0000000000000..498219815a122 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 0000000000000..7e977ae1097a3 --- /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 0000000000000..4e3f74d233943 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 0000000000000..8eaa3eb524924 --- /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 0000000000000..2a885151a2b72 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 0000000000000..9e0e3daaf7722 --- /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 0000000000000..8ec55937f4dba 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 0000000000000..c52404412a5cb --- /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 0000000000000..ed00e43fcfe9b 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 0000000000000..854d6d1295f48 --- /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 0000000000000..3555ddd31d42f 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 0000000000000..f10431331b0e5 --- /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 0000000000000..e3110cce3bde2 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 0000000000000..c0998f14c6cc2 --- /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 0000000000000..7a2e75fd77f1b 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 0000000000000..ad792c3e85275 --- /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 0000000000000..d603db0efae1f 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 0000000000000..0eee9954ebda3 --- /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 0000000000000..24a702d4390f2 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 0000000000000..377c0f141b766 --- /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 0000000000000..46b9968e18279 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 0000000000000..04858ee3113ae --- /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 0000000000000..58b66f7e91e64 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 index 7007140eef069..c7100c48f04db 100644 --- a/blockchains/oasis/info/info.json +++ b/blockchains/oasis/info/info.json @@ -6,6 +6,8 @@ "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": [ @@ -30,4 +32,4 @@ "url": "https://oasisprotocol.org/papers" } ] -} \ No newline at end of file +} diff --git a/blockchains/okc/assets/0x382bB369d343125BfB2117af9c149795C6C65C50/info.json b/blockchains/okc/assets/0x382bB369d343125BfB2117af9c149795C6C65C50/info.json new file mode 100644 index 0000000000000..ed71e236fd393 --- /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 0000000000000..59d44aeeefd94 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 0000000000000..885993e7e4cc4 --- /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 0000000000000..418152bd5795f 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 0000000000000..ddab02d92d0f4 --- /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 0000000000000..b6f150d8a7d46 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 0000000000000..da3ef4dd7a3ad --- /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 0000000000000..525a1dae37469 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 0000000000000..40bae2a64e759 --- /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": "twitter", + "url": "https://twitter.com/OKCnetwork" + }, + { + "name": "discord", + "url": "https://discord.com/invite/2rynEUqJxP" + } + ] +} diff --git a/blockchains/okc/info/logo.png b/blockchains/okc/info/logo.png new file mode 100644 index 0000000000000..525a1dae37469 Binary files /dev/null and b/blockchains/okc/info/logo.png differ diff --git a/blockchains/okc/tokenlist.json b/blockchains/okc/tokenlist.json new file mode 100644 index 0000000000000..bc071657201d6 --- /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 0000000000000..07c759e4bc0c1 --- /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 0000000000000..853e12d99144a Binary files /dev/null and b/blockchains/okx/info/logo.png differ diff --git a/blockchains/okxchain/info/info.json b/blockchains/okxchain/info/info.json new file mode 100644 index 0000000000000..7ed615b4216ba --- /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": "twitter", + "url": "https://twitter.com/OKCNetwork" + }, + { + "name": "telegram", + "url": "https://t.me/OKCNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/okt/" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/okxchain/info/logo.png b/blockchains/okxchain/info/logo.png new file mode 100644 index 0000000000000..636b2111259b4 Binary files /dev/null and b/blockchains/okxchain/info/logo.png differ diff --git a/blockchains/opbnb/info/info.json b/blockchains/opbnb/info/info.json new file mode 100644 index 0000000000000..ea19f96fb598d --- /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": "OBNB", + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BNBChainDevs" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bnbchain" + } + ] +} \ No newline at end of file diff --git a/blockchains/opbnb/info/logo.png b/blockchains/opbnb/info/logo.png new file mode 100644 index 0000000000000..840d4766aff82 Binary files /dev/null and b/blockchains/opbnb/info/logo.png differ diff --git a/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json new file mode 100644 index 0000000000000..8205112f5e145 --- /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": "twitter", + "url": "https://twitter.com/CyberConnectHQ" + }, + { + "name": "github", + "url": "https://github.com/cyberconnecthq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cyberconnect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png new file mode 100644 index 0000000000000..b26b7b808fb16 Binary files /dev/null and b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png differ diff --git a/blockchains/optimism/assets/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6/logo.png b/blockchains/optimism/assets/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6/logo.png index 9341188c7d69d..ab55f5e21fae2 100644 Binary files a/blockchains/optimism/assets/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6/logo.png and b/blockchains/optimism/assets/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6/logo.png differ diff --git a/blockchains/optimism/assets/0x4200000000000000000000000000000000000042/info.json b/blockchains/optimism/assets/0x4200000000000000000000000000000000000042/info.json new file mode 100644 index 0000000000000..a4e1cde25abf8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..0632ece281a91 Binary files /dev/null and b/blockchains/optimism/assets/0x4200000000000000000000000000000000000042/logo.png differ diff --git a/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/info.json b/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/info.json new file mode 100644 index 0000000000000..ca8001de331a4 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..49d0f41e0dbee Binary files /dev/null and b/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/logo.png differ diff --git a/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/info.json b/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/info.json new file mode 100644 index 0000000000000..7edfa12b88d80 --- /dev/null +++ b/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/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/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 0000000000000..b6f150d8a7d46 Binary files /dev/null and b/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/logo.png differ diff --git a/blockchains/optimism/assets/0x94b008aA00579c1307B0EF2c499aD98a8ce58e58/info.json b/blockchains/optimism/assets/0x94b008aA00579c1307B0EF2c499aD98a8ce58e58/info.json new file mode 100644 index 0000000000000..b83bee073d245 --- /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": "twitter", + "url": "https://twitter.com/Tether_to" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/optimism/assets/0x94b008aA00579c1307B0EF2c499aD98a8ce58e58/logo.png b/blockchains/optimism/assets/0x94b008aA00579c1307B0EF2c499aD98a8ce58e58/logo.png new file mode 100644 index 0000000000000..90465aa8dd64d Binary files /dev/null and b/blockchains/optimism/assets/0x94b008aA00579c1307B0EF2c499aD98a8ce58e58/logo.png differ diff --git a/blockchains/optimism/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json b/blockchains/optimism/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json new file mode 100644 index 0000000000000..5771daa465335 --- /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": "active", + "id": "0xCA7661Ba64A7667E3006c421C181502d545D1911", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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/optimism/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/logo.png b/blockchains/optimism/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/logo.png new file mode 100644 index 0000000000000..7c76f51d11485 Binary files /dev/null and b/blockchains/optimism/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/logo.png differ diff --git a/blockchains/optimism/assets/0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921/info.json b/blockchains/optimism/assets/0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921/info.json new file mode 100644 index 0000000000000..fc193eeb7e823 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..56f9d83abe605 Binary files /dev/null and b/blockchains/optimism/assets/0xFE8B128bA8C78aabC59d4c64cEE7fF28e9379921/logo.png differ diff --git a/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/info.json b/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/info.json new file mode 100644 index 0000000000000..ea1dac6b82b11 --- /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": "twitter", + "url": "https://twitter.com/WeAreTellor" + }, + { + "name": "telegram", + "url": "https://t.me/tellor" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tellor/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tellor/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/logo.png b/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/logo.png new file mode 100644 index 0000000000000..f1295da4329a3 Binary files /dev/null and b/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/logo.png differ diff --git a/blockchains/optimism/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/optimism/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json new file mode 100644 index 0000000000000..140c38f8b690f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/optimism/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png b/blockchains/optimism/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png new file mode 100644 index 0000000000000..a3b20074ec34d Binary files /dev/null and b/blockchains/optimism/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png differ diff --git a/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/info.json b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/info.json new file mode 100644 index 0000000000000..bc934f9a2d05d --- /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": "twitter", + "url": "https://twitter.com/worldcoin" + }, + { + "name": "telegram", + "url": "https://t.me/worldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/worldcoin-org/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/logo.png b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/logo.png new file mode 100644 index 0000000000000..cb7f6e3935a81 Binary files /dev/null and b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/logo.png differ diff --git a/blockchains/optimism/info/info.json b/blockchains/optimism/info/info.json index 352c2ea201bb5..64c91b39ca005 100644 --- a/blockchains/optimism/info/info.json +++ b/blockchains/optimism/info/info.json @@ -6,7 +6,12 @@ "research": "https://github.com/ethereum-optimism/optimism", "symbol": "OETH", "type": "coin", + "coin_type": 614, "decimals": 18, "status": "active", - "links": [] -} \ No newline at end of file + "rpc_url": "https://mainnet.optimism.io", + "links": [], + "tags": [ + "dapp" + ] +} diff --git a/blockchains/optimism/tokenlist-extended.json b/blockchains/optimism/tokenlist-extended.json index 8af3fd11650ee..f4b9bf095d1e1 100644 --- a/blockchains/optimism/tokenlist-extended.json +++ b/blockchains/optimism/tokenlist-extended.json @@ -1,26 +1,8 @@ { "name": "Trust Wallet: Optimism Ethereum", "logoURI": "https://trustwallet.com/assets/images/favicon.png", - "timestamp": "2022-01-30T13:55:46.031276", + "timestamp": "2022-08-27T11:20:37.042174", "tokens": [ - { - "asset": "c10000070_t0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6", - "type": "OPTIMISM", - "address": "0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6", - "name": "ChainLink", - "symbol": "LINK", - "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/optimism/assets/0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6/logo.png" - }, - { - "asset": "c10000070_t0x4200000000000000000000000000000000000006", - "type": "OPTIMISM", - "address": "0x4200000000000000000000000000000000000006", - "name": "Wrapped Ether", - "symbol": "WETH", - "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/optimism/assets/0x4200000000000000000000000000000000000006/logo.png" - }, { "asset": "c10000070_t0x5029C236320b8f15eF0a657054B84d90bfBEDED3", "type": "OPTIMISM", @@ -28,7 +10,7 @@ "name": "BitANT", "symbol": "BitANT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/optimism/assets/0x5029C236320b8f15eF0a657054B84d90bfBEDED3/logo.png" + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0x5029C236320b8f15eF0a657054B84d90bfBEDED3/logo.png" }, { "asset": "c10000070_t0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", @@ -37,16 +19,7 @@ "name": "Lyra Finance", "symbol": "LYRA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/optimism/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png" - }, - { - "asset": "c10000070_t0x61BAADcF22d2565B0F471b291C475db5555e0b76", - "type": "OPTIMISM", - "address": "0x61BAADcF22d2565B0F471b291C475db5555e0b76", - "name": "Aelin Token", - "symbol": "AELIN", - "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/optimism/assets/0x61BAADcF22d2565B0F471b291C475db5555e0b76/logo.png" + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png" }, { "asset": "c10000070_t0x9Bcef72be871e61ED4fBbc7630889beE758eb81D", @@ -55,25 +28,7 @@ "name": "Rocket Pool ETH", "symbol": "rETH", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/optimism/assets/0x9Bcef72be871e61ED4fBbc7630889beE758eb81D/logo.png" - }, - { - "asset": "c10000070_t0x9e1028F5F1D5eDE59748FFceE5532509976840E0", - "type": "OPTIMISM", - "address": "0x9e1028F5F1D5eDE59748FFceE5532509976840E0", - "name": "Perpetual", - "symbol": "PERP", - "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/optimism/assets/0x9e1028F5F1D5eDE59748FFceE5532509976840E0/logo.png" - }, - { - "asset": "c10000070_t0xF98dCd95217E15E05d8638da4c91125E59590B07", - "type": "OPTIMISM", - "address": "0xF98dCd95217E15E05d8638da4c91125E59590B07", - "name": "Kromatika", - "symbol": "KROM", - "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/optimism/assets/0xF98dCd95217E15E05d8638da4c91125E59590B07/logo.png" + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/optimism/assets/0x9Bcef72be871e61ED4fBbc7630889beE758eb81D/logo.png" }, { "asset": "c10000070_t0xffD27b572246f35c992EfB28DD8cB730b93Ed301", @@ -82,11 +37,20 @@ "name": "Rubicon", "symbol": "Rubicon", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/optimism/assets/0xffD27b572246f35c992EfB28DD8cB730b93Ed301/logo.png" + "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": 10, + "major": 11, "minor": 0, "patch": 0 } diff --git a/blockchains/optimism/tokenlist.json b/blockchains/optimism/tokenlist.json index 1e0212f2f4f6b..decf3204fa9ea 100644 --- a/blockchains/optimism/tokenlist.json +++ b/blockchains/optimism/tokenlist.json @@ -3,10 +3,70 @@ "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 } -} \ No newline at end of file +} diff --git a/blockchains/optimismgoerli/info/info.json b/blockchains/optimismgoerli/info/info.json new file mode 100644 index 0000000000000..08fefa115e415 --- /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://goerli.optimism.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 0000000000000..ad463789d50b7 Binary files /dev/null and b/blockchains/optimismgoerli/info/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 0000000000000..95674f5ffbf9a Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper122yaxffys6rmv03nwwkmn3rvr5skzxl9lry2a5/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt/logo.png b/blockchains/osmosis/validators/assets/osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1cm83xqns9sqhv9a8vd6fggt6mvuu8mmzszknae/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1cm83xqns9sqhv9a8vd6fggt6mvuu8mmzszknae/logo.png new file mode 100644 index 0000000000000..d0388df6a68a4 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 0000000000000..434f53ccac24a Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1cwurrzatev9lfkn3ak6hh59t6yc0zy00rzp8yd/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 0000000000000..2bd3a1e2d4571 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1e9ucjn5fjmetky5wezzcsccp7hqcwzrrdulz7n/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme/logo.png new file mode 100644 index 0000000000000..194e9693e1011 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1x2e2pnenh0mmc99cnp7sukngnt8lc4saljavr3/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1x2e2pnenh0mmc99cnp7sukngnt8lc4saljavr3/logo.png new file mode 100644 index 0000000000000..70ee36d1bc856 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1x2e2pnenh0mmc99cnp7sukngnt8lc4saljavr3/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 0000000000000..abcfc3298bba4 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww24nrlnx/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 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1z5xyynz9ewuf044uaweswldut34z34z3cwpt7y/logo.png differ diff --git a/blockchains/osmosis/validators/list.json b/blockchains/osmosis/validators/list.json index d497d6c9639b8..9b3a7d31ebbc8 100644 --- a/blockchains/osmosis/validators/list.json +++ b/blockchains/osmosis/validators/list.json @@ -1,4 +1,28 @@ [ + { + "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", @@ -53,6 +77,12 @@ "description": "Transparent & professional staking validator with automated monitoring tools.", "website": "https://smartstake.io" }, + { + "id": "osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm", + "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": "osmovaloper1xwazl8ftks4gn00y5x3c47auquc62ssuh8af89", "name": "jabbey", @@ -82,5 +112,35 @@ "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.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/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": "danku_zone w/ DAIC", + "description": "The official validator node from danku_r (YouTube, Twitter, Medium) run by DAIC (https://t.me/validator_danku_DAIC)", + "website": "https://daic.capital/danku_zone" + }, + { + "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" } ] diff --git a/blockchains/persistence/info/info.json b/blockchains/persistence/info/info.json new file mode 100644 index 0000000000000..16cce87bd170b --- /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": "twitter", + "url": "https://twitter.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 0000000000000..eff1aeb5fce94 Binary files /dev/null and b/blockchains/persistence/info/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty/logo.png b/blockchains/persistence/validators/assets/persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1y9h20gplhj55agqe3ntgch666yjx4qy0yr3mhu/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1y9h20gplhj55agqe3ntgch666yjx4qy0yr3mhu/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1y9h20gplhj55agqe3ntgch666yjx4qy0yr3mhu/logo.png differ diff --git a/blockchains/persistence/validators/list.json b/blockchains/persistence/validators/list.json new file mode 100644 index 0000000000000..341e60598ff5a --- /dev/null +++ b/blockchains/persistence/validators/list.json @@ -0,0 +1,20 @@ +[ + { + "id": "persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty", + "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": "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" + } +] \ No newline at end of file diff --git a/blockchains/pivx/info/info.json b/blockchains/pivx/info/info.json new file mode 100644 index 0000000000000..6271362e81a37 --- /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": "twitter", + "url": "https://twitter.com/_pivx" + } + ] +} \ No newline at end of file diff --git a/blockchains/pivx/info/logo.png b/blockchains/pivx/info/logo.png new file mode 100644 index 0000000000000..03f851d6cb284 Binary files /dev/null and b/blockchains/pivx/info/logo.png differ diff --git a/blockchains/platon/info/info.json b/blockchains/platon/info/info.json new file mode 100644 index 0000000000000..3d134b59de76e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d2170bbd85648 Binary files /dev/null and b/blockchains/platon/info/logo.png differ diff --git a/blockchains/polkadot/info/info.json b/blockchains/polkadot/info/info.json index 5c261f58c08ad..f982b35e96f2a 100644 --- a/blockchains/polkadot/info/info.json +++ b/blockchains/polkadot/info/info.json @@ -8,6 +8,9 @@ "type": "coin", "decimals": 10, "status": "active", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", diff --git a/blockchains/polkadot/validators/assets/13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61/logo.png b/blockchains/polkadot/validators/assets/13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/polkadot/validators/assets/13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61/logo.png differ diff --git a/blockchains/polkadot/validators/assets/14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb/logo.png b/blockchains/polkadot/validators/assets/14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/polkadot/validators/assets/14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb/logo.png differ diff --git a/blockchains/polkadot/validators/assets/15ML93PH72j5fFfqLrXRy7uDh7pUBCTUcSVYbaDV18LaTfeW/logo.png b/blockchains/polkadot/validators/assets/15ML93PH72j5fFfqLrXRy7uDh7pUBCTUcSVYbaDV18LaTfeW/logo.png new file mode 100644 index 0000000000000..2bd3a1e2d4571 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 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/polkadot/validators/assets/15R1Th3ULXAq81QPGeEDfE1ywbw19AjZiARxH7czm83wS2w2/logo.png differ diff --git a/blockchains/polkadot/validators/list.json b/blockchains/polkadot/validators/list.json index 9170381303292..0170d67790f98 100644 --- a/blockchains/polkadot/validators/list.json +++ b/blockchains/polkadot/validators/list.json @@ -136,5 +136,29 @@ "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" } ] \ No newline at end of file diff --git a/blockchains/polygon/assets/0x08C15FA26E519A78a666D19CE5C646D55047e0a3/info.json b/blockchains/polygon/assets/0x08C15FA26E519A78a666D19CE5C646D55047e0a3/info.json new file mode 100644 index 0000000000000..a7be0a5d05446 --- /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 0000000000000..36fcfbc499e68 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 0000000000000..f55c4ce5a44ff --- /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": "twitter", + "url": "https://twitter.com/golemproject" + }, + { + "name": "github", + "url": "https://github.com/golemfactory/golem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/golem-network-tokens/" + } + ] +} diff --git a/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/logo.png b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/logo.png new file mode 100644 index 0000000000000..644070628b3d6 Binary files /dev/null and b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/logo.png differ diff --git a/blockchains/polygon/assets/0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58/info.json b/blockchains/polygon/assets/0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58/info.json new file mode 100644 index 0000000000000..3446cfd6e4f40 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..22d28ab4739aa 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 index 799cf2e2515a4..180e0f764dceb 100644 --- a/blockchains/polygon/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json +++ b/blockchains/polygon/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json @@ -1,5 +1,5 @@ { - "name": "Impossible Finance IDIA", + "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", diff --git a/blockchains/polygon/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json b/blockchains/polygon/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json index 12eb5f062b8cb..c7a3dc227a728 100644 --- a/blockchains/polygon/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json +++ b/blockchains/polygon/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json @@ -1,12 +1,12 @@ { "name": "EverRise", "type": "POLYGON", - "symbol": "RISE", + "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": "active", + "status": "abandoned", "id": "0x0cD022ddE27169b20895e0e2B2B8A33B25e63579", "links": [ { diff --git a/blockchains/polygon/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/logo.png b/blockchains/polygon/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/logo.png deleted file mode 100644 index 05493969dfc99..0000000000000 Binary files a/blockchains/polygon/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/logo.png and /dev/null differ diff --git a/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/info.json b/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/info.json new file mode 100644 index 0000000000000..5d30f3e6fa826 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..1660741aaf752 Binary files /dev/null and b/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/logo.png differ diff --git a/blockchains/polygon/assets/0x11CD37bb86F65419713f30673A480EA33c826872/info.json b/blockchains/polygon/assets/0x11CD37bb86F65419713f30673A480EA33c826872/info.json new file mode 100644 index 0000000000000..df52dfb8b3815 --- /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 0000000000000..2d99a939536c4 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 0000000000000..2cca5088f2760 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/logo.png b/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/logo.png new file mode 100644 index 0000000000000..ad16c843c62cc Binary files /dev/null and b/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/logo.png differ diff --git a/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/info.json b/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/info.json new file mode 100644 index 0000000000000..4d5119d23e088 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/logo.png b/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/logo.png new file mode 100644 index 0000000000000..f464fd0a91393 Binary files /dev/null and b/blockchains/polygon/assets/0x155AB9Cd3655Aa6174E1e743a6DA1E208762b03d/logo.png differ diff --git a/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/info.json b/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/info.json new file mode 100644 index 0000000000000..fbd47787b2e85 --- /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": "twitter", + "url": "https://twitter.com/naboxwallet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nabox/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/logo.png b/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/logo.png new file mode 100644 index 0000000000000..ee3475dce8027 Binary files /dev/null and b/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/logo.png differ diff --git a/blockchains/polygon/assets/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603/info.json b/blockchains/polygon/assets/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603/info.json new file mode 100644 index 0000000000000..4218dfd813c2e --- /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 0000000000000..6a4f498ca1b25 Binary files /dev/null and b/blockchains/polygon/assets/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603/logo.png differ diff --git a/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/info.json b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/info.json new file mode 100644 index 0000000000000..c54e571a1a0b9 --- /dev/null +++ b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/info.json @@ -0,0 +1,28 @@ +{ + "name": "(PoS) Wrapped BTC", + "type": "POLYGON", + "symbol": "WBTC", + "decimals": 8, + "website": "https://wbtc.network/", + "description": "Wrapped Bitcoin (WBTC) is the first ERC20 token backed 1:1 with Bitcoin.", + "explorer": "https://polygonscan.com/token/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6", + "status": "active", + "id": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6", + "links": [ + { + "name": "whitepaper", + "url": "https://wbtc.network/assets/wrapped-tokens-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/logo.png b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/logo.png new file mode 100644 index 0000000000000..702d64a2e040a Binary files /dev/null and b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/logo.png differ diff --git a/blockchains/polygon/assets/0x1f194578e7510A350fb517a9ce63C40Fa1899427/info.json b/blockchains/polygon/assets/0x1f194578e7510A350fb517a9ce63C40Fa1899427/info.json new file mode 100644 index 0000000000000..464577fe763ca --- /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": "twitter", + "url": "https://twitter.com/ichifoundation" + }, + { + "name": "telegram", + "url": "https://t.me/ichifarm" + }, + { + "name": "medium", + "url": "https://medium.com/ichifarm" + } + ] +} diff --git a/blockchains/polygon/assets/0x1f194578e7510A350fb517a9ce63C40Fa1899427/logo.png b/blockchains/polygon/assets/0x1f194578e7510A350fb517a9ce63C40Fa1899427/logo.png new file mode 100644 index 0000000000000..bfc956906ea66 Binary files /dev/null and b/blockchains/polygon/assets/0x1f194578e7510A350fb517a9ce63C40Fa1899427/logo.png differ diff --git a/blockchains/polygon/assets/0x235737dBb56e8517391473f7c964DB31fA6ef280/info.json b/blockchains/polygon/assets/0x235737dBb56e8517391473f7c964DB31fA6ef280/info.json new file mode 100644 index 0000000000000..ecae340765feb --- /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": "twitter", + "url": "https://twitter.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 0000000000000..c1de608975fc6 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 0000000000000..57f6305e10d36 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..aa7fbd0db6ff3 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 0000000000000..c0d3a8c115e90 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..4272c382f1522 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 0000000000000..20c927b426a0f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..8317ac643a40d 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 index 7b74faeb1e238..392763cae7f41 100644 --- a/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json +++ b/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json @@ -1,10 +1,10 @@ { - "name": "USD Coin (PoS)", + "name": "Bridged USD Coin (PoS)", "website": "https://centre.io/usdc", "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", "explorer": "https://polygonscan.com/token/0x2791bca1f2de4661ed88a30c99a7a9449aa84174", "type": "POLYGON", - "symbol": "USDC", + "symbol": "USDC.e", "decimals": 6, "status": "active", "id": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", diff --git a/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/info.json b/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/info.json new file mode 100644 index 0000000000000..c578c4e946ebe --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f21ebd57a7fa2 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 0000000000000..0f1c4eada2b59 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7837957416a73 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 0000000000000..4a770a55459cf --- /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": "twitter", + "url": "https://twitter.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 0000000000000..731134e2a42d7 Binary files /dev/null and b/blockchains/polygon/assets/0x2B9E7ccDF0F4e5B24757c1E1a80e311E34Cb10c7/logo.png differ diff --git a/blockchains/polygon/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json b/blockchains/polygon/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json new file mode 100644 index 0000000000000..1210f13e09d44 --- /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 0000000000000..f983849d90c4f Binary files /dev/null and b/blockchains/polygon/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png differ diff --git a/blockchains/polygon/assets/0x3553f861dEc0257baDA9F8Ed268bf0D74e45E89C/info.json b/blockchains/polygon/assets/0x3553f861dEc0257baDA9F8Ed268bf0D74e45E89C/info.json new file mode 100644 index 0000000000000..86854380dc419 --- /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 0000000000000..d52df831af1f9 Binary files /dev/null and b/blockchains/polygon/assets/0x3553f861dEc0257baDA9F8Ed268bf0D74e45E89C/logo.png differ diff --git a/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json new file mode 100644 index 0000000000000..7a26200401847 --- /dev/null +++ b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json @@ -0,0 +1,33 @@ +{ + "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/" + } + ] +} diff --git a/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/logo.png b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/logo.png new file mode 100644 index 0000000000000..2460919c3efbe Binary files /dev/null and b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/logo.png differ diff --git a/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/info.json b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/info.json new file mode 100644 index 0000000000000..db95827834091 --- /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": "twitter", + "url": "https://twitter.com/Swisscheese_fn" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/swisscheese/" + }, + { + "name": "telegram", + "url": "https://t.me/swisscheesegroup" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/logo.png b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/logo.png new file mode 100644 index 0000000000000..2cb920697bf85 Binary files /dev/null and b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/logo.png differ diff --git a/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json b/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json new file mode 100644 index 0000000000000..aaab7a61b8f28 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d61a97f70aac4 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 0000000000000..5b8f7d56ca1c2 --- /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 0000000000000..ed00e43fcfe9b Binary files /dev/null and b/blockchains/polygon/assets/0x4318CB63A2b8edf2De971E2F17F77097e499459D/logo.png differ diff --git a/blockchains/polygon/assets/0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46/info.json b/blockchains/polygon/assets/0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46/info.json new file mode 100644 index 0000000000000..fb819ef941082 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..116c2416ce7b6 Binary files /dev/null and b/blockchains/polygon/assets/0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46/logo.png differ diff --git a/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/info.json b/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/info.json new file mode 100644 index 0000000000000..a96aef3385c41 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/logo.png b/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/logo.png new file mode 100644 index 0000000000000..de7f9e2facbd5 Binary files /dev/null and b/blockchains/polygon/assets/0x486FFAf06A681bf22B5209e9fFCE722662A60E8C/logo.png differ diff --git a/blockchains/polygon/assets/0x50B728D8D964fd00C2d0AAD81718b71311feF68a/info.json b/blockchains/polygon/assets/0x50B728D8D964fd00C2d0AAD81718b71311feF68a/info.json new file mode 100644 index 0000000000000..a21bbcafc3d3a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..2a850de0afe21 Binary files /dev/null and b/blockchains/polygon/assets/0x50B728D8D964fd00C2d0AAD81718b71311feF68a/logo.png differ diff --git a/blockchains/polygon/assets/0x553d3D295e0f695B9228246232eDF400ed3560B5/info.json b/blockchains/polygon/assets/0x553d3D295e0f695B9228246232eDF400ed3560B5/info.json new file mode 100644 index 0000000000000..c2e324f0b1ec5 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7177a7a7e1903 Binary files /dev/null and b/blockchains/polygon/assets/0x553d3D295e0f695B9228246232eDF400ed3560B5/logo.png differ diff --git a/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/info.json b/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/info.json new file mode 100644 index 0000000000000..400aa609d0ae4 --- /dev/null +++ b/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/info.json @@ -0,0 +1,54 @@ +{ + "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": "twitter", + "url": "https://twitter.com/AmbireWallet" + }, + { + "name": "blog", + "url": "https://ambire.medium.com" + }, + { + "name": "telegram", + "url": "https://t.me/AmbireOfficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/nMBGJsb" + }, + { + "name": "facebook", + "url": "https://facebook.com/AmbireAdEx" + }, + { + "name": "whitepaper", + "url": "https://ambire.notion.site/ambire/Ambire-Wallet-Whitepaper-d502e54caf584fe7a67f9b0a018cd10f" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ambire-wallet" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/ambire-wallet" + } + ] +} diff --git a/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/logo.png b/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/logo.png new file mode 100644 index 0000000000000..2c33c7b401760 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 0000000000000..032ccce11dd13 --- /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 0000000000000..c9ca83078881a Binary files /dev/null and b/blockchains/polygon/assets/0x576Cf361711cd940CD9C397BB98C4C896cBd38De/logo.png differ diff --git a/blockchains/polygon/assets/0x5D49c278340655B56609FdF8976eb0612aF3a0C3/info.json b/blockchains/polygon/assets/0x5D49c278340655B56609FdF8976eb0612aF3a0C3/info.json new file mode 100644 index 0000000000000..61ed1920a31a1 --- /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 0000000000000..d603db0efae1f 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 0000000000000..d34586df2f631 --- /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 0000000000000..89db97dd2ba01 Binary files /dev/null and b/blockchains/polygon/assets/0x5E0294Af1732498C77F8dB015a2d52a76298542B/logo.png differ diff --git a/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/info.json b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/info.json new file mode 100644 index 0000000000000..f745431012b42 --- /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": "twitter", + "url": "https://twitter.com/graphprotocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/thegraph" + }, + { + "name": "telegram", + "url": "https://t.me/graphprotocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-graph/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/logo.png b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/logo.png new file mode 100644 index 0000000000000..9cbb487ce1294 Binary files /dev/null and b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/logo.png differ diff --git a/blockchains/polygon/assets/0x6109cB051c5C64093830121ed76272aB04bBDD7C/info.json b/blockchains/polygon/assets/0x6109cB051c5C64093830121ed76272aB04bBDD7C/info.json new file mode 100644 index 0000000000000..695366f34a733 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..5725990a5e6f0 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 0000000000000..082b12df8e607 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d1bf2417b496e 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 0000000000000..e23e9c0e27db8 --- /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": "twitter", + "url": "https://twitter.com/orbs_network" + }, + { + "name": "github", + "url": "https://github.com/orbs-network" + }, + { + "name": "telegram", + "url": "https://t.me/orbs_network" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/logo.png b/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/logo.png new file mode 100644 index 0000000000000..ba89f2dd8dd05 Binary files /dev/null and b/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/logo.png differ diff --git a/blockchains/polygon/assets/0x65C9e3289e5949134759119DBc9F862E8d6F2fBE/info.json b/blockchains/polygon/assets/0x65C9e3289e5949134759119DBc9F862E8d6F2fBE/info.json new file mode 100644 index 0000000000000..20d1990ecd667 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6f8fa384b4d52 Binary files /dev/null and b/blockchains/polygon/assets/0x65C9e3289e5949134759119DBc9F862E8d6F2fBE/logo.png differ diff --git a/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/info.json b/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/info.json new file mode 100644 index 0000000000000..cc5a32f0f9083 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/logo.png b/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/logo.png new file mode 100644 index 0000000000000..6c156aba62660 Binary files /dev/null and b/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/logo.png differ diff --git a/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/info.json b/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/info.json new file mode 100644 index 0000000000000..712a9587bc2fc --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/logo.png b/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/logo.png new file mode 100644 index 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/logo.png differ diff --git a/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/info.json b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/info.json new file mode 100644 index 0000000000000..8e01a46287e23 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/logo.png b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/logo.png new file mode 100644 index 0000000000000..b4844cb34fce0 Binary files /dev/null and b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/logo.png differ diff --git a/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/info.json b/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/info.json new file mode 100644 index 0000000000000..995db8d7c44f1 --- /dev/null +++ b/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/info.json @@ -0,0 +1,14 @@ +{ + "name": "AVAX (Portal)", + "type": "POLYGON", + "symbol": "AVAX", + "decimals": 18, + "description": "Cross Chain Portal Bridged Token", + "website": "https://www.avax.network/", + "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 0000000000000..5cfbd9abb2f7c Binary files /dev/null and b/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/logo.png differ diff --git a/blockchains/polygon/assets/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1/info.json b/blockchains/polygon/assets/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1/info.json new file mode 100644 index 0000000000000..f40132e33bb08 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..0ddcda72aedd7 Binary files /dev/null and b/blockchains/polygon/assets/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1/logo.png differ diff --git a/blockchains/polygon/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json b/blockchains/polygon/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json new file mode 100644 index 0000000000000..d92c74c22e7d8 --- /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": "twitter", + "url": "https://twitter.com/Pleasure_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pleasure-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/pleasure-coin" + } + ] +} diff --git a/blockchains/polygon/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/logo.png b/blockchains/polygon/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/logo.png new file mode 100644 index 0000000000000..2592a2e3e7c1c Binary files /dev/null and b/blockchains/polygon/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/logo.png differ diff --git a/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json b/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json new file mode 100644 index 0000000000000..1e0fb57b6eb30 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/logo.png b/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/logo.png new file mode 100644 index 0000000000000..f21a9869c8c27 Binary files /dev/null and b/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/logo.png differ diff --git a/blockchains/polygon/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json b/blockchains/polygon/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json new file mode 100644 index 0000000000000..aa8d5e748b7d3 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..44b1ce3071856 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 0000000000000..d4016df3fc965 --- /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 0000000000000..46b9968e18279 Binary files /dev/null and b/blockchains/polygon/assets/0x9417669fBF23357D2774e9D421307bd5eA1006d2/logo.png differ diff --git a/blockchains/polygon/assets/0x9A06Db14D639796B25A6ceC6A1bf614fd98815EC/info.json b/blockchains/polygon/assets/0x9A06Db14D639796B25A6ceC6A1bf614fd98815EC/info.json new file mode 100644 index 0000000000000..a32407426cbd7 --- /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": "twitter", + "url": "https://twitter.com/ZkPanther" + }, + { + "name": "whitepaper", + "url": "https://pantherprotocol.io/resources/panther-protocol-v-1-0-1.pdf" + } + ], + "tags": [ + "privacy", + "defi" + ] +} diff --git a/blockchains/polygon/assets/0x9A06Db14D639796B25A6ceC6A1bf614fd98815EC/logo.png b/blockchains/polygon/assets/0x9A06Db14D639796B25A6ceC6A1bf614fd98815EC/logo.png new file mode 100644 index 0000000000000..a1a26fbc863b7 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 0000000000000..75588293e20ce --- /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": "twitter", + "url": "https://twitter.com/binance_dex" + }, + { + "name": "blog", + "url": "https://binance.org/en/blog/" + }, + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binance-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png new file mode 100644 index 0000000000000..76d02e370b6d6 Binary files /dev/null and b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png differ diff --git a/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json b/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json new file mode 100644 index 0000000000000..6d7953dda1d18 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..9d7b0435acaac 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 0000000000000..242d971175c46 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6fc691716d6bd Binary files /dev/null and b/blockchains/polygon/assets/0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3/logo.png differ diff --git a/blockchains/polygon/assets/0x9cd6746665D9557e1B9a775819625711d0693439/info.json b/blockchains/polygon/assets/0x9cd6746665D9557e1B9a775819625711d0693439/info.json new file mode 100644 index 0000000000000..4b4db2ea997b5 --- /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 0000000000000..2a885151a2b72 Binary files /dev/null and b/blockchains/polygon/assets/0x9cd6746665D9557e1B9a775819625711d0693439/logo.png differ diff --git a/blockchains/polygon/assets/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945/info.json b/blockchains/polygon/assets/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945/info.json new file mode 100644 index 0000000000000..74f8ac08b6c77 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..edb82f056e99c Binary files /dev/null and b/blockchains/polygon/assets/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945/logo.png differ diff --git a/blockchains/polygon/assets/0xA8D394fE7380b8cE6145d5f85E6aC22d4E91ACDe/info.json b/blockchains/polygon/assets/0xA8D394fE7380b8cE6145d5f85E6aC22d4E91ACDe/info.json new file mode 100644 index 0000000000000..ec3e152c338a7 --- /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 0000000000000..58b66f7e91e64 Binary files /dev/null and b/blockchains/polygon/assets/0xA8D394fE7380b8cE6145d5f85E6aC22d4E91ACDe/logo.png differ diff --git a/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json b/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json new file mode 100644 index 0000000000000..d99c1589b5f31 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/logo.png b/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/logo.png new file mode 100644 index 0000000000000..cf97abec3c9fc Binary files /dev/null and b/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/logo.png differ diff --git a/blockchains/polygon/assets/0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762/info.json b/blockchains/polygon/assets/0xB25e20De2F2eBb4CfFD4D16a55C7B395e8a94762/info.json new file mode 100644 index 0000000000000..509c934937522 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..1bd37a35d3fd4 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 0000000000000..00702f3043174 --- /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": "twitter", + "url": "https://twitter.com/BombPolygon" + }, + { + "name": "telegram", + "url": "https://t.me/Bombcrypto2_polygon" + }, + { + "name": "facebook", + "url": "https://facebook.com/BombPolygon" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} diff --git a/blockchains/polygon/assets/0xB2C63830D4478cB331142FAc075A39671a5541dC/logo.png b/blockchains/polygon/assets/0xB2C63830D4478cB331142FAc075A39671a5541dC/logo.png new file mode 100644 index 0000000000000..601812c6c01aa Binary files /dev/null and b/blockchains/polygon/assets/0xB2C63830D4478cB331142FAc075A39671a5541dC/logo.png differ diff --git a/blockchains/polygon/assets/0xC1543024DC71247888a7e139c644F44E75E96d38/info.json b/blockchains/polygon/assets/0xC1543024DC71247888a7e139c644F44E75E96d38/info.json new file mode 100644 index 0000000000000..fad39486258d4 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7508aa6603f48 Binary files /dev/null and b/blockchains/polygon/assets/0xC1543024DC71247888a7e139c644F44E75E96d38/logo.png differ diff --git a/blockchains/polygon/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json b/blockchains/polygon/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json new file mode 100644 index 0000000000000..3b1d1e82f68a0 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..fb9f7a63b2f43 Binary files /dev/null and b/blockchains/polygon/assets/0xC17c30e98541188614dF99239cABD40280810cA3/logo.png differ diff --git a/blockchains/polygon/assets/0xD4814770065F634003A8d8D70B4743E0C3f334ad/info.json b/blockchains/polygon/assets/0xD4814770065F634003A8d8D70B4743E0C3f334ad/info.json new file mode 100644 index 0000000000000..97391aefe2968 --- /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 0000000000000..25ffd17b23344 Binary files /dev/null and b/blockchains/polygon/assets/0xD4814770065F634003A8d8D70B4743E0C3f334ad/logo.png differ diff --git a/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/info.json b/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/info.json new file mode 100644 index 0000000000000..d5c2fd870d9a2 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/logo.png b/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/logo.png new file mode 100644 index 0000000000000..df1bd6c22be25 Binary files /dev/null and b/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/logo.png differ diff --git a/blockchains/polygon/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json b/blockchains/polygon/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json new file mode 100644 index 0000000000000..a5b7f91e9d660 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..47ffbe08a8dcc Binary files /dev/null and b/blockchains/polygon/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png differ diff --git a/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/info.json b/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/info.json new file mode 100644 index 0000000000000..7b306f17152a8 --- /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": "twitter", + "url": "https://twitter.com/WeAreTellor" + }, + { + "name": "telegram", + "url": "https://t.me/tellor" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tellor/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tellor/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/logo.png b/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/logo.png new file mode 100644 index 0000000000000..f1295da4329a3 Binary files /dev/null and b/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/logo.png differ diff --git a/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/info.json b/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/info.json new file mode 100644 index 0000000000000..1d688b032fc6a --- /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": "twitter", + "url": "https://twitter.com/GainsNetwork_io" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/logo.png b/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/logo.png new file mode 100644 index 0000000000000..a7d79ca849d34 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 0000000000000..631a3b570ce95 --- /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 0000000000000..e3110cce3bde2 Binary files /dev/null and b/blockchains/polygon/assets/0xE6469Ba6D2fD6130788E0eA9C0a0515900563b59/logo.png differ diff --git a/blockchains/polygon/assets/0xE7879BaFa6A41F919f145a97207e54839d34c9bA/info.json b/blockchains/polygon/assets/0xE7879BaFa6A41F919f145a97207e54839d34c9bA/info.json new file mode 100644 index 0000000000000..9df9619527da5 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..3e041120b65b0 Binary files /dev/null and b/blockchains/polygon/assets/0xE7879BaFa6A41F919f145a97207e54839d34c9bA/logo.png differ diff --git a/blockchains/polygon/assets/0xED755dBa6Ec1eb520076Cec051a582A6d81A8253/info.json b/blockchains/polygon/assets/0xED755dBa6Ec1eb520076Cec051a582A6d81A8253/info.json new file mode 100644 index 0000000000000..1ec8d92ab4071 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a16cde4bd1f7d 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 0000000000000..a19cc158da13b --- /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": "twitter", + "url": "https://twitter.com/arpaofficial?source=user_profile---------------------------" + }, + { + "name": "telegram", + "url": "https://t.me/arpa_community" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arpa-chain/" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/polygon/assets/0xEE800B277A96B0f490a1A732e1D6395FAD960A26/logo.png b/blockchains/polygon/assets/0xEE800B277A96B0f490a1A732e1D6395FAD960A26/logo.png new file mode 100644 index 0000000000000..457e25381f7b2 Binary files /dev/null and b/blockchains/polygon/assets/0xEE800B277A96B0f490a1A732e1D6395FAD960A26/logo.png differ diff --git a/blockchains/polygon/assets/0xFB32513135e3267995268E3099d2B6114d20B6eD/info.json b/blockchains/polygon/assets/0xFB32513135e3267995268E3099d2B6114d20B6eD/info.json new file mode 100644 index 0000000000000..53c1cf20bb0df --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/polygon/assets/0xFB32513135e3267995268E3099d2B6114d20B6eD/logo.png b/blockchains/polygon/assets/0xFB32513135e3267995268E3099d2B6114d20B6eD/logo.png new file mode 100644 index 0000000000000..83180d673c4ad Binary files /dev/null and b/blockchains/polygon/assets/0xFB32513135e3267995268E3099d2B6114d20B6eD/logo.png differ diff --git a/blockchains/polygon/assets/0xFbdd194376de19a88118e84E279b977f165d01b8/info.json b/blockchains/polygon/assets/0xFbdd194376de19a88118e84E279b977f165d01b8/info.json new file mode 100644 index 0000000000000..ee218aea74338 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6c09bb9a38215 Binary files /dev/null and b/blockchains/polygon/assets/0xFbdd194376de19a88118e84E279b977f165d01b8/logo.png differ diff --git a/blockchains/polygon/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json b/blockchains/polygon/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json new file mode 100644 index 0000000000000..af7a42d4f97d1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..efff8d00af4a5 Binary files /dev/null and b/blockchains/polygon/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png differ diff --git a/blockchains/polygon/assets/0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F/info.json b/blockchains/polygon/assets/0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F/info.json new file mode 100644 index 0000000000000..38a8e11bfd1fd --- /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": "twitter", + "url": "https://twitter.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 0000000000000..8a68f9ddf4c30 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 0000000000000..6189db96d808d --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/polygon/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png b/blockchains/polygon/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png new file mode 100644 index 0000000000000..a3b20074ec34d 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 0000000000000..bf20c79c1c058 --- /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 0000000000000..7a2e75fd77f1b Binary files /dev/null and b/blockchains/polygon/assets/0xd93f7E271cB87c23AaA73edC008A79646d1F9912/logo.png differ diff --git a/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/info.json b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/info.json new file mode 100644 index 0000000000000..647a6e0cc6a67 --- /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": "twitter", + "url": "https://twitter.com/bananocoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/banano/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/logo.png b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/logo.png new file mode 100644 index 0000000000000..cc05199544a7e Binary files /dev/null and b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/logo.png differ diff --git a/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 0000000000000..fb1000f0b4acf --- /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": "twitter", + "url": "https://twitter.com/abbcfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbc-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png new file mode 100644 index 0000000000000..9259df4c30a91 Binary files /dev/null and b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png differ diff --git a/blockchains/polygon/assets/0xeCDCB5B88F8e3C15f95c720C51c71c9E2080525d/info.json b/blockchains/polygon/assets/0xeCDCB5B88F8e3C15f95c720C51c71c9E2080525d/info.json new file mode 100644 index 0000000000000..33e6f036734e3 --- /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 0000000000000..24a702d4390f2 Binary files /dev/null and b/blockchains/polygon/assets/0xeCDCB5B88F8e3C15f95c720C51c71c9E2080525d/logo.png differ diff --git a/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json b/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json new file mode 100644 index 0000000000000..2f16f323e4460 --- /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": "active", + "id": "0xf0f9D895aCa5c8678f706FB8216fa22957685A13", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png b/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png new file mode 100644 index 0000000000000..e57ca28fc9381 Binary files /dev/null and b/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png differ diff --git a/blockchains/polygon/assets/0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D/info.json b/blockchains/polygon/assets/0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D/info.json new file mode 100644 index 0000000000000..76ad274260f68 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..01df4e76f4299 Binary files /dev/null and b/blockchains/polygon/assets/0xf14fbC6B30e2c4BC05A1D4fbE34bf9f14313309D/logo.png differ diff --git a/blockchains/polygon/assets/0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66/info.json b/blockchains/polygon/assets/0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66/info.json new file mode 100644 index 0000000000000..8d2910c53e51e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..13dd33ca47586 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 0000000000000..24b45f5e12a62 --- /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": "twitter", + "url": "https://twitter.com/HmntyProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/SRSbyHumanity" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/logo.png b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/logo.png new file mode 100644 index 0000000000000..0aa4eded67753 Binary files /dev/null and b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/logo.png differ diff --git a/blockchains/polygon/info/info.json b/blockchains/polygon/info/info.json index d430af4ca3e45..d88d2caa39dd4 100644 --- a/blockchains/polygon/info/info.json +++ b/blockchains/polygon/info/info.json @@ -7,12 +7,13 @@ "research": "https://docs.matic.network/", "type": "coin", "symbol": "MATIC", + "rpc_url": "https://polygon-rpc.com", "decimals": 18, "status": "active", "links": [ { "name": "github", - "url": "https://github.com/celo-org/celo-blockchain" + "url": "https://github.com/maticnetwork/" }, { "name": "twitter", @@ -27,4 +28,4 @@ "url": "https://github.com/maticnetwork/whitepaper" } ] -} \ No newline at end of file +} diff --git a/blockchains/polygon/tokenlist-extended.json b/blockchains/polygon/tokenlist-extended.json index ecd9ea68e7648..daa0797a0b5c6 100644 --- a/blockchains/polygon/tokenlist-extended.json +++ b/blockchains/polygon/tokenlist-extended.json @@ -1,10 +1,236 @@ { - "name": "Trust Wallet: Polygon Extended List", + "name": "Trust Wallet: Polygon", "logoURI": "https://trustwallet.com/assets/images/favicon.png", - "timestamp": "2022-01-27T14:33:26.183301", - "tokens": [], + "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": 1, + "major": 26, "minor": 0, "patch": 0 } diff --git a/blockchains/polygon/tokenlist.json b/blockchains/polygon/tokenlist.json index fb565e368487c..0f4eb857e4f24 100644 --- a/blockchains/polygon/tokenlist.json +++ b/blockchains/polygon/tokenlist.json @@ -10,7 +10,7 @@ "name": "Wrapped Ether", "symbol": "WETH", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/polygon/assets/0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619/logo.png", "pairs": [ { "base": "c966_t0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270" @@ -42,7 +42,7 @@ "name": "Wrapped MATIC", "symbol": "WMATIC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/polygon/assets/0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270/logo.png", "pairs": [ { "base": "c966_t0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174" @@ -62,10 +62,10 @@ "asset": "c966_t0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", "type": "POLYGON", "address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", - "name": "USD Coin (PoS)", - "symbol": "USDC", + "name": "Bridged USD Coin (PoS)", + "symbol": "USDC.e", "decimals": 6, - "logoURI": "https://assets.trustwalletapp.com/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/logo.png", "pairs": [ { "base": "c966_t0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270" @@ -85,7 +85,7 @@ "name": "(PoS) Tether USD", "symbol": "USDT", "decimals": 6, - "logoURI": "https://assets.trustwalletapp.com/blockchains/polygon/assets/0xc2132D05D31c914a87C6611C10748AEb04B58e8F/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xc2132D05D31c914a87C6611C10748AEb04B58e8F/logo.png", "pairs": [ { "base": "c966_t0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270" @@ -105,7 +105,7 @@ "name": "(PoS) Dai Stablecoin", "symbol": "DAI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/polygon/assets/0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063/logo.png", "pairs": [ { "base": "c966_t0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619" @@ -119,7 +119,7 @@ "name": "ChainLink Token", "symbol": "LINK", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/logo.png", "pairs": [] }, { @@ -129,7 +129,7 @@ "name": "QuickSwap", "symbol": "QUICK", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/logo.png", "pairs": [] }, { @@ -139,7 +139,7 @@ "name": "Aave (PoS)", "symbol": "AAVE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0xD6DF932A45C0f255f85145f286eA0b292B21C90B/logo.png", "pairs": [] } ], @@ -148,4 +148,4 @@ "minor": 0, "patch": 0 } -} \ No newline at end of file +} diff --git a/blockchains/polygonmumbai/info/info.json b/blockchains/polygonmumbai/info/info.json new file mode 100644 index 0000000000000..9f574b9317c50 --- /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 0000000000000..13af3e9b23116 Binary files /dev/null and b/blockchains/polygonmumbai/info/logo.png differ diff --git a/blockchains/polygonzkevm/assets/0x1E4a5963aBFD975d8c9021ce480b42188849D41d/info.json b/blockchains/polygonzkevm/assets/0x1E4a5963aBFD975d8c9021ce480b42188849D41d/info.json new file mode 100644 index 0000000000000..e94681d7aa049 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..227f4d62ef99d Binary files /dev/null and b/blockchains/polygonzkevm/assets/0x1E4a5963aBFD975d8c9021ce480b42188849D41d/logo.png differ diff --git a/blockchains/polygonzkevm/assets/0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9/info.json b/blockchains/polygonzkevm/assets/0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9/info.json new file mode 100644 index 0000000000000..cd1e313e5ffdc --- /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": "twitter", + "url": "https://twitter.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 0000000000000..03827dc52e73d 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 0000000000000..adb3af4cf001b --- /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": "twitter", + "url": "https://twitter.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 0000000000000..93f66cb05de29 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 0000000000000..7d858781ec0a6 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..4353b884b41bd 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 0000000000000..3d3578df688a5 --- /dev/null +++ b/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/info.json @@ -0,0 +1,29 @@ +{ + "name": "Matic Token", + "type": "ZKEVM", + "symbol": "MATIC", + "decimals": 18, + "website": "https://app.radiant.capital/", + "description": "Polygon is a protocol and a framework for building and connecting Ethereum-compatible blockchain networks. Aggregating scalable solutions on Ethereum supporting a multi-chain Ethereum ecosystem.", + "explorer": "https://explorer.public.zkevm-test.net/address/0xa2036f0538221a77a3937f1379699f44945018d0", + "status": "active", + "id": "0xa2036f0538221a77A3937F1379699f44945018d0", + "links": [ + { + "name": "telegram", + "url": "https://t.me/polygonofficial" + }, + { + "name": "twitter", + "url": "https://twitter.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 0000000000000..fbd01afc251d4 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 0000000000000..1326db7820668 --- /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": "twitter", + "url": "https://twitter.com/0xPolygonHermez" + } + ] +} diff --git a/blockchains/polygonzkevm/info/logo.png b/blockchains/polygonzkevm/info/logo.png new file mode 100644 index 0000000000000..e4aaa73298ee4 Binary files /dev/null and b/blockchains/polygonzkevm/info/logo.png differ diff --git a/blockchains/qtum/info/logo.png b/blockchains/qtum/info/logo.png index f2c16966684fe..1cf2d6a2a8d20 100644 Binary files a/blockchains/qtum/info/logo.png and b/blockchains/qtum/info/logo.png differ diff --git a/blockchains/quasar/info/info.json b/blockchains/quasar/info/info.json new file mode 100644 index 0000000000000..92650bda3d44a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..658b992831162 Binary files /dev/null and b/blockchains/quasar/info/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj/logo.png b/blockchains/quasar/validators/assets/quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj/logo.png new file mode 100644 index 0000000000000..d3477a03445f6 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper14mugyqxjvtzk39au6klgpcyz4vpxgxsjf7c5uk/logo.png b/blockchains/quasar/validators/assets/quasarvaloper14mugyqxjvtzk39au6klgpcyz4vpxgxsjf7c5uk/logo.png new file mode 100644 index 0000000000000..28a98c6eaba18 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper14mugyqxjvtzk39au6klgpcyz4vpxgxsjf7c5uk/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper1yhh4r96kvl9tzucq5dn69gu2242hn2d9gsscvw/logo.png b/blockchains/quasar/validators/assets/quasarvaloper1yhh4r96kvl9tzucq5dn69gu2242hn2d9gsscvw/logo.png new file mode 100644 index 0000000000000..f6dfe9162fd43 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper1yhh4r96kvl9tzucq5dn69gu2242hn2d9gsscvw/logo.png differ diff --git a/blockchains/quasar/validators/list.json b/blockchains/quasar/validators/list.json new file mode 100644 index 0000000000000..e83358a713698 --- /dev/null +++ b/blockchains/quasar/validators/list.json @@ -0,0 +1,20 @@ +[ + { + "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/" + } +] \ No newline at end of file diff --git a/blockchains/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/info.json b/blockchains/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/info.json new file mode 100644 index 0000000000000..93c5e7cb44bcc --- /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": "twitter", + "url": "https://twitter.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 0000000000000..17fe1bcbf544a 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 index 8b74d56f87f34..02fb649af7967 100644 --- a/blockchains/ronin/assets/0x97a9107C1793BC407d6F527b77e7fff4D812bece/info.json +++ b/blockchains/ronin/assets/0x97a9107C1793BC407d6F527b77e7fff4D812bece/info.json @@ -1,12 +1,12 @@ { "name": "Axie Infinity Shard", - "website": "https://axieinfinity.com", - "description": "Axie Infinity Shards are Axie Infinity's governance token.", - "explorer": "https://explorer.roninchain.com/token/ronin:0x97a9107C1793BC407d6F527b77e7fff4D812bece", - "research": "https://research.binance.com/en/projects/axie-infinity", - "type": "RONIN", "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/0xa8754b9Fa15fc18BB59458815510E40a12cD2014/info.json b/blockchains/ronin/assets/0xa8754b9Fa15fc18BB59458815510E40a12cD2014/info.json index 0a8617c6ac956..94901506b642b 100644 --- a/blockchains/ronin/assets/0xa8754b9Fa15fc18BB59458815510E40a12cD2014/info.json +++ b/blockchains/ronin/assets/0xa8754b9Fa15fc18BB59458815510E40a12cD2014/info.json @@ -1,12 +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://explorer.roninchain.com/token/ronin:0xa8754b9Fa15fc18BB59458815510E40a12cD2014", - "research": "https://research.binance.com/en/projects/small-love-potion", - "type": "RONIN", "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/0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5/info.json b/blockchains/ronin/assets/0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5/info.json index 7cfbab456d0ff..2e5196d81ad92 100644 --- a/blockchains/ronin/assets/0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5/info.json +++ b/blockchains/ronin/assets/0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "-", "website": "https://weth.io/", - "explorer": "https://explorer.roninchain.com/token/ronin:0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5", + "explorer": "https://explorer.roninchain.com/token/0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5", "status": "active", "id": "0xc99a6A985eD2Cac1ef41640596C5A5f9F4E19Ef5" } \ No newline at end of file diff --git a/blockchains/scroll/info/info.json b/blockchains/scroll/info/info.json new file mode 100644 index 0000000000000..160c9cf0f4731 --- /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": "twitter", + "url": "https://twitter.com/Scroll_ZKP" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/info/logo.png b/blockchains/scroll/info/logo.png new file mode 100644 index 0000000000000..08ee9d1ed793f Binary files /dev/null and b/blockchains/scroll/info/logo.png differ diff --git a/blockchains/secret/info/info.json b/blockchains/secret/info/info.json new file mode 100644 index 0000000000000..8ced09705392f --- /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": "twitter", + "url": "https://twitter.com/SecretNetwork" + } + ] +} diff --git a/blockchains/secret/info/logo.png b/blockchains/secret/info/logo.png new file mode 100644 index 0000000000000..83415d6678c55 Binary files /dev/null and b/blockchains/secret/info/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper12y30xefd0wg53xtyv9lw7mjcdvf8nxgzzva3sr/logo.png b/blockchains/secret/validators/assets/secretvaloper12y30xefd0wg53xtyv9lw7mjcdvf8nxgzzva3sr/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper12y30xefd0wg53xtyv9lw7mjcdvf8nxgzzva3sr/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper16w5hlcf389le2n60t32eqf43plp539ged9sruy/logo.png b/blockchains/secret/validators/assets/secretvaloper16w5hlcf389le2n60t32eqf43plp539ged9sruy/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper16w5hlcf389le2n60t32eqf43plp539ged9sruy/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper19z74520tdw5gps5sp5tr8y2mxr40artly6rsw3/logo.png b/blockchains/secret/validators/assets/secretvaloper19z74520tdw5gps5sp5tr8y2mxr40artly6rsw3/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper19z74520tdw5gps5sp5tr8y2mxr40artly6rsw3/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1hjd20hjvkx06y8p42xl0uzr3gr3ue3nkvd79jj/logo.png b/blockchains/secret/validators/assets/secretvaloper1hjd20hjvkx06y8p42xl0uzr3gr3ue3nkvd79jj/logo.png new file mode 100644 index 0000000000000..821e30b0e283c Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1hjd20hjvkx06y8p42xl0uzr3gr3ue3nkvd79jj/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1x76f2c2cuwa4e3lttjgqeqva0725ftmqvgvfnv/logo.png b/blockchains/secret/validators/assets/secretvaloper1x76f2c2cuwa4e3lttjgqeqva0725ftmqvgvfnv/logo.png new file mode 100644 index 0000000000000..3345b271b7197 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1x76f2c2cuwa4e3lttjgqeqva0725ftmqvgvfnv/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1xj5ykuzn0mkq9642yxgqmh4ycplzhr2pza25mk/logo.png b/blockchains/secret/validators/assets/secretvaloper1xj5ykuzn0mkq9642yxgqmh4ycplzhr2pza25mk/logo.png new file mode 100644 index 0000000000000..0615d014ea874 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1xj5ykuzn0mkq9642yxgqmh4ycplzhr2pza25mk/logo.png differ diff --git a/blockchains/secret/validators/list.json b/blockchains/secret/validators/list.json new file mode 100644 index 0000000000000..a3144a1ef842a --- /dev/null +++ b/blockchains/secret/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "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": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "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" + } +] diff --git a/blockchains/sei/info/info.json b/blockchains/sei/info/info.json new file mode 100644 index 0000000000000..ed96c6de9fdbd --- /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": "twitter", + "url": "https://twitter.com/SeiNetwork" + }, + { + "name": "github", + "url": "https://github.com/sei-protocol/sei-chain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sei/" + } + ] +} \ No newline at end of file diff --git a/blockchains/sei/info/logo.png b/blockchains/sei/info/logo.png new file mode 100644 index 0000000000000..b473b2c487a0a Binary files /dev/null and b/blockchains/sei/info/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1eqgnd7ey0hnha8rrfukjrsawulhna0zagcg6a4/logo.png b/blockchains/sei/validators/assets/seivaloper1eqgnd7ey0hnha8rrfukjrsawulhna0zagcg6a4/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1eqgnd7ey0hnha8rrfukjrsawulhna0zagcg6a4/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8/logo.png b/blockchains/sei/validators/assets/seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8/logo.png new file mode 100644 index 0000000000000..e5e20afbb46b8 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qnkypla/logo.png b/blockchains/sei/validators/assets/seivaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qnkypla/logo.png new file mode 100644 index 0000000000000..f78bfbfb1dfe7 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qnkypla/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1t9fq3qfm7ngau5gr8qgf5dpfzjqg79kf65cu04/logo.png b/blockchains/sei/validators/assets/seivaloper1t9fq3qfm7ngau5gr8qgf5dpfzjqg79kf65cu04/logo.png new file mode 100644 index 0000000000000..975d9113e179c Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1t9fq3qfm7ngau5gr8qgf5dpfzjqg79kf65cu04/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1zv9z2wqt348dhxqn38xv8dvsu78cle4xs2cdf4/logo.png b/blockchains/sei/validators/assets/seivaloper1zv9z2wqt348dhxqn38xv8dvsu78cle4xs2cdf4/logo.png new file mode 100644 index 0000000000000..7a2c0c8a85ed8 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1zv9z2wqt348dhxqn38xv8dvsu78cle4xs2cdf4/logo.png differ diff --git a/blockchains/sei/validators/list.json b/blockchains/sei/validators/list.json new file mode 100644 index 0000000000000..e4102c3edbdc8 --- /dev/null +++ b/blockchains/sei/validators/list.json @@ -0,0 +1,32 @@ +[ + { + "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/" + } +] \ No newline at end of file diff --git a/blockchains/sepolia/info/info.json b/blockchains/sepolia/info/info.json new file mode 100644 index 0000000000000..ccc2cb83d968a --- /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 0000000000000..0982743010967 Binary files /dev/null and b/blockchains/sepolia/info/logo.png differ diff --git a/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/info.json b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/info.json new file mode 100644 index 0000000000000..5fb016f6b8fd7 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/logo.png b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/logo.png new file mode 100644 index 0000000000000..43b67546bc289 Binary files /dev/null and b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/logo.png differ diff --git a/blockchains/smartchain/assets/0x000851476180bfc499ea68450A5327D21C9b050e/info.json b/blockchains/smartchain/assets/0x000851476180bfc499ea68450A5327D21C9b050e/info.json new file mode 100644 index 0000000000000..f156cf6b921dc --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x000851476180bfc499ea68450A5327D21C9b050e/logo.png b/blockchains/smartchain/assets/0x000851476180bfc499ea68450A5327D21C9b050e/logo.png new file mode 100644 index 0000000000000..28b773a421c28 Binary files /dev/null and b/blockchains/smartchain/assets/0x000851476180bfc499ea68450A5327D21C9b050e/logo.png differ diff --git a/blockchains/smartchain/assets/0x007EA5C0Ea75a8DF45D288a4debdD5bb633F9e56/info.json b/blockchains/smartchain/assets/0x007EA5C0Ea75a8DF45D288a4debdD5bb633F9e56/info.json index 4626143dd9f5a..af1ad2f05f16e 100644 --- a/blockchains/smartchain/assets/0x007EA5C0Ea75a8DF45D288a4debdD5bb633F9e56/info.json +++ b/blockchains/smartchain/assets/0x007EA5C0Ea75a8DF45D288a4debdD5bb633F9e56/info.json @@ -1,11 +1,11 @@ { - "name": "Canyz", + "name": "CanYaCoin", "type": "BEP20", "symbol": "CAN", "decimals": 18, - "website": "https://canya.io/", - "description": "-", + "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" -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/info.json b/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/info.json new file mode 100644 index 0000000000000..0c11a7e531f1d --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/logo.png b/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/logo.png new file mode 100644 index 0000000000000..2b343db98ab57 Binary files /dev/null and b/blockchains/smartchain/assets/0x00998d97c22B564d1dAF39d493e74C21D83fffbA/logo.png differ diff --git a/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/info.json b/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/info.json new file mode 100644 index 0000000000000..76ba465909fe9 --- /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": "active", + "id": "0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gulf-coin/" + }, + { + "name": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/logo.png b/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/logo.png new file mode 100644 index 0000000000000..d937afa9dcf94 Binary files /dev/null and b/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/logo.png differ diff --git a/blockchains/smartchain/assets/0x0173295183685F27C84db046B5F0bea3e683c24b/info.json b/blockchains/smartchain/assets/0x0173295183685F27C84db046B5F0bea3e683c24b/info.json new file mode 100644 index 0000000000000..5bdd2dae3530b --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6b23b5f8145c1 Binary files /dev/null and b/blockchains/smartchain/assets/0x0173295183685F27C84db046B5F0bea3e683c24b/logo.png differ diff --git a/blockchains/smartchain/assets/0x01e9611dF08548994C883e4Ca729B0128E73470F/info.json b/blockchains/smartchain/assets/0x01e9611dF08548994C883e4Ca729B0128E73470F/info.json index bf264ab649fff..e26f6a14f3a11 100644 --- a/blockchains/smartchain/assets/0x01e9611dF08548994C883e4Ca729B0128E73470F/info.json +++ b/blockchains/smartchain/assets/0x01e9611dF08548994C883e4Ca729B0128E73470F/info.json @@ -4,7 +4,7 @@ "symbol": "RZE", "decimals": 18, "website": "https://rizeabove.finance", - "description": "RIZE ABOVE EVOLUTION ($RZE) Is a community driven hyper-deflationary decentralized digital currency for THE PEOPLE by THE PEOPLE. RZE rewards holders with binance wrapped DOGE.", + "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", diff --git a/blockchains/smartchain/assets/0x02a655942Dbb886c77bb22B270060c561300B0E2/info.json b/blockchains/smartchain/assets/0x02a655942Dbb886c77bb22B270060c561300B0E2/info.json new file mode 100644 index 0000000000000..8a3c11de25550 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..2405c0a1b128e Binary files /dev/null and b/blockchains/smartchain/assets/0x02a655942Dbb886c77bb22B270060c561300B0E2/logo.png differ diff --git a/blockchains/smartchain/assets/0x031b41e504677879370e9DBcF937283A8691Fa7f/info.json b/blockchains/smartchain/assets/0x031b41e504677879370e9DBcF937283A8691Fa7f/info.json new file mode 100644 index 0000000000000..bdbfd567251ce --- /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 0000000000000..d5c525f6ea6f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x031b41e504677879370e9DBcF937283A8691Fa7f/logo.png differ diff --git a/blockchains/smartchain/assets/0x035aD59058c557be4532141FBCD60f0998fCE413/info.json b/blockchains/smartchain/assets/0x035aD59058c557be4532141FBCD60f0998fCE413/info.json new file mode 100644 index 0000000000000..2b5618e78b175 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x035aD59058c557be4532141FBCD60f0998fCE413/logo.png b/blockchains/smartchain/assets/0x035aD59058c557be4532141FBCD60f0998fCE413/logo.png new file mode 100644 index 0000000000000..87bf4a4842d67 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 0000000000000..7977fc9229a42 --- /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 0000000000000..ad5123c0ba9b6 Binary files /dev/null and b/blockchains/smartchain/assets/0x035de3679E692C471072d1A09bEb9298fBB2BD31/logo.png differ diff --git a/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json new file mode 100644 index 0000000000000..9fe373321a684 --- /dev/null +++ b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json @@ -0,0 +1,17 @@ +{ + "name": "DEXE", + "type": "BEP20", + "symbol": "DEXE", + "decimals": 18, + "website": "https://dexe.network/", + "description": "Dexe.network or Dexe (Decentralized Social Trading Platform) – an online, decentralized and autonomous cryptocurrency assets portfolio environment which operates via autonomous smart contracts, that includes tools for virtual currency allocation, automatic rebalancing and eliminates the risks of transferring digital wallet details such as private keys and API or any virtual currency data to a third party.", + "explorer": "https://bscscan.com/token/0x039cb485212f996a9dbb85a9a75d898f94d38da6", + "id": "0x039cB485212f996A9DBb85A9a75d898F94d38dA6", + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/dexe-network/dexe" + } + ] +} \ 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 0000000000000..0ca575a8134dc Binary files /dev/null and b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/logo.png differ diff --git a/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/info.json b/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/info.json new file mode 100644 index 0000000000000..8644b65fc396f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/logo.png b/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/logo.png new file mode 100644 index 0000000000000..d6aee8b08facc Binary files /dev/null and b/blockchains/smartchain/assets/0x0416846Db6bEa02588e546271D4d83c4061b7757/logo.png differ diff --git a/blockchains/smartchain/assets/0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98/info.json b/blockchains/smartchain/assets/0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98/info.json index 92d7df18c41f4..01ffc21b5e2a4 100644 --- a/blockchains/smartchain/assets/0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98/info.json +++ b/blockchains/smartchain/assets/0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98/info.json @@ -6,7 +6,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": "active", + "status": "abandoned", "id": "0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98", "links": [ { diff --git a/blockchains/smartchain/assets/0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98/logo.png b/blockchains/smartchain/assets/0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98/logo.png deleted file mode 100644 index 6202f400b0e5b..0000000000000 Binary files a/blockchains/smartchain/assets/0x0469F8Ca65Ce318888cc0d6459d0c7cbe5912c98/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/info.json b/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/info.json new file mode 100644 index 0000000000000..e6816790fd4ba --- /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": "twitter", + "url": "https://twitter.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 0000000000000..49612f64751a2 Binary files /dev/null and b/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/logo.png differ diff --git a/blockchains/smartchain/assets/0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95/info.json b/blockchains/smartchain/assets/0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95/info.json new file mode 100644 index 0000000000000..bbb20854ce33d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f37422e07dd2c Binary files /dev/null and b/blockchains/smartchain/assets/0x056cB5463Db539985fd6EbfbE5C3D5904C5E8A95/logo.png differ diff --git a/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/info.json b/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/info.json new file mode 100644 index 0000000000000..8557e215ea8fa --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/logo.png b/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/logo.png new file mode 100644 index 0000000000000..1bcb6127d877a Binary files /dev/null and b/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/logo.png differ diff --git a/blockchains/smartchain/assets/0x05aD6E30A855BE07AfA57e08a4f30d00810a402e/info.json b/blockchains/smartchain/assets/0x05aD6E30A855BE07AfA57e08a4f30d00810a402e/info.json new file mode 100644 index 0000000000000..47e45710fb00f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..21ac33e14398a 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 0000000000000..e274439e8b42d --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d/logo.png b/blockchains/smartchain/assets/0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d/logo.png new file mode 100644 index 0000000000000..282fb234550fa Binary files /dev/null and b/blockchains/smartchain/assets/0x05ad901cf196cbDCEaB3F8e602a47AAdB1a2e69d/logo.png differ diff --git a/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/info.json b/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/info.json new file mode 100644 index 0000000000000..9b4bc72a33715 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..721dbc2a1d20f Binary files /dev/null and b/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/logo.png differ diff --git a/blockchains/smartchain/assets/0x0733618Ab62eEEC815f2d1739b7a50bF9E74d8a2/info.json b/blockchains/smartchain/assets/0x0733618Ab62eEEC815f2d1739b7a50bF9E74d8a2/info.json new file mode 100644 index 0000000000000..a4992efca824a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..ba2be4c64d9e9 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 0000000000000..b97f4217b2e1b --- /dev/null +++ b/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Hay Stablecoin", + "type": "BEP20", + "symbol": "HAY", + "decimals": 18, + "website": "https://helio.money/", + "description": "The Helio.Money protocol, powered by the BNB chain, introduces an innovative architecture to stablecoin minting. Helio’s stablecoin is called HAY, and it is over-collateralized with BNB tokens. To obtain HAY, the user will need to provide BNB collateral and borrow HAY against it. After that, HAY can be staked for long-term yield and transferred to other protocols to generate additional yield. HAY is over-collateralized, making its peg highly secure and comparable to the MakerDAO DAI token.", + "explorer": "https://bscscan.com/token/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5", + "status": "active", + "id": "0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Helio_Money" + }, + { + "name": "github", + "url": "https://github.com/helio-money" + } + ], + "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 0000000000000..7ecbaf9ae621c Binary files /dev/null and b/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/logo.png differ diff --git a/blockchains/smartchain/assets/0x07a3554899D97a087Bda931Dd5224B3B7435E568/info.json b/blockchains/smartchain/assets/0x07a3554899D97a087Bda931Dd5224B3B7435E568/info.json new file mode 100644 index 0000000000000..7f23aaaca32dd --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x07a3554899D97a087Bda931Dd5224B3B7435E568/logo.png b/blockchains/smartchain/assets/0x07a3554899D97a087Bda931Dd5224B3B7435E568/logo.png new file mode 100644 index 0000000000000..58b91ca8478fe 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 index 193894818bc29..e80b759d37866 100644 --- a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json +++ b/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json @@ -6,7 +6,7 @@ "website": "https://www.aquagoat.finance/", "description": "AquaGoat Finance is a decentralized community-led eco-DeFi project, with AquaGoat acting as its DeFi alternative to conventional high-interest savings accounts.", "explorer": "https://bscscan.com/token/0x07af67b392b7a202fad8e0fbc64c34f33102165b", - "status": "active", + "status": "abandoned", "id": "0x07af67b392B7A202fAD8E0FBc64C34F33102165B", "links": [ { diff --git a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/logo.png b/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/logo.png deleted file mode 100644 index 0d294f23beb6e..0000000000000 Binary files a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/info.json b/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/info.json new file mode 100644 index 0000000000000..4f3c13063fc31 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..e0b4bdca682f7 Binary files /dev/null and b/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/logo.png differ diff --git a/blockchains/smartchain/assets/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3/info.json b/blockchains/smartchain/assets/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3/info.json new file mode 100644 index 0000000000000..91645c1a575bb --- /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": "twitter", + "url": "https://twitter.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 0000000000000..08f511b5376fb Binary files /dev/null and b/blockchains/smartchain/assets/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3/logo.png differ diff --git a/blockchains/smartchain/assets/0x0921d788E7f7498f80adb0A0A62B8A9476F2Db92/info.json b/blockchains/smartchain/assets/0x0921d788E7f7498f80adb0A0A62B8A9476F2Db92/info.json index 4b8bf0cf7b192..0d3dff9ce7c11 100644 --- a/blockchains/smartchain/assets/0x0921d788E7f7498f80adb0A0A62B8A9476F2Db92/info.json +++ b/blockchains/smartchain/assets/0x0921d788E7f7498f80adb0A0A62B8A9476F2Db92/info.json @@ -6,6 +6,6 @@ "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": "active", + "status": "abandoned", "id": "0x0921d788E7f7498f80adb0A0A62B8A9476F2Db92" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0921d788E7f7498f80adb0A0A62B8A9476F2Db92/logo.png b/blockchains/smartchain/assets/0x0921d788E7f7498f80adb0A0A62B8A9476F2Db92/logo.png deleted file mode 100644 index c5a5f3af35789..0000000000000 Binary files a/blockchains/smartchain/assets/0x0921d788E7f7498f80adb0A0A62B8A9476F2Db92/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/info.json b/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/info.json new file mode 100644 index 0000000000000..cbdf91bac888b --- /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": "twitter", + "url": "https://twitter.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 0000000000000..34f2dd2568092 Binary files /dev/null and b/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/logo.png differ diff --git a/blockchains/smartchain/assets/0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1/info.json b/blockchains/smartchain/assets/0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1/info.json new file mode 100644 index 0000000000000..999f87993d45a --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1/logo.png b/blockchains/smartchain/assets/0x09BB6042A19BB3A6981e9a47EC0f006dBd28a8d1/logo.png new file mode 100644 index 0000000000000..bde265b1fc5e0 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 0000000000000..508a64a0e88a5 --- /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": "twitter", + "url": "https://twitter.com/clv_org" + }, + { + "name": "medium", + "url": "https://medium.com/@clv_org" + } + ] +} diff --git a/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/logo.png b/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/logo.png new file mode 100644 index 0000000000000..3765491ca96c3 Binary files /dev/null and b/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/logo.png differ diff --git a/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/info.json b/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/info.json new file mode 100644 index 0000000000000..bf8c2bd99045f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/logo.png b/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/logo.png new file mode 100644 index 0000000000000..a1ae8e0de96c0 Binary files /dev/null and b/blockchains/smartchain/assets/0x09d96101dB62FfAc32f798CB9A61e501337b79C6/logo.png differ diff --git a/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/info.json b/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/info.json index 42d2375315e3c..4f076ea849f73 100644 --- a/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/info.json +++ b/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/info.json @@ -1,5 +1,5 @@ { - "name": "Binance-Peg Filecoin", + "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", diff --git a/blockchains/smartchain/assets/0x0Da1774e58eD28fF9749340F116055F8d836A7C8/info.json b/blockchains/smartchain/assets/0x0Da1774e58eD28fF9749340F116055F8d836A7C8/info.json new file mode 100644 index 0000000000000..a89cecbf6824a --- /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": "twitter", + "url": "https://twitter.com/vancattoken" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vancat" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8597ba143AC509189E89aaB3BA28d661A5dD9830/logo.png b/blockchains/smartchain/assets/0x0Da1774e58eD28fF9749340F116055F8d836A7C8/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x8597ba143AC509189E89aaB3BA28d661A5dD9830/logo.png rename to blockchains/smartchain/assets/0x0Da1774e58eD28fF9749340F116055F8d836A7C8/logo.png diff --git a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json b/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json index 2e00d5ae1a36e..0d35200ff257a 100644 --- a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json +++ b/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json @@ -6,6 +6,6 @@ "website": "https://www.ryoshitoken.com", "description": "Ryoshi is a deflationary, community driven meme token that came to take over the meme game. With 10% burn from every transaction that decreases the supply and increases the demand you can kick back and watch your RYOSHI value grow.", "explorer": "https://bscscan.com/token/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9", - "status": "active", + "status": "abandoned", "id": "0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/logo.png b/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/logo.png deleted file mode 100644 index f1767d54665b1..0000000000000 Binary files a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json b/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json index 876ce6418259e..f29669e94d5f7 100644 --- a/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json +++ b/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json @@ -3,8 +3,8 @@ "type": "BEP20", "symbol": "HODL", "decimals": 9, - "website": "https://www.HODLtoken.net", - "description": "Passive Income Made Easy.", + "website": "https://www.hodltoken.net", + "description": "HODL Token is the longest-serving, highest-paying reward token on the Binance Smart Chain (BSC). Simply hold $HODL and get BNB rewards and reflection within a deflationary ecosystem. HODL is - Passive Income Made Easy.", "explorer": "https://bscscan.com/token/0x0E9766dF73973abCfEDDE700497c57110ee5c301", "status": "active", "id": "0x0E9766dF73973abCfEDDE700497c57110ee5c301", @@ -37,17 +37,39 @@ "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-token/HODL" + "url": "https://github.com/HODL-org/contract" } + ], + "tags": [ + "defi", + "staking", + "deflationary", + "memes" ] -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/info.json b/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/info.json index a27f265d4e6b9..b1f701311e4a2 100644 --- a/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/info.json +++ b/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Cosmos Token", + "name": "BNB pegged Cosmos Token", "website": "https://cosmos.network", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x0Ef2e7602adD1733Bfdb17aC3094d0421B502cA3/info.json b/blockchains/smartchain/assets/0x0Ef2e7602adD1733Bfdb17aC3094d0421B502cA3/info.json new file mode 100644 index 0000000000000..312f68ae9c2be --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a93ce021c457a 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 0000000000000..1ee4804ae16a7 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..98103f7fdee85 Binary files /dev/null and b/blockchains/smartchain/assets/0x0F1cBEd8EFa0E012AdbCCB1638D0aB0147D5Ac00/logo.png differ diff --git a/blockchains/smartchain/assets/0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5/info.json b/blockchains/smartchain/assets/0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5/info.json new file mode 100644 index 0000000000000..6bc3700550f4e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f0ed605142eef Binary files /dev/null and b/blockchains/smartchain/assets/0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5/logo.png differ diff --git a/blockchains/smartchain/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json b/blockchains/smartchain/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json index 6b02f6bd66521..189c95c2314e6 100644 --- a/blockchains/smartchain/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json +++ b/blockchains/smartchain/assets/0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89/info.json @@ -1,5 +1,5 @@ { - "name": "Impossible Finance IDIA", + "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", diff --git a/blockchains/smartchain/assets/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e/info.json b/blockchains/smartchain/assets/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e/info.json index 3609be7908504..a63491f69bcf7 100644 --- a/blockchains/smartchain/assets/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e/info.json +++ b/blockchains/smartchain/assets/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0x0cAE6c43fe2f43757a767Df90cf5054280110F3e", "links": [ { diff --git a/blockchains/smartchain/assets/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e/logo.png b/blockchains/smartchain/assets/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e/logo.png deleted file mode 100644 index 9355f368b0cab..0000000000000 Binary files a/blockchains/smartchain/assets/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x0cBD6fAdcF8096cC9A43d90B45F65826102e3eCE/info.json b/blockchains/smartchain/assets/0x0cBD6fAdcF8096cC9A43d90B45F65826102e3eCE/info.json new file mode 100644 index 0000000000000..29574bc2bf32e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..dd92290daedff 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 0000000000000..98a6277ccd6b3 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605/logo.png b/blockchains/smartchain/assets/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605/logo.png new file mode 100644 index 0000000000000..a7c9de154e490 Binary files /dev/null and b/blockchains/smartchain/assets/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605/logo.png differ diff --git a/blockchains/smartchain/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json b/blockchains/smartchain/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json index ded12e9d9648c..288e32eb7379c 100644 --- a/blockchains/smartchain/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json +++ b/blockchains/smartchain/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/info.json @@ -1,12 +1,12 @@ { - "name": "EverRise", + "name": "EverRise (old)", "type": "BEP20", - "symbol": "RISE", + "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": "active", + "status": "abandoned", "id": "0x0cD022ddE27169b20895e0e2B2B8A33B25e63579", "links": [ { diff --git a/blockchains/smartchain/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/logo.png b/blockchains/smartchain/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/logo.png deleted file mode 100644 index 05493969dfc99..0000000000000 Binary files a/blockchains/smartchain/assets/0x0cD022ddE27169b20895e0e2B2B8A33B25e63579/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/info.json b/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/info.json new file mode 100644 index 0000000000000..2b6cd08716c7e --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/logo.png b/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/logo.png new file mode 100644 index 0000000000000..8119cc5d74a5b Binary files /dev/null and b/blockchains/smartchain/assets/0x0f0Dd5E2c0e0c4A41F8908D73D36B8D142F6745a/logo.png differ diff --git a/blockchains/smartchain/assets/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/info.json b/blockchains/smartchain/assets/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/info.json index e92dbfe796bc0..8084b5d8dbc97 100644 --- a/blockchains/smartchain/assets/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/info.json +++ b/blockchains/smartchain/assets/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "BabyDogeZilla", "decimals": 9, - "status": "active", + "status": "abandoned", "id": "0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9", "links": [ { diff --git a/blockchains/smartchain/assets/0x101d82428437127bF1608F699CD651e6Abf9766E/info.json b/blockchains/smartchain/assets/0x101d82428437127bF1608F699CD651e6Abf9766E/info.json index b1546a6a659db..b427828fb10ad 100644 --- a/blockchains/smartchain/assets/0x101d82428437127bF1608F699CD651e6Abf9766E/info.json +++ b/blockchains/smartchain/assets/0x101d82428437127bF1608F699CD651e6Abf9766E/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Basic Attention Token", + "name": "BNB pegged Basic Attention Token", "website": "https://basicattentiontoken.org", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x1042aA383CAb145dc77121ca75650804A5c134ff/info.json b/blockchains/smartchain/assets/0x1042aA383CAb145dc77121ca75650804A5c134ff/info.json new file mode 100644 index 0000000000000..4fa34420a2880 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..ec9944f21925b Binary files /dev/null and b/blockchains/smartchain/assets/0x1042aA383CAb145dc77121ca75650804A5c134ff/logo.png differ diff --git a/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/info.json b/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/info.json new file mode 100644 index 0000000000000..952fc15b507f5 --- /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": "twitter", + "url": "https://twitter.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/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/info.json b/blockchains/smartchain/assets/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/info.json new file mode 100644 index 0000000000000..a0cd88af4c026 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/logo.png b/blockchains/smartchain/assets/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/logo.png new file mode 100644 index 0000000000000..8c34b0574de63 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 0000000000000..d7e878bed4838 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x10cb66ce2969d8c8193707A9dCD559D2243B8b37/logo.png b/blockchains/smartchain/assets/0x10cb66ce2969d8c8193707A9dCD559D2243B8b37/logo.png new file mode 100644 index 0000000000000..3eb09894ea2f0 Binary files /dev/null and b/blockchains/smartchain/assets/0x10cb66ce2969d8c8193707A9dCD559D2243B8b37/logo.png differ diff --git a/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json b/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json new file mode 100644 index 0000000000000..c79469c281ca1 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json b/blockchains/smartchain/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json index ea9e02aeb5dc3..6f503cd21efa8 100644 --- a/blockchains/smartchain/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json +++ b/blockchains/smartchain/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json @@ -1,6 +1,6 @@ { "name": "1INCH Token", - "website": "https://1inch.exchange", + "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", diff --git a/blockchains/smartchain/assets/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4/info.json b/blockchains/smartchain/assets/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4/info.json new file mode 100644 index 0000000000000..f33ee1b2677e7 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d4ed8cd51e13f Binary files /dev/null and b/blockchains/smartchain/assets/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4/logo.png differ diff --git a/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/info.json b/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/info.json new file mode 100644 index 0000000000000..f732ccd54b31a --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/logo.png b/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/logo.png new file mode 100644 index 0000000000000..e49a73ebb5521 Binary files /dev/null and b/blockchains/smartchain/assets/0x123458C167a371250d325Bd8B1ffF12C8AF692A7/logo.png differ diff --git a/blockchains/smartchain/assets/0x12BeffdCEcb547640DC30e1495E4B9cdc21922b4/info.json b/blockchains/smartchain/assets/0x12BeffdCEcb547640DC30e1495E4B9cdc21922b4/info.json new file mode 100644 index 0000000000000..23b6f20308427 --- /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 0000000000000..94f79d706b71c Binary files /dev/null and b/blockchains/smartchain/assets/0x12BeffdCEcb547640DC30e1495E4B9cdc21922b4/logo.png differ diff --git a/blockchains/smartchain/assets/0x1382A2Fd1b9F5607D956b68491babA00e21bE472/info.json b/blockchains/smartchain/assets/0x1382A2Fd1b9F5607D956b68491babA00e21bE472/info.json new file mode 100644 index 0000000000000..05795d23c9958 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..8483faef729a9 Binary files /dev/null and b/blockchains/smartchain/assets/0x1382A2Fd1b9F5607D956b68491babA00e21bE472/logo.png differ diff --git a/blockchains/smartchain/assets/0x13DfE44c7B461222e10597E517e4485Ff4766582/info.json b/blockchains/smartchain/assets/0x13DfE44c7B461222e10597E517e4485Ff4766582/info.json new file mode 100644 index 0000000000000..850c2f4d80de8 --- /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": "twitter", + "url": "https://twitter.com/MoonNation0" + }, + { + "name": "telegram", + "url": "https://t.me/moonnation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moon-nation-game/" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} diff --git a/blockchains/smartchain/assets/0x5941f87EB62737eC5EBbECab3e373c40fe40566B/logo.png b/blockchains/smartchain/assets/0x13DfE44c7B461222e10597E517e4485Ff4766582/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x5941f87EB62737eC5EBbECab3e373c40fe40566B/logo.png rename to blockchains/smartchain/assets/0x13DfE44c7B461222e10597E517e4485Ff4766582/logo.png diff --git a/blockchains/smartchain/assets/0x13b6A55662f6591f8B8408Af1C73B017E32eEdB8/info.json b/blockchains/smartchain/assets/0x13b6A55662f6591f8B8408Af1C73B017E32eEdB8/info.json new file mode 100644 index 0000000000000..ed67b27b50510 --- /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 0000000000000..cd42f7185e707 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 index d201d14bac341..2024d547851f6 100644 --- a/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json +++ b/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json @@ -1,9 +1,9 @@ { - "name": "Binance-Peg TrueUSD", + "name": "BNB pegged TrueUSD Old", "website": "https://www.trueusd.com/", - "description": "Binance-Peg 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.", + "description": "BNB pegged TrueUSD (TUSDP BEP20) is a token issued by Binance on Smart Chain; its price is pegged to TrueUSD (TUSD ERC20) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x14016e85a25aeb13065688cafb43044c2ef86784", - "symbol": "TUSD", + "symbol": "TUSDOLD", "type": "BEP20", "decimals": 18, "status": "active", diff --git a/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json new file mode 100644 index 0000000000000..9f82501ede979 --- /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": "twitter", + "url": "https://twitter.com/CyberConnectHQ" + }, + { + "name": "github", + "url": "https://github.com/cyberconnecthq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cyberconnect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png new file mode 100644 index 0000000000000..b26b7b808fb16 Binary files /dev/null and b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png differ diff --git a/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/info.json b/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/info.json index e1f9e0491f14d..ea520c96c5974 100644 --- a/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/info.json +++ b/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/info.json @@ -1,7 +1,7 @@ { "name": "Venus XVS", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/logo.png b/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/logo.png index a71269d8a1cde..f0eb4c153b907 100644 Binary files a/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/logo.png and b/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/logo.png differ diff --git a/blockchains/smartchain/assets/0x156ab3346823B651294766e23e6Cf87254d68962/info.json b/blockchains/smartchain/assets/0x156ab3346823B651294766e23e6Cf87254d68962/info.json new file mode 100644 index 0000000000000..0bf04a4de1ce8 --- /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 0000000000000..2a885151a2b72 Binary files /dev/null and b/blockchains/smartchain/assets/0x156ab3346823B651294766e23e6Cf87254d68962/logo.png differ diff --git a/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/info.json b/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/info.json new file mode 100644 index 0000000000000..89043ce65fa13 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/logo.png b/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/logo.png new file mode 100644 index 0000000000000..18719ccf8e714 Binary files /dev/null and b/blockchains/smartchain/assets/0x15Ea6B8481bF1C991aC3dC8e67279d31651a56FE/logo.png differ diff --git a/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/info.json b/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/info.json index b2b1bd2d19978..b3c6484cf3079 100644 --- a/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/info.json +++ b/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/info.json @@ -1,7 +1,7 @@ { "name": "Venus DOT", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0x1610bc33319e9398de5f57B33a5b184c806aD217", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/logo.png b/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/logo.png index 789179049c1b2..82fe761e7d828 100644 Binary files a/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/logo.png and b/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/logo.png differ diff --git a/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/info.json b/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/info.json new file mode 100644 index 0000000000000..04d74844bd8ad --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/logo.png b/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/logo.png rename to blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/logo.png diff --git a/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/info.json b/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/info.json index 83371f4cde291..0924c135e7cf4 100644 --- a/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/info.json +++ b/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Tezos Token", + "name": "BNB pegged Tezos Token", "website": "https://tezos.com", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/info.json b/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/info.json new file mode 100644 index 0000000000000..c035115f2f7eb --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7d878a83e07b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/logo.png differ diff --git a/blockchains/smartchain/assets/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0/info.json b/blockchains/smartchain/assets/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0/info.json new file mode 100644 index 0000000000000..7e1ea35ef198c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a6fcd2c5b9422 Binary files /dev/null and b/blockchains/smartchain/assets/0x17E65E6b9B166Fb8e7c59432F0db126711246BC0/logo.png differ diff --git a/blockchains/smartchain/assets/0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43/info.json b/blockchains/smartchain/assets/0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43/info.json new file mode 100644 index 0000000000000..92af865fdbbee --- /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": "twitter", + "url": "https://twitter.com/ibatofficial" + }, + { + "name": "telegram", + "url": "https://t.me/battleinfinity" + }, + { + "name": "facebook", + "url": "https://facebook.com/battleinfinityofficial" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43/logo.png b/blockchains/smartchain/assets/0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43/logo.png new file mode 100644 index 0000000000000..699f67b7197ae Binary files /dev/null and b/blockchains/smartchain/assets/0x19cd9B8e42d4EF62c3EA124110D5Cfd283CEaC43/logo.png differ diff --git a/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/info.json b/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/info.json index fc99630404739..f178c4888c1e0 100644 --- a/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/info.json +++ b/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Dai Token", + "name": "BNB pegged Dai Token", "website": "http://makerdao.com", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32/info.json b/blockchains/smartchain/assets/0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32/info.json new file mode 100644 index 0000000000000..9feb1bce72808 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32/logo.png b/blockchains/smartchain/assets/0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32/logo.png new file mode 100644 index 0000000000000..9c4f35aeb53b5 Binary files /dev/null and b/blockchains/smartchain/assets/0x1Ab7E7DEdA201E5Ea820F6C02C65Fce7ec6bEd32/logo.png differ diff --git a/blockchains/smartchain/assets/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb/info.json b/blockchains/smartchain/assets/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb/info.json index 298c66edd8d80..d39d17118457f 100644 --- a/blockchains/smartchain/assets/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb/info.json +++ b/blockchains/smartchain/assets/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Zcash Token", + "name": "BNB pegged Zcash Token", "website": "https://z.cash", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x1CE0c2827e2eF14D5C4f29a091d735A204794041/info.json b/blockchains/smartchain/assets/0x1CE0c2827e2eF14D5C4f29a091d735A204794041/info.json new file mode 100644 index 0000000000000..3b0ecc032b7f0 --- /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 0000000000000..99dc6ffcde6cb Binary files /dev/null and b/blockchains/smartchain/assets/0x1CE0c2827e2eF14D5C4f29a091d735A204794041/logo.png differ diff --git a/blockchains/smartchain/assets/0x1D1cB8997570e73949930c01Fe5796C88d7336c6/info.json b/blockchains/smartchain/assets/0x1D1cB8997570e73949930c01Fe5796C88d7336c6/info.json new file mode 100644 index 0000000000000..70a3d634c31b7 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..168e562e8d798 Binary files /dev/null and b/blockchains/smartchain/assets/0x1D1cB8997570e73949930c01Fe5796C88d7336c6/logo.png differ diff --git a/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/info.json b/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/info.json index a51f3cc770f2f..ec22470ba0b04 100644 --- a/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/info.json +++ b/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg XRP Token", + "name": "BNB pegged XRP Token", "website": "https://ripple.com/xrp", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x1F01Dc57C66C2f87D8eab9C625D335e9defE6912/info.json b/blockchains/smartchain/assets/0x1F01Dc57C66C2f87D8eab9C625D335e9defE6912/info.json index 93895f6c33a77..91cf60533e7b6 100644 --- a/blockchains/smartchain/assets/0x1F01Dc57C66C2f87D8eab9C625D335e9defE6912/info.json +++ b/blockchains/smartchain/assets/0x1F01Dc57C66C2f87D8eab9C625D335e9defE6912/info.json @@ -1,7 +1,7 @@ { "name": "Wrapped ZCore", "website": "https://zcore.network", - "description": "Wrapped ZCore (WZCR) is a tokenized version of ZCore (ZCR) that runs on the Binance Smart Chain (BSC) blockchain.", + "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", diff --git a/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/info.json b/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/info.json new file mode 100644 index 0000000000000..35490b4af02f1 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/logo.png b/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/logo.png new file mode 100644 index 0000000000000..0ac9abc4e35ea 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 0000000000000..61dffe4fbc2f5 --- /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": "twitter", + "url": "https://twitter.com/azworld_network" + }, + { + "name": "telegram", + "url": "https://t.me/azworld_global" + } + ], + "tags": [ + "Play To Earn", + "Social Networking" + ] +} diff --git a/blockchains/smartchain/assets/0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93/logo.png b/blockchains/smartchain/assets/0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93/logo.png new file mode 100644 index 0000000000000..0d1add908be24 Binary files /dev/null and b/blockchains/smartchain/assets/0x1F2Cfde19976A2bF0A250900f7aCe9c362908C93/logo.png differ diff --git a/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/info.json b/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/info.json new file mode 100644 index 0000000000000..d97480d68d2cd --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/logo.png b/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/logo.png new file mode 100644 index 0000000000000..9a7c8ce5053c1 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 index 2a2a6e2baefd6..2b2e0e2815e15 100644 --- a/blockchains/smartchain/assets/0x1F82a9b541FE4C322B5cd81DCB066620D57de35C/info.json +++ b/blockchains/smartchain/assets/0x1F82a9b541FE4C322B5cd81DCB066620D57de35C/info.json @@ -1,7 +1,7 @@ { "name": "Donkey King", "website": "https://www.donk.finance", - "description": "Donkey King finance (DONK) is a passive income generating, deflationary, DeFi token.", + "description": "Donkey King finance is a passive income generating, deflationary, DeFi token.", "explorer": "https://bscscan.com/token/0x1F82a9b541FE4C322B5cd81DCB066620D57de35C", "type": "BEP20", "symbol": "DONK", diff --git a/blockchains/smartchain/assets/0x1FDB2c3851D067502Ce2122bE80a41ea212949E2/info.json b/blockchains/smartchain/assets/0x1FDB2c3851D067502Ce2122bE80a41ea212949E2/info.json new file mode 100644 index 0000000000000..794de87021af6 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x1FDB2c3851D067502Ce2122bE80a41ea212949E2/logo.png b/blockchains/smartchain/assets/0x1FDB2c3851D067502Ce2122bE80a41ea212949E2/logo.png new file mode 100644 index 0000000000000..12c07a42b499f 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 index dc71b62993b83..d76f9e5851ba2 100644 --- a/blockchains/smartchain/assets/0x1FF2a2c2DEAdb17B6Ba9949393d1406f4c61BFC9/info.json +++ b/blockchains/smartchain/assets/0x1FF2a2c2DEAdb17B6Ba9949393d1406f4c61BFC9/info.json @@ -1,7 +1,7 @@ { "name": "VanCat Egg Token", "website": "https://www.vancategg.com", - "description": "VANCAT Egg Token (VCEGG) is a subtoken of VANCAT Token and VANCAT universe. Users must have VCEGG to mint Special NFTs", + "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", diff --git a/blockchains/smartchain/assets/0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63/info.json b/blockchains/smartchain/assets/0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63/info.json index e26dce8d6885f..87a5e5a992fab 100644 --- a/blockchains/smartchain/assets/0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63/info.json +++ b/blockchains/smartchain/assets/0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg NEAR Protocol", + "name": "BNB pegged NEAR Protocol", "website": "https://near.org", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55/info.json b/blockchains/smartchain/assets/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55/info.json new file mode 100644 index 0000000000000..021427bd3f736 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..0c451a30655ec Binary files /dev/null and b/blockchains/smartchain/assets/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55/logo.png differ diff --git a/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/info.json b/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/info.json new file mode 100644 index 0000000000000..3146620f5b2bc --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/logo.png b/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/logo.png new file mode 100644 index 0000000000000..ecd893efed723 Binary files /dev/null and b/blockchains/smartchain/assets/0x1d6Cbdc6b29C6afBae65444a1f65bA9252b8CA83/logo.png differ diff --git a/blockchains/smartchain/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json b/blockchains/smartchain/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/info.json new file mode 100644 index 0000000000000..6febe0390cb35 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..2d14be7ba54d2 Binary files /dev/null and b/blockchains/smartchain/assets/0x1e987DF68CC13d271e621ec82E050A1BbD62c180/logo.png differ diff --git a/blockchains/smartchain/assets/0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163/info.json b/blockchains/smartchain/assets/0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163/info.json index 44f89bf95c2e1..9a0467232cad9 100644 --- a/blockchains/smartchain/assets/0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163/info.json +++ b/blockchains/smartchain/assets/0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163/info.json @@ -1,9 +1,9 @@ { - "name": "Binance-Peg Celer Token", + "name": "BNB pegged Celer Token", "symbol": "CELR", "type": "BEP20", "decimals": 18, - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x1fC9004eC7E5722891f5f38baE7678efCB11d34D/info.json b/blockchains/smartchain/assets/0x1fC9004eC7E5722891f5f38baE7678efCB11d34D/info.json index 3871bc965bbe7..35d27d540dbc6 100644 --- a/blockchains/smartchain/assets/0x1fC9004eC7E5722891f5f38baE7678efCB11d34D/info.json +++ b/blockchains/smartchain/assets/0x1fC9004eC7E5722891f5f38baE7678efCB11d34D/info.json @@ -1,5 +1,5 @@ { - "name": "Binance-Peg APENFT Token", + "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", diff --git a/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/info.json b/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/info.json new file mode 100644 index 0000000000000..d61bab1cd2e73 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/logo.png b/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/logo.png new file mode 100644 index 0000000000000..dab4c3c779c7d Binary files /dev/null and b/blockchains/smartchain/assets/0x2098fEf7eEae592038f4f3C4b008515fed0d5886/logo.png differ diff --git a/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/info.json b/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/info.json new file mode 100644 index 0000000000000..db52abd07cb84 --- /dev/null +++ b/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/info.json @@ -0,0 +1,34 @@ +{ + "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": "twitter", + "url": "https://twitter.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" + ] +} + diff --git a/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/logo.png b/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/logo.png new file mode 100644 index 0000000000000..4ab1ef9ebc608 Binary files /dev/null and b/blockchains/smartchain/assets/0x20eE7B720f4E4c4FFcB00C4065cdae55271aECCa/logo.png differ diff --git a/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/info.json b/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/info.json index dbdc8fc092a2b..911a1d5df69a8 100644 --- a/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/info.json +++ b/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Ethereum", + "name": "BNB pegged Ethereum", "website": "https://ethereum.org/", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/info.json b/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/info.json new file mode 100644 index 0000000000000..4dcdd2be844a7 --- /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": "twitter", + "url": "https://twitter.com/Bitconey" + }, + { + "name": "whitepaper", + "url": "https://bitconeytoken.com/BitConey_Whitepaper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/profile.php?id=100089680055861" + } + ] +} diff --git a/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/logo.png b/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/logo.png new file mode 100644 index 0000000000000..bd29d5b410f7f Binary files /dev/null and b/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/logo.png differ diff --git a/blockchains/smartchain/assets/0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89/info.json b/blockchains/smartchain/assets/0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89/info.json new file mode 100644 index 0000000000000..65fe4797ef90a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..c6b2459cd7c67 Binary files /dev/null and b/blockchains/smartchain/assets/0x2223bF1D7c19EF7C06DAB88938EC7B85952cCd89/logo.png differ diff --git a/blockchains/smartchain/assets/0x22dE16487955AE1f842fa0C0bFf6083a7fDEfeDd/info.json b/blockchains/smartchain/assets/0x22dE16487955AE1f842fa0C0bFf6083a7fDEfeDd/info.json new file mode 100644 index 0000000000000..6a39d2b11299f --- /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": "twitter", + "url": "https://twitter.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/0x23383e18dEedF460EbB918545C8b0588038B7998/info.json b/blockchains/smartchain/assets/0x23383e18dEedF460EbB918545C8b0588038B7998/info.json new file mode 100644 index 0000000000000..03df265ff1db6 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..e5b7e0fa38114 Binary files /dev/null and b/blockchains/smartchain/assets/0x23383e18dEedF460EbB918545C8b0588038B7998/logo.png differ diff --git a/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/info.json b/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/info.json new file mode 100644 index 0000000000000..b0514fb2aa9a0 --- /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": "twitter", + "url": "https://twitter.com/MinesOfDalarnia" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mines-of-dalarnia/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/logo.png b/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/logo.png new file mode 100644 index 0000000000000..c8e37a57ef89c Binary files /dev/null and b/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/logo.png differ diff --git a/blockchains/smartchain/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json b/blockchains/smartchain/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json new file mode 100644 index 0000000000000..bf5ade8df097c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..4272c382f1522 Binary files /dev/null and b/blockchains/smartchain/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/logo.png differ diff --git a/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/info.json b/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/info.json new file mode 100644 index 0000000000000..a420810cce621 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..69118232c68bf Binary files /dev/null and b/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/logo.png differ diff --git a/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json b/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json new file mode 100644 index 0000000000000..c43923242504f --- /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": "twitter", + "url": "https://twitter.com/AlveyChain" + }, + { + "name": "github", + "url": "https://github.com/AlveyCoin" + }, + { + "name": "telegram", + "url": "https://t.me/AlveyChain" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png b/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png new file mode 100644 index 0000000000000..a101ec3060214 Binary files /dev/null and b/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png differ diff --git a/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/info.json b/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/info.json new file mode 100644 index 0000000000000..af2484fe4f4d3 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/logo.png b/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/logo.png new file mode 100644 index 0000000000000..35c8d7a49a8de Binary files /dev/null and b/blockchains/smartchain/assets/0x2582d7Afc1bF4496bcb87b6C2a72D24DB279dD0e/logo.png differ diff --git a/blockchains/smartchain/assets/0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8/info.json b/blockchains/smartchain/assets/0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8/info.json new file mode 100644 index 0000000000000..e29cee954d57d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..2e4e2b57b7959 Binary files /dev/null and b/blockchains/smartchain/assets/0x26433c8127d9b4e9B71Eaa15111DF99Ea2EeB2f8/logo.png differ diff --git a/blockchains/smartchain/assets/0x26619FA1d4c957C58096bBbeCa6588dCFB12E109/info.json b/blockchains/smartchain/assets/0x26619FA1d4c957C58096bBbeCa6588dCFB12E109/info.json new file mode 100644 index 0000000000000..c1b8259f41cf7 --- /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 0000000000000..2f920ca688c27 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 0000000000000..b220de8a7234a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..78e7c338993c7 Binary files /dev/null and b/blockchains/smartchain/assets/0x26734ADd0650719eA29087fe5CC0AaB81b4f237D/logo.png differ diff --git a/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/info.json b/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/info.json new file mode 100644 index 0000000000000..6a24098a89529 --- /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": "twitter", + "url": "https://twitter.com/yo_exchange" + }, + { + "name": "telegram", + "url": "https://t.me/yoexchange" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/logo.png b/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/logo.png new file mode 100644 index 0000000000000..c11bf96e67591 Binary files /dev/null and b/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/logo.png differ diff --git a/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/info.json b/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/info.json index a11efb73cbb41..d806c55e93a8e 100644 --- a/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/info.json +++ b/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/info.json @@ -1,7 +1,7 @@ { "name": "Venus AAVE", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", "links": [ { "name": "twitter", diff --git a/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/logo.png b/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/logo.png index 0f28979f05ec8..a741cf6f616b2 100644 Binary files a/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/logo.png and b/blockchains/smartchain/assets/0x26DA28954763B92139ED49283625ceCAf52C6f94/logo.png differ diff --git a/blockchains/smartchain/assets/0x27B2D695eF01d10EE96582a23db201B0Aa338639/info.json b/blockchains/smartchain/assets/0x27B2D695eF01d10EE96582a23db201B0Aa338639/info.json new file mode 100644 index 0000000000000..5b1b56360d102 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..91b12dc4fafb3 Binary files /dev/null and b/blockchains/smartchain/assets/0x27B2D695eF01d10EE96582a23db201B0Aa338639/logo.png differ diff --git a/blockchains/smartchain/assets/0x27a339d9B59b21390d7209b78a839868E319301B/info.json b/blockchains/smartchain/assets/0x27a339d9B59b21390d7209b78a839868E319301B/info.json new file mode 100644 index 0000000000000..c8785f85f2454 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..36a9ba45efe0b Binary files /dev/null and b/blockchains/smartchain/assets/0x27a339d9B59b21390d7209b78a839868E319301B/logo.png differ diff --git a/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/info.json b/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/info.json index 3f491e72c64b8..bb85445cc9f82 100644 --- a/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/info.json +++ b/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg SHIBA INU", + "name": "BNB pegged SHIBA INU", "website": "https://shibatoken.com/", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x28B9aed756De31B6b362aA0f23211D13093EBb79/info.json b/blockchains/smartchain/assets/0x28B9aed756De31B6b362aA0f23211D13093EBb79/info.json new file mode 100644 index 0000000000000..8f9a2ecea16e4 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x28B9aed756De31B6b362aA0f23211D13093EBb79/logo.png b/blockchains/smartchain/assets/0x28B9aed756De31B6b362aA0f23211D13093EBb79/logo.png new file mode 100644 index 0000000000000..6dbe4a13a5080 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 0000000000000..573194224cfb3 --- /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": "twitter", + "url": "https://twitter.com/gamingshibabsc" + }, + { + "name": "telegram", + "url": "https://t.me/gamingshibabsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamingshiba/" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/logo.png b/blockchains/smartchain/assets/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/logo.png new file mode 100644 index 0000000000000..90346205832d6 Binary files /dev/null and b/blockchains/smartchain/assets/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/logo.png differ diff --git a/blockchains/smartchain/assets/0x29745314B4D294B7C77cDB411B8AAa95923aae38/info.json b/blockchains/smartchain/assets/0x29745314B4D294B7C77cDB411B8AAa95923aae38/info.json new file mode 100644 index 0000000000000..ceafb1a31927d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..e599a74ea6096 Binary files /dev/null and b/blockchains/smartchain/assets/0x29745314B4D294B7C77cDB411B8AAa95923aae38/logo.png differ diff --git a/blockchains/smartchain/assets/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021/info.json b/blockchains/smartchain/assets/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021/info.json new file mode 100644 index 0000000000000..d5645172add0e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d640ae2535299 Binary files /dev/null and b/blockchains/smartchain/assets/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021/logo.png differ diff --git a/blockchains/smartchain/assets/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d/info.json b/blockchains/smartchain/assets/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d/info.json index 3685274aa21f2..31942225c14eb 100644 --- a/blockchains/smartchain/assets/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d/info.json +++ b/blockchains/smartchain/assets/0x2A1d286ed5edAD78BeFD6E0d8BEb38791e8cD69d/info.json @@ -1,5 +1,5 @@ { - "name": "CLIMB TOKEN . FINANCE", + "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", diff --git a/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/info.json b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/info.json new file mode 100644 index 0000000000000..bd96d89c46f0d --- /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": "twitter", + "url": "https://twitter.com/xai_tech" + }, + { + "name": "github", + "url": "https://github.com/xai-cx" + }, + { + "name": "telegram", + "url": "https://t.me/xai_english" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x2a45a892877ef383c5fc93a5206546c97496da9e#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/x-ai-cx/" + }, + { + "name": "docs", + "url": "https://docs.xai.cx" + }, + { + "name": "whitepaper", + "url": "https://docs.xai.cx" + }, + { + "name": "medium", + "url": "https://medium.com/@XAI_tech" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/logo.png b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/logo.png new file mode 100644 index 0000000000000..31887729ff3aa Binary files /dev/null and b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/logo.png differ diff --git a/blockchains/smartchain/assets/0x2A48eCe377b87ce941406657B9278b4459595E06/info.json b/blockchains/smartchain/assets/0x2A48eCe377b87ce941406657B9278b4459595E06/info.json new file mode 100644 index 0000000000000..90331b5d40b4a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a8269e8f341f1 Binary files /dev/null and b/blockchains/smartchain/assets/0x2A48eCe377b87ce941406657B9278b4459595E06/logo.png differ diff --git a/blockchains/smartchain/assets/0x2A9718defF471f3Bb91FA0ECEAB14154F150a385/info.json b/blockchains/smartchain/assets/0x2A9718defF471f3Bb91FA0ECEAB14154F150a385/info.json index d745c5199554d..d3c492997a799 100644 --- a/blockchains/smartchain/assets/0x2A9718defF471f3Bb91FA0ECEAB14154F150a385/info.json +++ b/blockchains/smartchain/assets/0x2A9718defF471f3Bb91FA0ECEAB14154F150a385/info.json @@ -1,7 +1,7 @@ { "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. ", + "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", diff --git a/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/info.json b/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/info.json new file mode 100644 index 0000000000000..fdd058211c816 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/logo.png b/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/logo.png new file mode 100644 index 0000000000000..7e564717e9e60 Binary files /dev/null and b/blockchains/smartchain/assets/0x2AA504586d6CaB3C59Fa629f74c586d78b93A025/logo.png differ diff --git a/blockchains/smartchain/assets/0x2B2fF80c489dad868318a19FD6F258889a026da5/logo.png b/blockchains/smartchain/assets/0x2B2fF80c489dad868318a19FD6F258889a026da5/logo.png index 95128766d07bb..cc4f8d1cb56e4 100644 Binary files a/blockchains/smartchain/assets/0x2B2fF80c489dad868318a19FD6F258889a026da5/logo.png and b/blockchains/smartchain/assets/0x2B2fF80c489dad868318a19FD6F258889a026da5/logo.png differ diff --git a/blockchains/smartchain/assets/0x2B90E061a517dB2BbD7E39Ef7F733Fd234B494CA/info.json b/blockchains/smartchain/assets/0x2B90E061a517dB2BbD7E39Ef7F733Fd234B494CA/info.json new file mode 100644 index 0000000000000..2fa3d40c830b5 --- /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 0000000000000..9e63d73503a5d 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 index e816987fe6b54..64a818e70ba04 100644 --- a/blockchains/smartchain/assets/0x2BA8c3066F36B998bC74CE8DcE260Fb5D2ba6bCc/info.json +++ b/blockchains/smartchain/assets/0x2BA8c3066F36B998bC74CE8DcE260Fb5D2ba6bCc/info.json @@ -1,7 +1,7 @@ { "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. ", + "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", diff --git a/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/info.json b/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/info.json new file mode 100644 index 0000000000000..a0c398daaeb45 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..dadbd922b7403 Binary files /dev/null and b/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/logo.png differ diff --git a/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/info.json b/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/info.json new file mode 100644 index 0000000000000..c9f6bf4895f39 --- /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": "twitter", + "url": "https://twitter.com/DemonEcosystem" + } + ], + "tags": [ + "defi", + "nft", + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/logo.png b/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/logo.png new file mode 100644 index 0000000000000..043b4802dd646 Binary files /dev/null and b/blockchains/smartchain/assets/0x2E51b6f3181b342d098B1a939Ae1944ED6768fd4/logo.png differ diff --git a/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/info.json b/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/info.json new file mode 100644 index 0000000000000..4aa141c63a079 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/logo.png b/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/logo.png new file mode 100644 index 0000000000000..7838407949ced Binary files /dev/null and b/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/logo.png differ diff --git a/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/info.json b/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/info.json new file mode 100644 index 0000000000000..fe5b87b7d8b2e --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/logo.png b/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/logo.png new file mode 100644 index 0000000000000..9f29b252aaae8 Binary files /dev/null and b/blockchains/smartchain/assets/0x2ad7F18DcFA131e33411770A9c6c4fe49b187Bc2/logo.png differ diff --git a/blockchains/smartchain/assets/0x2bF4BE7C4520C41d012EB09a034179E03b898534/info.json b/blockchains/smartchain/assets/0x2bF4BE7C4520C41d012EB09a034179E03b898534/info.json new file mode 100644 index 0000000000000..c400938d67238 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..b2ea075b29bc3 Binary files /dev/null and b/blockchains/smartchain/assets/0x2bF4BE7C4520C41d012EB09a034179E03b898534/logo.png differ diff --git a/blockchains/smartchain/assets/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED/info.json b/blockchains/smartchain/assets/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED/info.json index ecc2f18e977e2..34587fcf22177 100644 --- a/blockchains/smartchain/assets/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED/info.json +++ b/blockchains/smartchain/assets/0x2cA25319E2E63719F87221D8bF3646F8F5dE5DED/info.json @@ -4,7 +4,7 @@ "symbol": "EGT", "decimals": 9, "website": "https://www.elongoat.io", - "description": "Elon GOAT Token ($EGT) is building a biblical sized monument on the back of a semi-trailer dedicated to the Godfather of Crypto, Elon Musk.", + "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", diff --git a/blockchains/smartchain/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json b/blockchains/smartchain/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json new file mode 100644 index 0000000000000..d00ad5017bbbc --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a6a3c27553a0e Binary files /dev/null and b/blockchains/smartchain/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/logo.png differ diff --git a/blockchains/smartchain/assets/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234/info.json b/blockchains/smartchain/assets/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234/info.json new file mode 100644 index 0000000000000..2895c20c450ae --- /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": "twitter", + "url": "https://twitter.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 0000000000000..385f9f44e8436 Binary files /dev/null and b/blockchains/smartchain/assets/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234/logo.png differ diff --git a/blockchains/smartchain/assets/0x2f0c6e147974BfbF7Da557b88643D74C324053A2/info.json b/blockchains/smartchain/assets/0x2f0c6e147974BfbF7Da557b88643D74C324053A2/info.json new file mode 100644 index 0000000000000..28e9d8323b2b0 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..8643b3496077e 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 0000000000000..0dd1131dc81b8 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x2f499c6DA2C84063BB7e0CB1C478687210cDB615/logo.png b/blockchains/smartchain/assets/0x2f499c6DA2C84063BB7e0CB1C478687210cDB615/logo.png new file mode 100644 index 0000000000000..46dead1f0190b Binary files /dev/null and b/blockchains/smartchain/assets/0x2f499c6DA2C84063BB7e0CB1C478687210cDB615/logo.png differ diff --git a/blockchains/smartchain/assets/0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2/info.json b/blockchains/smartchain/assets/0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2/info.json new file mode 100644 index 0000000000000..48d300b70110a --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2/logo.png b/blockchains/smartchain/assets/0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2/logo.png new file mode 100644 index 0000000000000..ad16c843c62cc 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 index 87dbaa36a577f..322548ab8eb64 100644 --- a/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/info.json +++ b/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/info.json @@ -1,7 +1,7 @@ { "name": "Venus SXP", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/logo.png b/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/logo.png index 0b5755e13a74e..b54b91ba8dc21 100644 Binary files a/blockchains/smartchain/assets/0x2fF3d0F6990a40261c66E1ff2017aCBc282EB6d0/logo.png 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 0000000000000..085f7074cc6ac --- /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": "twitter", + "url": "https://twitter.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 0000000000000..ca65702c9121e 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 0000000000000..0a9856d2c4f8a --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x2fd6c9B869Dea106730269E13113361b684f843a/logo.png b/blockchains/smartchain/assets/0x2fd6c9B869Dea106730269E13113361b684f843a/logo.png new file mode 100644 index 0000000000000..65cb831adf437 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 0000000000000..ae820e2a51a2c --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1/logo.png b/blockchains/smartchain/assets/0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1/logo.png new file mode 100644 index 0000000000000..8fa982f7a68ef Binary files /dev/null and b/blockchains/smartchain/assets/0x3019BF2a2eF8040C242C9a4c5c4BD4C81678b2A1/logo.png differ diff --git a/blockchains/smartchain/assets/0x31C78f583ed0288D67b2b80Dc5C443Bc3b15C661/info.json b/blockchains/smartchain/assets/0x31C78f583ed0288D67b2b80Dc5C443Bc3b15C661/info.json new file mode 100644 index 0000000000000..07d8c25230d95 --- /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 0000000000000..331a781cc5264 Binary files /dev/null and b/blockchains/smartchain/assets/0x31C78f583ed0288D67b2b80Dc5C443Bc3b15C661/logo.png differ diff --git a/blockchains/smartchain/assets/0x31d3778A7Ac0d98c4aAA347D8b6EaF7977448341/info.json b/blockchains/smartchain/assets/0x31d3778A7Ac0d98c4aAA347D8b6EaF7977448341/info.json index cc4e92eed3e29..73456d3b26e0d 100644 --- a/blockchains/smartchain/assets/0x31d3778A7Ac0d98c4aAA347D8b6EaF7977448341/info.json +++ b/blockchains/smartchain/assets/0x31d3778A7Ac0d98c4aAA347D8b6EaF7977448341/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0x31d3778A7Ac0d98c4aAA347D8b6EaF7977448341", "links": [ { diff --git a/blockchains/smartchain/assets/0x31d3778A7Ac0d98c4aAA347D8b6EaF7977448341/logo.png b/blockchains/smartchain/assets/0x31d3778A7Ac0d98c4aAA347D8b6EaF7977448341/logo.png deleted file mode 100644 index 5a62f521e27a6..0000000000000 Binary files a/blockchains/smartchain/assets/0x31d3778A7Ac0d98c4aAA347D8b6EaF7977448341/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/info.json b/blockchains/smartchain/assets/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/info.json index 740791609f5bd..a58f0e8f04c43 100644 --- a/blockchains/smartchain/assets/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/info.json +++ b/blockchains/smartchain/assets/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F", "links": [ { diff --git a/blockchains/smartchain/assets/0x3244478Da3F518B33b99D5929Dd0bC3396C56981/info.json b/blockchains/smartchain/assets/0x3244478Da3F518B33b99D5929Dd0bC3396C56981/info.json new file mode 100644 index 0000000000000..07c490b6c33a4 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..40b2a225dc3b0 Binary files /dev/null and b/blockchains/smartchain/assets/0x3244478Da3F518B33b99D5929Dd0bC3396C56981/logo.png differ diff --git a/blockchains/smartchain/assets/0x333FD139cAeF6Aa31056cC905987b77B1044d259/info.json b/blockchains/smartchain/assets/0x333FD139cAeF6Aa31056cC905987b77B1044d259/info.json new file mode 100644 index 0000000000000..eb1312920dba4 --- /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": "twitter", + "url": "https://twitter.com/TheWeb3Project" + }, + { + "name": "telegram", + "url": "https://t.me/TheWeb3Project" + }, + { + "name": "docs", + "url": "https://docs.theweb3project.com" + } + ], + "tags": [ + "staking" + ] +} diff --git a/blockchains/smartchain/assets/0x333FD139cAeF6Aa31056cC905987b77B1044d259/logo.png b/blockchains/smartchain/assets/0x333FD139cAeF6Aa31056cC905987b77B1044d259/logo.png new file mode 100644 index 0000000000000..b98b579417495 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 index e1f9c463a54a6..aee9019f8304f 100644 --- a/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/info.json +++ b/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/info.json @@ -1,7 +1,7 @@ { "name": "Venus DAI", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/logo.png b/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/logo.png index c127c12e8b22b..c2c3bc4d8266f 100644 Binary files a/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/logo.png and b/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/logo.png differ diff --git a/blockchains/smartchain/assets/0x3413a030EF81a3dD5a302F4B4D11d911e12ed337/info.json b/blockchains/smartchain/assets/0x3413a030EF81a3dD5a302F4B4D11d911e12ed337/info.json new file mode 100644 index 0000000000000..5cc7672e6b38a --- /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 0000000000000..6c711d8a55837 Binary files /dev/null and b/blockchains/smartchain/assets/0x3413a030EF81a3dD5a302F4B4D11d911e12ed337/logo.png differ diff --git a/blockchains/smartchain/assets/0x3524fd7488fdb1F4723BBc22C9cbD1Bf89f46E3B/info.json b/blockchains/smartchain/assets/0x3524fd7488fdb1F4723BBc22C9cbD1Bf89f46E3B/info.json new file mode 100644 index 0000000000000..bb298483d5ff8 --- /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 0000000000000..1057abafc2a9b Binary files /dev/null and b/blockchains/smartchain/assets/0x3524fd7488fdb1F4723BBc22C9cbD1Bf89f46E3B/logo.png differ diff --git a/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/info.json b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/info.json new file mode 100644 index 0000000000000..a11876fd04f13 --- /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": "twitter", + "url": "https://twitter.com/CapitalRock_AG" + }, + { + "name": "telegram_news", + "url": "https://t.me/+WgsDY3hPuBgxY2Q6" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/capitalrock/" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/logo.png b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/logo.png new file mode 100644 index 0000000000000..fd777a3cfe819 Binary files /dev/null and b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/logo.png differ diff --git a/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/info.json b/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/info.json new file mode 100644 index 0000000000000..cb54aefee9e22 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..cf93b2425034b 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 0000000000000..fd1c45161c4da --- /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": "active", + "id": "0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/logo.png b/blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/logo.png new file mode 100644 index 0000000000000..239b9fff819ef Binary files /dev/null and b/blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/logo.png differ diff --git a/blockchains/smartchain/assets/0x361C60b7c2828fCAb80988d00D1D542c83387b50/info.json b/blockchains/smartchain/assets/0x361C60b7c2828fCAb80988d00D1D542c83387b50/info.json new file mode 100644 index 0000000000000..2e5ea989c3999 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..ee8b25edc5483 Binary files /dev/null and b/blockchains/smartchain/assets/0x361C60b7c2828fCAb80988d00D1D542c83387b50/logo.png differ diff --git a/blockchains/smartchain/assets/0x36C7B164F85D6F775cD128966D5819c7d36FEfF3/info.json b/blockchains/smartchain/assets/0x36C7B164F85D6F775cD128966D5819c7d36FEfF3/info.json new file mode 100644 index 0000000000000..3a9c80c148ed8 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x36C7B164F85D6F775cD128966D5819c7d36FEfF3/logo.png b/blockchains/smartchain/assets/0x36C7B164F85D6F775cD128966D5819c7d36FEfF3/logo.png new file mode 100644 index 0000000000000..b5a8c91612f82 Binary files /dev/null and b/blockchains/smartchain/assets/0x36C7B164F85D6F775cD128966D5819c7d36FEfF3/logo.png differ diff --git a/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json b/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json new file mode 100644 index 0000000000000..2af40dc5195c8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7cf47068565d6 Binary files /dev/null and b/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/logo.png differ diff --git a/blockchains/smartchain/assets/0x379f29911956052899E09233A3914f4e1eca075C/info.json b/blockchains/smartchain/assets/0x379f29911956052899E09233A3914f4e1eca075C/info.json new file mode 100644 index 0000000000000..9fe2db9144a2d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d50d96d35ad47 Binary files /dev/null and b/blockchains/smartchain/assets/0x379f29911956052899E09233A3914f4e1eca075C/logo.png differ diff --git a/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/info.json b/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/info.json index 7a70cf2dd5ed5..e27d4e0dde960 100644 --- a/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/info.json +++ b/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/info.json @@ -1,7 +1,7 @@ { "name": "Venus ADA", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0x37C28DE42bA3d22217995D146FC684B2326Ede64", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/logo.png b/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/logo.png index a8cfa32263e56..e40020df3b414 100644 Binary files a/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/logo.png and b/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/logo.png differ diff --git a/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/info.json b/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/info.json new file mode 100644 index 0000000000000..622e709dd5f4e --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/logo.png b/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/logo.png new file mode 100644 index 0000000000000..5d32cf6de25a2 Binary files /dev/null and b/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/logo.png differ diff --git a/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/info.json b/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/info.json new file mode 100644 index 0000000000000..a290332d0951d --- /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": "twitter", + "url": "https://twitter.com/leslarmetaverse" + }, + { + "name": "telegram", + "url": "https://t.me/leslarmetaverse_global" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/leslarverse/" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} diff --git a/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/logo.png b/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/logo.png new file mode 100644 index 0000000000000..b91aa2cbc8725 Binary files /dev/null and b/blockchains/smartchain/assets/0x39bca4d597062378b5669CD31a3bBFECCDd36B3c/logo.png differ diff --git a/blockchains/smartchain/assets/0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D/info.json b/blockchains/smartchain/assets/0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D/info.json new file mode 100644 index 0000000000000..24ff5b71dea30 --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/smartchain/assets/0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D/logo.png b/blockchains/smartchain/assets/0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D/logo.png new file mode 100644 index 0000000000000..7e9696390ee16 Binary files /dev/null and b/blockchains/smartchain/assets/0x3A806A3315E35b3F5F46111ADb6E2BAF4B14A70D/logo.png differ diff --git a/blockchains/smartchain/assets/0x3B3691d4C3EC75660f203F41adC6296a494404d0/info.json b/blockchains/smartchain/assets/0x3B3691d4C3EC75660f203F41adC6296a494404d0/info.json index ca239cf758f8f..25ff08c1bb3e2 100644 --- a/blockchains/smartchain/assets/0x3B3691d4C3EC75660f203F41adC6296a494404d0/info.json +++ b/blockchains/smartchain/assets/0x3B3691d4C3EC75660f203F41adC6296a494404d0/info.json @@ -6,7 +6,7 @@ "website": "https://www.catcoincrypto.me/", "description": "Catcoin is the community driven project to connect cat lovers worldwide", "explorer": "https://bscscan.com/token/0x3B3691d4C3EC75660f203F41adC6296a494404d0", - "status": "active", + "status": "abandoned", "id": "0x3B3691d4C3EC75660f203F41adC6296a494404d0", "links": [ { @@ -29,4 +29,4 @@ "tags": [ "deflationary" ] -} +} diff --git a/blockchains/smartchain/assets/0x3B3691d4C3EC75660f203F41adC6296a494404d0/logo.png b/blockchains/smartchain/assets/0x3B3691d4C3EC75660f203F41adC6296a494404d0/logo.png deleted file mode 100644 index 8df092c453661..0000000000000 Binary files a/blockchains/smartchain/assets/0x3B3691d4C3EC75660f203F41adC6296a494404d0/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222/info.json b/blockchains/smartchain/assets/0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222/info.json new file mode 100644 index 0000000000000..e3613d6471180 --- /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": "twitter", + "url": "https://twitter.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/0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8/logo.png b/blockchains/smartchain/assets/0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8/logo.png rename to blockchains/smartchain/assets/0x3C0b6FCB2F62990f477d9AF611e4Da3fF1F08222/logo.png diff --git a/blockchains/smartchain/assets/0x3C70260eEe0a2bFc4b375feB810325801f289fBd/info.json b/blockchains/smartchain/assets/0x3C70260eEe0a2bFc4b375feB810325801f289fBd/info.json index d6c09b8c9bef3..943844bf881a4 100644 --- a/blockchains/smartchain/assets/0x3C70260eEe0a2bFc4b375feB810325801f289fBd/info.json +++ b/blockchains/smartchain/assets/0x3C70260eEe0a2bFc4b375feB810325801f289fBd/info.json @@ -1,7 +1,7 @@ { "name": "Omni Consumer Protocols", "website": "https://OCP.finance", - "description": "Omni Consumer Protocols (OCP) 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", + "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", diff --git a/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/info.json b/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/info.json new file mode 100644 index 0000000000000..fa17de841041d --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/logo.png b/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/logo.png new file mode 100644 index 0000000000000..b9f34ca45f759 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 0000000000000..6932595fb998c --- /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": "twitter", + "url": "https://twitter.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/0x3Da67Ae8fcF0B733d799f65B2695d650eA11112A/info.json b/blockchains/smartchain/assets/0x3Da67Ae8fcF0B733d799f65B2695d650eA11112A/info.json index 79a4302ae0859..7a79003428357 100644 --- a/blockchains/smartchain/assets/0x3Da67Ae8fcF0B733d799f65B2695d650eA11112A/info.json +++ b/blockchains/smartchain/assets/0x3Da67Ae8fcF0B733d799f65B2695d650eA11112A/info.json @@ -1,7 +1,7 @@ { "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. ", + "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", diff --git a/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/info.json b/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/info.json index 94bab61d8c520..460f9830a21d0 100644 --- a/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/info.json +++ b/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Cardano Token", + "name": "BNB pegged Cardano Token", "website": "https://cardano.org", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64/info.json b/blockchains/smartchain/assets/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64/info.json new file mode 100644 index 0000000000000..2436e3eafe3db --- /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": "twitter", + "url": "https://twitter.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 0000000000000..76c24936955d2 Binary files /dev/null and b/blockchains/smartchain/assets/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64/logo.png differ diff --git a/blockchains/smartchain/assets/0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335/info.json b/blockchains/smartchain/assets/0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335/info.json new file mode 100644 index 0000000000000..c90f2b962606f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335/logo.png b/blockchains/smartchain/assets/0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335/logo.png new file mode 100644 index 0000000000000..3809acfdd56b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x3b76374Cc2DfE28Cc373DcA6d5024791B2586335/logo.png differ diff --git a/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json b/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json new file mode 100644 index 0000000000000..b0c7158f5d2eb --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/logo.png b/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/logo.png new file mode 100644 index 0000000000000..5a25dafbd0dd5 Binary files /dev/null and b/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/logo.png differ diff --git a/blockchains/smartchain/assets/0x3d4350cD54aeF9f9b2C29435e0fa809957B3F30a/info.json b/blockchains/smartchain/assets/0x3d4350cD54aeF9f9b2C29435e0fa809957B3F30a/info.json new file mode 100644 index 0000000000000..e31b24d7ec09d --- /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 0000000000000..e3110cce3bde2 Binary files /dev/null and b/blockchains/smartchain/assets/0x3d4350cD54aeF9f9b2C29435e0fa809957B3F30a/logo.png differ diff --git a/blockchains/smartchain/assets/0x3d6545b08693daE087E957cb1180ee38B9e3c25E/info.json b/blockchains/smartchain/assets/0x3d6545b08693daE087E957cb1180ee38B9e3c25E/info.json index d683e91a7b5dd..81094df71d3dd 100644 --- a/blockchains/smartchain/assets/0x3d6545b08693daE087E957cb1180ee38B9e3c25E/info.json +++ b/blockchains/smartchain/assets/0x3d6545b08693daE087E957cb1180ee38B9e3c25E/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Ethereum Classic", + "name": "BNB pegged Ethereum Classic", "website": "https://ethereumclassic.org", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x3da69D719AD12EEAb2b7031697E84c2c62299C13/info.json b/blockchains/smartchain/assets/0x3da69D719AD12EEAb2b7031697E84c2c62299C13/info.json index 6953033689157..d449deacf0539 100644 --- a/blockchains/smartchain/assets/0x3da69D719AD12EEAb2b7031697E84c2c62299C13/info.json +++ b/blockchains/smartchain/assets/0x3da69D719AD12EEAb2b7031697E84c2c62299C13/info.json @@ -1,7 +1,7 @@ { "name": "Baby KShark", "website": "https://kshark.io", - "description": "Baby Kshark Token ($BKS) 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.", + "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", diff --git a/blockchains/smartchain/assets/0x3dcB18569425930954feb191122e574b87F66abd/info.json b/blockchains/smartchain/assets/0x3dcB18569425930954feb191122e574b87F66abd/info.json new file mode 100644 index 0000000000000..85a22d4ddb4e0 --- /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 0000000000000..89db97dd2ba01 Binary files /dev/null and b/blockchains/smartchain/assets/0x3dcB18569425930954feb191122e574b87F66abd/logo.png differ diff --git a/blockchains/smartchain/assets/0x3e24BBb2c9a0f2fAEcFDBDCa20BBa6F35b73C4CB/info.json b/blockchains/smartchain/assets/0x3e24BBb2c9a0f2fAEcFDBDCa20BBa6F35b73C4CB/info.json new file mode 100644 index 0000000000000..4cbea1f7aec56 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..aa998bcfd5684 Binary files /dev/null and b/blockchains/smartchain/assets/0x3e24BBb2c9a0f2fAEcFDBDCa20BBa6F35b73C4CB/logo.png differ diff --git a/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/info.json b/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/info.json new file mode 100644 index 0000000000000..bc58eb3d175e1 --- /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": "twitter", + "url": "https://twitter.com/BelecXToken" + }, + { + "name": "telegram", + "url": "https://t.me/BelecXChat" + } + ], + "tags": [ + "gamefi", + "defi", + "nft" + ] +} diff --git a/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/logo.png b/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/logo.png new file mode 100644 index 0000000000000..ed9af09513fe3 Binary files /dev/null and b/blockchains/smartchain/assets/0x3eE08275b513f3085231Ccc85de4C386FCc1f18b/logo.png differ diff --git a/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/info.json b/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/info.json index 049d977c72f76..8fe307a467073 100644 --- a/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/info.json +++ b/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "VIDT", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40F75eD09c7Bc89Bf596cE0fF6FB2ff8D02aC019/info.json b/blockchains/smartchain/assets/0x40F75eD09c7Bc89Bf596cE0fF6FB2ff8D02aC019/info.json new file mode 100644 index 0000000000000..7af1084a356a7 --- /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 0000000000000..af2045b7c09b5 Binary files /dev/null and b/blockchains/smartchain/assets/0x40F75eD09c7Bc89Bf596cE0fF6FB2ff8D02aC019/logo.png differ diff --git a/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/info.json b/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/info.json new file mode 100644 index 0000000000000..c62b76033c5c2 --- /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": "twitter", + "url": "https://twitter.com/tusd_official" + }, + { + "name": "telegram", + "url": "https://t.me/TUSDofficial_EN" + }, + { + "name": "medium", + "url": "https://trueusd.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/true-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/logo.png b/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/logo.png new file mode 100644 index 0000000000000..0ae677cd2bac8 Binary files /dev/null and b/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/logo.png differ diff --git a/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/info.json b/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/info.json new file mode 100644 index 0000000000000..914322956339d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7cebaadefc4f0 Binary files /dev/null and b/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/logo.png differ diff --git a/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json new file mode 100644 index 0000000000000..dc9ee80d80aa7 --- /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": "twitter", + "url": "https://twitter.com/fantasygoldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantasygold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png new file mode 100644 index 0000000000000..6876a666683e6 Binary files /dev/null and b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png differ diff --git a/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/info.json b/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/info.json index 54aa301b35115..36de2c508ae43 100644 --- a/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/info.json +++ b/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0x41cf3E9534156405a133Cda545aF9fF0E586500A", "links": [ { diff --git a/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/logo.png b/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/logo.png deleted file mode 100644 index 9f03cd2d652a8..0000000000000 Binary files a/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/info.json b/blockchains/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/info.json new file mode 100644 index 0000000000000..145f6a9c81ef8 --- /dev/null +++ b/blockchains/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/info.json @@ -0,0 +1,69 @@ +{ + "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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/logo.png b/blockchains/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/logo.png new file mode 100644 index 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/logo.png differ diff --git a/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/info.json b/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/info.json new file mode 100644 index 0000000000000..500c931502b7d --- /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": "twitter", + "url": "https://twitter.com/Sports2k75" + }, + { + "name": "telegram", + "url": "https://t.me/sports2k75" + }, + { + "name": "github", + "url": "https://github.com/Sports2K75" + } + ], + "tags": [ + "staking" + ] +} diff --git a/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/logo.png b/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/logo.png new file mode 100644 index 0000000000000..d73454f15da02 Binary files /dev/null and b/blockchains/smartchain/assets/0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d/logo.png differ diff --git a/blockchains/smartchain/assets/0x431e0cD023a32532BF3969CddFc002c00E98429d/info.json b/blockchains/smartchain/assets/0x431e0cD023a32532BF3969CddFc002c00E98429d/info.json index b36e585ed6244..9fc16cee7504f 100644 --- a/blockchains/smartchain/assets/0x431e0cD023a32532BF3969CddFc002c00E98429d/info.json +++ b/blockchains/smartchain/assets/0x431e0cD023a32532BF3969CddFc002c00E98429d/info.json @@ -6,6 +6,6 @@ "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": "active", + "status": "abandoned", "id": "0x431e0cD023a32532BF3969CddFc002c00E98429d" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x431e0cD023a32532BF3969CddFc002c00E98429d/logo.png b/blockchains/smartchain/assets/0x431e0cD023a32532BF3969CddFc002c00E98429d/logo.png deleted file mode 100644 index c509ae64852b1..0000000000000 Binary files a/blockchains/smartchain/assets/0x431e0cD023a32532BF3969CddFc002c00E98429d/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/info.json b/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/info.json index d94d663c60efe..12f9db2537473 100644 --- a/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/info.json +++ b/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Litecoin Token", + "name": "BNB pegged Litecoin Token", "website": "https://litecoin.org/", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x43B35e89d15B91162Dea1C51133C4c93bdd1C4aF/info.json b/blockchains/smartchain/assets/0x43B35e89d15B91162Dea1C51133C4c93bdd1C4aF/info.json new file mode 100644 index 0000000000000..b25f9ab94a9d2 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7b11f6876854e 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 0000000000000..034e360af57d9 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..360f3e4669bc0 Binary files /dev/null and b/blockchains/smartchain/assets/0x43B9cE0394d9AFfc97501359646A410A48c21a11/logo.png differ diff --git a/blockchains/smartchain/assets/0x44Ec807ce2F4a6F2737A92e985f318d035883e47/info.json b/blockchains/smartchain/assets/0x44Ec807ce2F4a6F2737A92e985f318d035883e47/info.json new file mode 100644 index 0000000000000..ff4e9ed63daaf --- /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": "twitter", + "url": "https://twitter.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 0000000000000..47cb1e7b4ed9e Binary files /dev/null and b/blockchains/smartchain/assets/0x44Ec807ce2F4a6F2737A92e985f318d035883e47/logo.png differ diff --git a/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/info.json b/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/info.json new file mode 100644 index 0000000000000..932046d78d993 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..52152d628fc32 Binary files /dev/null and b/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/logo.png differ diff --git a/blockchains/smartchain/assets/0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD/info.json b/blockchains/smartchain/assets/0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD/info.json new file mode 100644 index 0000000000000..7fa500167bfde --- /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": "twitter", + "url": "https://twitter.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 0000000000000..37cbec02c09ac Binary files /dev/null and b/blockchains/smartchain/assets/0x4620C701e8853Eaa1BF791EfB1d7d4d784734baD/logo.png differ diff --git a/blockchains/smartchain/assets/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3/info.json b/blockchains/smartchain/assets/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3/info.json index f82276f95ab73..f49898e644169 100644 --- a/blockchains/smartchain/assets/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3/info.json +++ b/blockchains/smartchain/assets/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3/info.json @@ -4,10 +4,13 @@ "symbol": "FCF", "decimals": 18, "website": "https://www.frenchconnection.finance", - "description": "A Credit Card and Crypto payment gateway allowing crypto transaction on e-commerces and apps while rewarding the holders with a 5% automated dividend paid in BNB every 24 hours. ", + "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": "twitter", @@ -42,4 +45,4 @@ "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 index d466a6f966b34..884c5191e221b 100644 Binary files a/blockchains/smartchain/assets/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3/logo.png and b/blockchains/smartchain/assets/0x4673f018cc6d401AAD0402BdBf2abcBF43dd69F3/logo.png differ diff --git a/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/info.json b/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/info.json new file mode 100644 index 0000000000000..19bd4a44c4697 --- /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": "active", + "id": "0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dogecola" + }, + { + "name": "twitter", + "url": "https://twitter.com/doge_cola" + }, + { + "name": "telegram", + "url": "https://t.me/dogecola" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/logo.png b/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/logo.png new file mode 100644 index 0000000000000..4d3e766057735 Binary files /dev/null and b/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/logo.png differ diff --git a/blockchains/smartchain/assets/0x49954Ad438fa9e27C21AeCd35078dD52cDDd96be/info.json b/blockchains/smartchain/assets/0x49954Ad438fa9e27C21AeCd35078dD52cDDd96be/info.json new file mode 100644 index 0000000000000..26eada32d700e --- /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 0000000000000..159be157a4998 Binary files /dev/null and b/blockchains/smartchain/assets/0x49954Ad438fa9e27C21AeCd35078dD52cDDd96be/logo.png differ diff --git a/blockchains/smartchain/assets/0x49BA054B9664e99ac335667a917c63bB94332E84/info.json b/blockchains/smartchain/assets/0x49BA054B9664e99ac335667a917c63bB94332E84/info.json new file mode 100644 index 0000000000000..97601f8fc708c --- /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 0000000000000..a31cef5e53375 Binary files /dev/null and b/blockchains/smartchain/assets/0x49BA054B9664e99ac335667a917c63bB94332E84/logo.png differ diff --git a/blockchains/smartchain/assets/0x49d5cC521F75e13fa8eb4E89E9D381352C897c96/info.json b/blockchains/smartchain/assets/0x49d5cC521F75e13fa8eb4E89E9D381352C897c96/info.json new file mode 100644 index 0000000000000..9e8eb966f9e4f --- /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 0000000000000..d52df831af1f9 Binary files /dev/null and b/blockchains/smartchain/assets/0x49d5cC521F75e13fa8eb4E89E9D381352C897c96/logo.png differ diff --git a/blockchains/smartchain/assets/0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623/info.json b/blockchains/smartchain/assets/0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623/info.json new file mode 100644 index 0000000000000..0fd8214d51201 --- /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 0000000000000..36fcfbc499e68 Binary files /dev/null and b/blockchains/smartchain/assets/0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623/logo.png differ diff --git a/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png b/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png index 8e97855518bfd..276a83baae8dd 100644 Binary files a/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png and b/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png differ diff --git a/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/logo.png b/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/logo.png index f3dbadcf69f76..ac1033ab90c14 100644 Binary files a/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/logo.png and b/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/logo.png differ diff --git a/blockchains/smartchain/assets/0x4BbB275012EBE258556B8debE5C07bE98e8d3859/info.json b/blockchains/smartchain/assets/0x4BbB275012EBE258556B8debE5C07bE98e8d3859/info.json index 2aa2f2b9176ac..8f39f3b19f20c 100644 --- a/blockchains/smartchain/assets/0x4BbB275012EBE258556B8debE5C07bE98e8d3859/info.json +++ b/blockchains/smartchain/assets/0x4BbB275012EBE258556B8debE5C07bE98e8d3859/info.json @@ -1,5 +1,5 @@ { - "name": "NAR Dividend Token (GEM)", + "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", diff --git a/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/info.json b/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/info.json new file mode 100644 index 0000000000000..73e6d2bd579e2 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/logo.png b/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/logo.png new file mode 100644 index 0000000000000..f49fa901b5766 Binary files /dev/null and b/blockchains/smartchain/assets/0x4C882ec256823eE773B25b414d36F92ef58a7c0C/logo.png differ diff --git a/blockchains/smartchain/assets/0x4DB5a66E937A9F4473fA95b1cAF1d1E1D62E29EA/info.json b/blockchains/smartchain/assets/0x4DB5a66E937A9F4473fA95b1cAF1d1E1D62E29EA/info.json new file mode 100644 index 0000000000000..faef3b95fe639 --- /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 0000000000000..2d99a939536c4 Binary files /dev/null and b/blockchains/smartchain/assets/0x4DB5a66E937A9F4473fA95b1cAF1d1E1D62E29EA/logo.png differ diff --git a/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/info.json b/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/info.json new file mode 100644 index 0000000000000..73adaffcd5daf --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/logo.png b/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/logo.png new file mode 100644 index 0000000000000..e914d5088ee73 Binary files /dev/null and b/blockchains/smartchain/assets/0x4a2c860cEC6471b9F5F5a336eB4F38bb21683c98/logo.png differ diff --git a/blockchains/smartchain/assets/0x4a846D300F793752eE8bd579192C477130C4B369/info.json b/blockchains/smartchain/assets/0x4a846D300F793752eE8bd579192C477130C4B369/info.json new file mode 100644 index 0000000000000..0d887d8c06ca1 --- /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": "twitter", + "url": "https://twitter.com/LiteUsd" + }, + { + "name": "github", + "url": "https://github.com/LiteUSD" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lite-usd/" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/smartchain/assets/0x4a846D300F793752eE8bd579192C477130C4B369/logo.png b/blockchains/smartchain/assets/0x4a846D300F793752eE8bd579192C477130C4B369/logo.png new file mode 100644 index 0000000000000..20df353f98623 Binary files /dev/null and b/blockchains/smartchain/assets/0x4a846D300F793752eE8bd579192C477130C4B369/logo.png differ diff --git a/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/info.json b/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/info.json new file mode 100644 index 0000000000000..ff6a871e292f9 --- /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": "twitter", + "url": "https://twitter.com/MagicCraftGame" + }, + { + "name": "telegram", + "url": "https://t.me/magiccraftgamechat" + }, + { + "name": "whitepaper", + "url": "https://docs.magiccraft.io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magiccraft" + } + ] +} diff --git a/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/logo.png b/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/logo.png new file mode 100644 index 0000000000000..be950b7bd5810 Binary files /dev/null and b/blockchains/smartchain/assets/0x4b8285aB433D8f69CB48d5Ad62b415ed1a221e4f/logo.png differ diff --git a/blockchains/smartchain/assets/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9/info.json b/blockchains/smartchain/assets/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9/info.json index 92153c75420ec..02a9c6d9e6fcb 100644 --- a/blockchains/smartchain/assets/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9/info.json +++ b/blockchains/smartchain/assets/0x4c48cca6153Db911002F965D22fdeFcD95f33BE9/info.json @@ -4,7 +4,7 @@ "symbol": "ESC", "decimals": 18, "website": "https://theessentialcoin.org", - "description": "The essential Coin (ESC) 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.", + "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", diff --git a/blockchains/smartchain/assets/0x4c4da68D45F23E38ec8407272ee4f38F280263c0/info.json b/blockchains/smartchain/assets/0x4c4da68D45F23E38ec8407272ee4f38F280263c0/info.json index 779a186c31845..6676da2994b4a 100644 --- a/blockchains/smartchain/assets/0x4c4da68D45F23E38ec8407272ee4f38F280263c0/info.json +++ b/blockchains/smartchain/assets/0x4c4da68D45F23E38ec8407272ee4f38F280263c0/info.json @@ -1,7 +1,7 @@ { "name": "Panda Girl", "website": "https://PandaGirl.io", - "description": "Panda Girl (PGIRL) 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.", + "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", diff --git a/blockchains/smartchain/assets/0x4cbdfad03b968bF43449D0908f319Ae4A5A33371/info.json b/blockchains/smartchain/assets/0x4cbdfad03b968bF43449D0908f319Ae4A5A33371/info.json index 0d66b634ff9ba..fcd946431074e 100644 --- a/blockchains/smartchain/assets/0x4cbdfad03b968bF43449D0908f319Ae4A5A33371/info.json +++ b/blockchains/smartchain/assets/0x4cbdfad03b968bF43449D0908f319Ae4A5A33371/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "ECOIN", "decimals": 9, - "status": "active", + "status": "abandoned", "id": "0x4cbdfad03b968bF43449D0908f319Ae4A5A33371", "tags": [ "deflationary" diff --git a/blockchains/smartchain/assets/0x4cbdfad03b968bF43449D0908f319Ae4A5A33371/logo.png b/blockchains/smartchain/assets/0x4cbdfad03b968bF43449D0908f319Ae4A5A33371/logo.png deleted file mode 100644 index 73fd565465792..0000000000000 Binary files a/blockchains/smartchain/assets/0x4cbdfad03b968bF43449D0908f319Ae4A5A33371/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/info.json b/blockchains/smartchain/assets/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/info.json new file mode 100644 index 0000000000000..24bc1be43fefa --- /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": "twitter", + "url": "https://twitter.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 0000000000000..124bbae67dff7 Binary files /dev/null and b/blockchains/smartchain/assets/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/logo.png differ diff --git a/blockchains/smartchain/assets/0x4e2434294a722329B6B64e0c2Fca51B2533D7015/info.json b/blockchains/smartchain/assets/0x4e2434294a722329B6B64e0c2Fca51B2533D7015/info.json new file mode 100644 index 0000000000000..7a75537705c05 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..1578e86e7ff16 Binary files /dev/null and b/blockchains/smartchain/assets/0x4e2434294a722329B6B64e0c2Fca51B2533D7015/logo.png differ diff --git a/blockchains/smartchain/assets/0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9/info.json b/blockchains/smartchain/assets/0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9/info.json index 72f477fcf65bb..a269e8c9ca5ee 100644 --- a/blockchains/smartchain/assets/0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9/info.json +++ b/blockchains/smartchain/assets/0x4ef29F3B804C316bA8bA464A765C601Fc092a2e9/info.json @@ -4,7 +4,7 @@ "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. ", + "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", diff --git a/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/info.json b/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/info.json new file mode 100644 index 0000000000000..da2e01a4e9832 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7cccb4b214bfd Binary files /dev/null and b/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/logo.png differ diff --git a/blockchains/smartchain/assets/0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC/info.json b/blockchains/smartchain/assets/0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC/info.json new file mode 100644 index 0000000000000..f6e9bafae4471 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC/logo.png b/blockchains/smartchain/assets/0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC/logo.png new file mode 100644 index 0000000000000..3c2c0acabf8e1 Binary files /dev/null and b/blockchains/smartchain/assets/0x520EbCcc63E4d0804b35Cda25978BEb7159bF0CC/logo.png differ diff --git a/blockchains/smartchain/assets/0x523821d20a283d955f6205B4C9252779Cd0f964B/info.json b/blockchains/smartchain/assets/0x523821d20a283d955f6205B4C9252779Cd0f964B/info.json new file mode 100644 index 0000000000000..e31d5df972a26 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a3b20074ec34d 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 0000000000000..91c7acfeb3e35 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..9b943b05fab7a Binary files /dev/null and b/blockchains/smartchain/assets/0x52419258E3fa44DEAc7E670eaDD4c892B480A805/logo.png differ diff --git a/blockchains/smartchain/assets/0x524bC91Dc82d6b90EF29F76A3ECAaBAffFD490Bc/info.json b/blockchains/smartchain/assets/0x524bC91Dc82d6b90EF29F76A3ECAaBAffFD490Bc/info.json new file mode 100644 index 0000000000000..3d418d5b1ac4a --- /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 0000000000000..46b9968e18279 Binary files /dev/null and b/blockchains/smartchain/assets/0x524bC91Dc82d6b90EF29F76A3ECAaBAffFD490Bc/logo.png differ diff --git a/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/info.json b/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/info.json new file mode 100644 index 0000000000000..242a72d6253a4 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/logo.png b/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/logo.png new file mode 100644 index 0000000000000..5c5c17b43cc8e Binary files /dev/null and b/blockchains/smartchain/assets/0x5298AD82dD7C83eEaA31DDa9DEB4307664C60534/logo.png differ diff --git a/blockchains/smartchain/assets/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8/info.json b/blockchains/smartchain/assets/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8/info.json index 7cb813a7d815f..95474f766eb90 100644 --- a/blockchains/smartchain/assets/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8/info.json +++ b/blockchains/smartchain/assets/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Compound", + "name": "BNB pegged Compound", "website": "https://compound.finance", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827/info.json b/blockchains/smartchain/assets/0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827/info.json new file mode 100644 index 0000000000000..6a24718d3d107 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..509db7cc3e706 Binary files /dev/null and b/blockchains/smartchain/assets/0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827/logo.png differ diff --git a/blockchains/smartchain/assets/0x5492Ef6aEebA1A3896357359eF039a8B11621b45/info.json b/blockchains/smartchain/assets/0x5492Ef6aEebA1A3896357359eF039a8B11621b45/info.json new file mode 100644 index 0000000000000..dd4f46e16b071 --- /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": "twitter", + "url": "https://twitter.com/chumbivalley" + }, + { + "name": "discord", + "url": "https://discord.com/invite/chumbi" + }, + { + "name": "telegram", + "url": "https://t.me/chumbivalley01" + } + ], + "tags": [ + "gamefi", + "nft" + ] +} diff --git a/blockchains/smartchain/assets/0x5492Ef6aEebA1A3896357359eF039a8B11621b45/logo.png b/blockchains/smartchain/assets/0x5492Ef6aEebA1A3896357359eF039a8B11621b45/logo.png new file mode 100644 index 0000000000000..00003589aa34f Binary files /dev/null and b/blockchains/smartchain/assets/0x5492Ef6aEebA1A3896357359eF039a8B11621b45/logo.png differ diff --git a/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/info.json b/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/info.json new file mode 100644 index 0000000000000..979a9cd803597 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6decbd4653027 Binary files /dev/null and b/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/logo.png differ diff --git a/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/info.json b/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/info.json new file mode 100644 index 0000000000000..3a59f70698294 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/logo.png b/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/logo.png new file mode 100644 index 0000000000000..1565f40383335 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 0000000000000..dae860cd73e97 --- /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 0000000000000..d9761d4e602ef Binary files /dev/null and b/blockchains/smartchain/assets/0x556b60c53fbC1518Ad17E03d52E47368dD4d81B3/logo.png differ diff --git a/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/logo.png b/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/logo.png index 3ba18cbe3d202..196024d6b841e 100644 Binary files a/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/logo.png 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 index e7b34af59be2b..dd5512747ca2e 100644 --- a/blockchains/smartchain/assets/0x55d398326f99059fF775485246999027B3197955/info.json +++ b/blockchains/smartchain/assets/0x55d398326f99059fF775485246999027B3197955/info.json @@ -1,5 +1,5 @@ { - "name": "Binance-Peg BSC-USD", + "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", diff --git a/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/info.json b/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/info.json new file mode 100644 index 0000000000000..07023cec6e99e --- /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": "twitter", + "url": "https://twitter.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/" + } + ] +} diff --git a/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/logo.png b/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/logo.png new file mode 100644 index 0000000000000..2b3016fbe4965 Binary files /dev/null and b/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/logo.png differ diff --git a/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/info.json b/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/info.json new file mode 100644 index 0000000000000..9fcd86962350c --- /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": "twitter", + "url": "https://twitter.com/ElfWallet" + }, + { + "name": "github", + "url": "https://github.com/ELF-Wallet" + }, + { + "name": "telegram", + "url": "https://t.me/ElfWallet_Global" + }, + { + "name": "whitepaper", + "url": "https://www.elfwallets.com/ELF.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elf-wallet/" + }, + { + "name": "medium", + "url": "https://medium.com/@elfwallet" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/logo.png b/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/logo.png new file mode 100644 index 0000000000000..2f9cdfc5cb30c Binary files /dev/null and b/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/logo.png differ diff --git a/blockchains/smartchain/assets/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6/info.json b/blockchains/smartchain/assets/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6/info.json index e66186a71d86c..2e560da4a149d 100644 --- a/blockchains/smartchain/assets/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6/info.json +++ b/blockchains/smartchain/assets/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6/info.json @@ -1,5 +1,5 @@ { - "name": "Binance-Peg EOS Token", + "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", diff --git a/blockchains/smartchain/assets/0x570A5D26f7765Ecb712C0924E4De545B89fD43dF/info.json b/blockchains/smartchain/assets/0x570A5D26f7765Ecb712C0924E4De545B89fD43dF/info.json new file mode 100644 index 0000000000000..ec145199f0045 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a6a429ad389c0 Binary files /dev/null and b/blockchains/smartchain/assets/0x570A5D26f7765Ecb712C0924E4De545B89fD43dF/logo.png differ diff --git a/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/info.json b/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/info.json index baa839ddeed86..0c8b1a9d9a990 100644 --- a/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/info.json +++ b/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/info.json @@ -1,7 +1,7 @@ { "name": "Venus LTC", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/logo.png b/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/logo.png old mode 100755 new mode 100644 index d5a657fee0f39..0681537856c7a Binary files a/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/logo.png and b/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/logo.png differ diff --git a/blockchains/smartchain/assets/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54/info.json b/blockchains/smartchain/assets/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54/info.json new file mode 100644 index 0000000000000..9fcbe069921d6 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54/logo.png b/blockchains/smartchain/assets/0x57Bc18F6177cDafFb34aCE048745bc913a1B1b54/logo.png new file mode 100644 index 0000000000000..eebe15591cdd1 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 0000000000000..6e9974a0d2e44 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6551d5de572ff Binary files /dev/null and b/blockchains/smartchain/assets/0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D/logo.png differ diff --git a/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/info.json b/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/info.json new file mode 100644 index 0000000000000..7c3ec5ea90e5d --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/logo.png b/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/logo.png new file mode 100644 index 0000000000000..a056150a4269a Binary files /dev/null and b/blockchains/smartchain/assets/0x57b798d2252557f13A9148A075a72816f2707356/logo.png differ diff --git a/blockchains/smartchain/assets/0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8/info.json b/blockchains/smartchain/assets/0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8/info.json new file mode 100644 index 0000000000000..62c36e8cb5dbb --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f6c9bb657e22e Binary files /dev/null and b/blockchains/smartchain/assets/0x58f0C2fd4B7B0fBaC97c9cC71A5Eb810627734C8/logo.png differ diff --git a/blockchains/smartchain/assets/0x5941f87EB62737eC5EBbECab3e373c40fe40566B/info.json b/blockchains/smartchain/assets/0x5941f87EB62737eC5EBbECab3e373c40fe40566B/info.json index 0d5e3b9d88677..794f83c3b0e13 100644 --- a/blockchains/smartchain/assets/0x5941f87EB62737eC5EBbECab3e373c40fe40566B/info.json +++ b/blockchains/smartchain/assets/0x5941f87EB62737eC5EBbECab3e373c40fe40566B/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "MNG", "decimals": 9, - "status": "active", + "status": "abandoned", "id": "0x5941f87EB62737eC5EBbECab3e373c40fe40566B" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/info.json b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/info.json new file mode 100644 index 0000000000000..037bf41502552 --- /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": "twitter", + "url": "https://twitter.com/Darikcoin_Darik" + }, + { + "name": "telegram", + "url": "https://t.me/DARIKCOIN_DARIK" + }, + { + "name": "facebook", + "url": "https://facebook.com/people/Darik-Coin/pfbid02gFwGRGgpwcuBnZvY9SDkJibP6JbycXUeDvGdEHLpLaVwKfXJWEP3AWNEi61jVDKdl/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/dexscan/bsc/0xbba50be7a1cb6e25ddda562b0ca278089bf9068a/" + } + ], + "tags": [ + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/logo.png b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/logo.png new file mode 100644 index 0000000000000..8fa8f5585a2b7 Binary files /dev/null and b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A054554b3F0C75063D29250984A921402E1E3a7/info.json b/blockchains/smartchain/assets/0x5A054554b3F0C75063D29250984A921402E1E3a7/info.json index fb8abebaf53e2..78f120daa3f01 100644 --- a/blockchains/smartchain/assets/0x5A054554b3F0C75063D29250984A921402E1E3a7/info.json +++ b/blockchains/smartchain/assets/0x5A054554b3F0C75063D29250984A921402E1E3a7/info.json @@ -3,7 +3,7 @@ "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. ", + "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", diff --git a/blockchains/smartchain/assets/0x5A3010d4d8D3B5fB49f8B6E57FB9E48063f16700/info.json b/blockchains/smartchain/assets/0x5A3010d4d8D3B5fB49f8B6E57FB9E48063f16700/info.json index be382bbdb4e5f..913b499e5f492 100644 --- a/blockchains/smartchain/assets/0x5A3010d4d8D3B5fB49f8B6E57FB9E48063f16700/info.json +++ b/blockchains/smartchain/assets/0x5A3010d4d8D3B5fB49f8B6E57FB9E48063f16700/info.json @@ -4,7 +4,7 @@ "symbol": "BSCPAD", "decimals": 18, "website": "https://www.bscpad.com/", - "description": "BSCPAD is the first decentralized IDO platform on the Binance Smart Chain Network. ", + "description": "BSCPAD is the first decentralized IDO platform on the Binance Smart Chain Network.", "explorer": "https://bscscan.com/token/0x5A3010d4d8D3B5fB49f8B6E57FB9E48063f16700", "status": "active", "id": "0x5A3010d4d8D3B5fB49f8B6E57FB9E48063f16700" diff --git a/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/info.json b/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/info.json new file mode 100644 index 0000000000000..332689b66676f --- /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": "twitter", + "url": "https://twitter.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" +} diff --git a/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/logo.png b/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/logo.png new file mode 100644 index 0000000000000..90e74b4a4814d Binary files /dev/null and b/blockchains/smartchain/assets/0x5A341DCF49e161CC73591f02e5f8CDE8A29733fb/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json b/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json index ac7efd1703de6..c8833cf60ae3f 100644 --- a/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json +++ b/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "JulD", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/info.json b/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/info.json new file mode 100644 index 0000000000000..977e838f9d0e7 --- /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": "twitter", + "url": "https://twitter.com/BitBurnOfficial" + }, + { + "name": "github", + "url": "https://github.com/bitburnio/" + } + ], + "tags": [ + "defi", + "deflationary" + ] +} diff --git a/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/logo.png b/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/logo.png new file mode 100644 index 0000000000000..1793f45568174 Binary files /dev/null and b/blockchains/smartchain/assets/0x5A5844CAb96A7b8B257Fc606Aa6119c5cBc6D4c4/logo.png differ diff --git a/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/info.json b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/info.json new file mode 100644 index 0000000000000..77472c4bb28b2 --- /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": "twitter", + "url": "https://twitter.com/bitcoin69_bsc" + }, + { + "name": "github", + "url": "https://github.com/ElonXAIDogeMessi69PepeInu" + }, + { + "name": "telegram", + "url": "https://t.me/bitcoin69_global" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x5afa2959c98b030716f7c0a4d85e0b0e35f3791b#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elonxaidogemessi69pepeinu/" + }, + { + "name": "docs", + "url": "https://doc.bitcoin69.org/" + }, + { + "name": "medium", + "url": "https://medium.com/@bitcoin69" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/logo.png b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/logo.png new file mode 100644 index 0000000000000..0b053e713c461 Binary files /dev/null and b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/logo.png differ diff --git a/blockchains/smartchain/assets/0x5B0Dfe077B16479715C9838eb644892008abbFe6/info.json b/blockchains/smartchain/assets/0x5B0Dfe077B16479715C9838eb644892008abbFe6/info.json index e241cd3066f70..1a76074d8d43d 100644 --- a/blockchains/smartchain/assets/0x5B0Dfe077B16479715C9838eb644892008abbFe6/info.json +++ b/blockchains/smartchain/assets/0x5B0Dfe077B16479715C9838eb644892008abbFe6/info.json @@ -1,7 +1,7 @@ { "name": "Baby Bitcoin", "website": "https://babybitcoin.finance", - "description": "Baby Bitcoin (BBTC) is a BEP-20 Token with a focus on charity and meme culture.", + "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", diff --git a/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/info.json b/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/info.json new file mode 100644 index 0000000000000..8fa48c81d3621 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/logo.png b/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/logo.png new file mode 100644 index 0000000000000..26a58875e82fa Binary files /dev/null and b/blockchains/smartchain/assets/0x5B6bf0c7f989dE824677cFBD507D9635965e9cD3/logo.png differ diff --git a/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/info.json b/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/info.json new file mode 100644 index 0000000000000..9875534df97e7 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/logo.png b/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/logo.png new file mode 100644 index 0000000000000..2adbf4bf7c570 Binary files /dev/null and b/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/logo.png differ diff --git a/blockchains/smartchain/assets/0x5E5C9001Aa81332D405D993FFd1468751D659d1e/info.json b/blockchains/smartchain/assets/0x5E5C9001Aa81332D405D993FFd1468751D659d1e/info.json index b9700be6382d6..21b04dbe91ea4 100644 --- a/blockchains/smartchain/assets/0x5E5C9001Aa81332D405D993FFd1468751D659d1e/info.json +++ b/blockchains/smartchain/assets/0x5E5C9001Aa81332D405D993FFd1468751D659d1e/info.json @@ -4,7 +4,7 @@ "symbol": "$BABYDOGEINU", "decimals": 9, "website": "https://www.babydogeinu.io/", - "description": "Baby Doge Inu ($BABYDOGEINU) is a deflationary token with high holder rewards on Binance Smart Chain (BSC).", + "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", diff --git a/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/info.json b/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/info.json index d9ef6a26eb688..8a8c514547457 100644 --- a/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/info.json +++ b/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/info.json @@ -1,7 +1,7 @@ { "name": "Venus BCH", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/logo.png b/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/logo.png index 86a525142c1ca..195a25156281c 100644 Binary files a/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/logo.png and b/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/logo.png differ diff --git a/blockchains/smartchain/assets/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78/info.json b/blockchains/smartchain/assets/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78/info.json index 60362b1b89335..1d1e2f7efd5c8 100644 --- a/blockchains/smartchain/assets/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78/info.json +++ b/blockchains/smartchain/assets/0x5F1b95784a033CD6842cf26eb9A9687F91Ad9e78/info.json @@ -4,7 +4,7 @@ "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. ", + "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", diff --git a/blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/info.json b/blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/info.json new file mode 100644 index 0000000000000..511496c9c6bae --- /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": "twitter", + "url": "https://twitter.com/binary_x" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97/logo.png b/blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97/logo.png rename to blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/logo.png diff --git a/blockchains/smartchain/assets/0x5b8DC8b4f438b1932Ddb2F320b4b7Ea65BA41798/info.json b/blockchains/smartchain/assets/0x5b8DC8b4f438b1932Ddb2F320b4b7Ea65BA41798/info.json index 1ded8f3ab05f1..e3e7899c10cf9 100644 --- a/blockchains/smartchain/assets/0x5b8DC8b4f438b1932Ddb2F320b4b7Ea65BA41798/info.json +++ b/blockchains/smartchain/assets/0x5b8DC8b4f438b1932Ddb2F320b4b7Ea65BA41798/info.json @@ -4,7 +4,7 @@ "symbol": "BDCC", "decimals": 18, "website": "https://www.thebitica.com/", - "description": "Bitica Token (BDCC), 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).", + "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" diff --git a/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/info.json b/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/info.json new file mode 100644 index 0000000000000..192214d47fe5d --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/logo.png b/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/logo.png new file mode 100644 index 0000000000000..4f1c543e3d5a9 Binary files /dev/null and b/blockchains/smartchain/assets/0x5bcd91C734d665Fe426A5D7156f2aD7d37b76e30/logo.png differ diff --git a/blockchains/smartchain/assets/0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0/info.json b/blockchains/smartchain/assets/0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0/info.json index 5209302377815..dc34c2457da77 100644 --- a/blockchains/smartchain/assets/0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0/info.json +++ b/blockchains/smartchain/assets/0x5c792740a7d4684E75e5551Fb239f512Fe0d47d0/info.json @@ -1,7 +1,7 @@ { "name": "MRC Token", "website": "https://marco.travel/mrc-token/", - "description": "Marco token (MRC) 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..", + "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", diff --git a/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/info.json b/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/info.json index fb7f9661de99d..7c9171114e602 100644 --- a/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/info.json +++ b/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/info.json @@ -1,7 +1,7 @@ { "name": "Venus MATIC", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", "links": [ { "name": "twitter", diff --git a/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/logo.png b/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/logo.png index 349866ec5e72a..27486799d284a 100644 Binary files a/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/logo.png and b/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/logo.png differ diff --git a/blockchains/smartchain/assets/0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350/info.json b/blockchains/smartchain/assets/0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350/info.json index bd9141c12795b..ef34532bd0345 100644 --- a/blockchains/smartchain/assets/0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350/info.json +++ b/blockchains/smartchain/assets/0x5f0Da599BB2ccCfcf6Fdfd7D81743B6020864350/info.json @@ -1,7 +1,7 @@ { "name": "Binance-Peg Maker", "website": "https://makerdao.com", - "description": "Maker (MKR) is a utility token, governance token and recapitalization resource of the Maker system.", + "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", diff --git a/blockchains/smartchain/assets/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/info.json b/blockchains/smartchain/assets/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/info.json new file mode 100644 index 0000000000000..4de3cd352eb7d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6091decc49539 Binary files /dev/null and b/blockchains/smartchain/assets/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/logo.png differ diff --git a/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/info.json b/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/info.json new file mode 100644 index 0000000000000..681b8cff06aee --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/logo.png b/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/logo.png new file mode 100644 index 0000000000000..cddbe1243f334 Binary files /dev/null and b/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/logo.png differ diff --git a/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/info.json b/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/info.json new file mode 100644 index 0000000000000..c647e01e0ad47 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/logo.png b/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/logo.png new file mode 100644 index 0000000000000..37457fc043f54 Binary files /dev/null and b/blockchains/smartchain/assets/0x60d66a5152612F7D550796910d022Cb2c77B09de/logo.png differ diff --git a/blockchains/smartchain/assets/0x611DFe661C82B858087AB5b16e3Cb082552df4F3/info.json b/blockchains/smartchain/assets/0x611DFe661C82B858087AB5b16e3Cb082552df4F3/info.json index 994e39d82d5c6..b68207d06fb2f 100644 --- a/blockchains/smartchain/assets/0x611DFe661C82B858087AB5b16e3Cb082552df4F3/info.json +++ b/blockchains/smartchain/assets/0x611DFe661C82B858087AB5b16e3Cb082552df4F3/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "Chia", "decimals": 8, - "status": "active", + "status": "abandoned", "id": "0x611DFe661C82B858087AB5b16e3Cb082552df4F3" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x611DFe661C82B858087AB5b16e3Cb082552df4F3/logo.png b/blockchains/smartchain/assets/0x611DFe661C82B858087AB5b16e3Cb082552df4F3/logo.png deleted file mode 100644 index 22ffba9dc35d7..0000000000000 Binary files a/blockchains/smartchain/assets/0x611DFe661C82B858087AB5b16e3Cb082552df4F3/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/info.json b/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/info.json new file mode 100644 index 0000000000000..f2321be2aaeb3 --- /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": "twitter", + "url": "https://twitter.com/jesuscoin_bsc" + }, + { + "name": "github", + "url": "https://github.com/jesuscoinbsc" + }, + { + "name": "telegram", + "url": "https://t.me/jesuscoin_main" + }, + { + "name": "docs", + "url": "https://doc.jesuscoin.info/" + }, + { + "name": "whitepaper", + "url": "https://doc.jesuscoin.info/" + }, + { + "name": "medium", + "url": "https://medium.com/@jesuscoin_bsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jesus-coin-bsc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/jesuscoin" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x6120ba0b3538e40aa7aac32558e5dd0737b7ac90#code" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/logo.png b/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/logo.png new file mode 100644 index 0000000000000..89892d0298aa8 Binary files /dev/null and b/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/logo.png differ diff --git a/blockchains/smartchain/assets/0x61B83eDF87Ea662C695439A807c386455c9E797C/info.json b/blockchains/smartchain/assets/0x61B83eDF87Ea662C695439A807c386455c9E797C/info.json new file mode 100644 index 0000000000000..d50cafbe9f7f1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..10399b3763d34 Binary files /dev/null and b/blockchains/smartchain/assets/0x61B83eDF87Ea662C695439A807c386455c9E797C/logo.png differ diff --git a/blockchains/smartchain/assets/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93/info.json b/blockchains/smartchain/assets/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93/info.json new file mode 100644 index 0000000000000..4698f6c3186d8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..81461bdcb08fc Binary files /dev/null and b/blockchains/smartchain/assets/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93/logo.png differ diff --git a/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/info.json b/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/info.json new file mode 100644 index 0000000000000..6fbd1cd472d39 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/logo.png b/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/logo.png new file mode 100644 index 0000000000000..854be76b89695 Binary files /dev/null and b/blockchains/smartchain/assets/0x6266a18F1605DA94e8317232ffa634C74646ac40/logo.png differ diff --git a/blockchains/smartchain/assets/0x631E1e455019c359b939fE214EDC761d36bF6aD6/info.json b/blockchains/smartchain/assets/0x631E1e455019c359b939fE214EDC761d36bF6aD6/info.json index 7dccced396dc2..07f05d1e6edc1 100644 --- a/blockchains/smartchain/assets/0x631E1e455019c359b939fE214EDC761d36bF6aD6/info.json +++ b/blockchains/smartchain/assets/0x631E1e455019c359b939fE214EDC761d36bF6aD6/info.json @@ -6,6 +6,6 @@ "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": "active", + "status": "abandoned", "id": "0x631E1e455019c359b939fE214EDC761d36bF6aD6" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x631E1e455019c359b939fE214EDC761d36bF6aD6/logo.png b/blockchains/smartchain/assets/0x631E1e455019c359b939fE214EDC761d36bF6aD6/logo.png deleted file mode 100644 index 2c61e6059d958..0000000000000 Binary files a/blockchains/smartchain/assets/0x631E1e455019c359b939fE214EDC761d36bF6aD6/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/info.json b/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/info.json new file mode 100644 index 0000000000000..fbbcb2d766d06 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/logo.png b/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/logo.png new file mode 100644 index 0000000000000..6ef4512fd54f2 Binary files /dev/null and b/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/logo.png differ diff --git a/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/info.json b/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/info.json new file mode 100644 index 0000000000000..1882c220eee9b --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/logo.png b/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/logo.png new file mode 100644 index 0000000000000..46040ed8ec9d2 Binary files /dev/null and b/blockchains/smartchain/assets/0x638EEBe886B0e9e7C6929E69490064a6C94d204d/logo.png differ diff --git a/blockchains/smartchain/assets/0x64619f611248256F7F4b72fE83872F89d5d60d64/info.json b/blockchains/smartchain/assets/0x64619f611248256F7F4b72fE83872F89d5d60d64/info.json new file mode 100644 index 0000000000000..5a9a167b9580f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..394eac2030175 Binary files /dev/null and b/blockchains/smartchain/assets/0x64619f611248256F7F4b72fE83872F89d5d60d64/logo.png differ diff --git a/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json b/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json new file mode 100644 index 0000000000000..e34463b60dc6b --- /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": "twitter", + "url": "https://twitter.com/RbtrToken" + }, + { + "name": "github", + "url": "https://github.com/RubotInfo" + }, + { + "name": "telegram", + "url": "https://t.me/rbtr_token" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/logo.png b/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/logo.png new file mode 100644 index 0000000000000..06526b46537d0 Binary files /dev/null and b/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/logo.png differ diff --git a/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/info.json b/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/info.json index 58a31b5640e63..aa4f66bd5dea6 100644 --- a/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/info.json +++ b/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/info.json @@ -1,7 +1,7 @@ { "name": "Venus LINK", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0x650b940a1033B8A1b1873f78730FcFC73ec11f1f", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/logo.png b/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/logo.png index 48565b0a54cfd..b49a660ae3e03 100644 Binary files a/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/logo.png and b/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/logo.png differ diff --git a/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/info.json b/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/info.json new file mode 100644 index 0000000000000..15f4f6f930cdf --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/logo.png b/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/logo.png new file mode 100644 index 0000000000000..1e501f6110c62 Binary files /dev/null and b/blockchains/smartchain/assets/0x659049786cB66E4486b8C0E0cCC90a5929a21162/logo.png differ diff --git a/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/info.json b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/info.json new file mode 100644 index 0000000000000..18d38c438ef1e --- /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": "twitter", + "url": "https://twitter.com/MeasurableData" + }, + { + "name": "github", + "url": "https://github.com/measurabledatatoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/measurable-data-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/logo.png b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/logo.png new file mode 100644 index 0000000000000..4406b320c48f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/logo.png differ diff --git a/blockchains/smartchain/assets/0x672147dD47674757C457eB155BAA382cc10705Dd/info.json b/blockchains/smartchain/assets/0x672147dD47674757C457eB155BAA382cc10705Dd/info.json new file mode 100644 index 0000000000000..6db6e78356985 --- /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 0000000000000..4e3f74d233943 Binary files /dev/null and b/blockchains/smartchain/assets/0x672147dD47674757C457eB155BAA382cc10705Dd/logo.png differ diff --git a/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/info.json b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/info.json new file mode 100644 index 0000000000000..0349bbdf9d26c --- /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": "twitter", + "url": "https://twitter.com/trust_xgaming" + }, + { + "name": "telegram", + "url": "https://t.me/trustxgaming" + }, + { + "name": "discord", + "url": "https://discord.com/invite/tXMs8DVFsd" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.txgpro.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/txgpro/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/logo.png b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/logo.png new file mode 100644 index 0000000000000..71b01c59420fd Binary files /dev/null and b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/logo.png differ diff --git a/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/info.json b/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/info.json new file mode 100644 index 0000000000000..7dbadd122ad49 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..cad91b5eadb32 Binary files /dev/null and b/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/logo.png differ diff --git a/blockchains/smartchain/assets/0x67Db74b6D1Ea807CB47248489c99D144323D348d/info.json b/blockchains/smartchain/assets/0x67Db74b6D1Ea807CB47248489c99D144323D348d/info.json new file mode 100644 index 0000000000000..64e78e6e77f39 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x67Db74b6D1Ea807CB47248489c99D144323D348d/logo.png b/blockchains/smartchain/assets/0x67Db74b6D1Ea807CB47248489c99D144323D348d/logo.png new file mode 100644 index 0000000000000..da995520ec48b Binary files /dev/null and b/blockchains/smartchain/assets/0x67Db74b6D1Ea807CB47248489c99D144323D348d/logo.png differ diff --git a/blockchains/smartchain/assets/0x67b725d7e342d7B611fa85e859Df9697D9378B2e/info.json b/blockchains/smartchain/assets/0x67b725d7e342d7B611fa85e859Df9697D9378B2e/info.json new file mode 100644 index 0000000000000..359ff84216aba --- /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": "twitter", + "url": "https://twitter.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 0000000000000..5b4fa7432889a Binary files /dev/null and b/blockchains/smartchain/assets/0x67b725d7e342d7B611fa85e859Df9697D9378B2e/logo.png differ diff --git a/blockchains/smartchain/assets/0x683fae4411249Ca05243dfb919c20920f3f5bfE0/info.json b/blockchains/smartchain/assets/0x683fae4411249Ca05243dfb919c20920f3f5bfE0/info.json index a8c696fbe8b56..d7be3dba0658e 100644 --- a/blockchains/smartchain/assets/0x683fae4411249Ca05243dfb919c20920f3f5bfE0/info.json +++ b/blockchains/smartchain/assets/0x683fae4411249Ca05243dfb919c20920f3f5bfE0/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0x683fae4411249Ca05243dfb919c20920f3f5bfE0", "links": [ { diff --git a/blockchains/smartchain/assets/0x683fae4411249Ca05243dfb919c20920f3f5bfE0/logo.png b/blockchains/smartchain/assets/0x683fae4411249Ca05243dfb919c20920f3f5bfE0/logo.png deleted file mode 100644 index fef6b3c9c06b3..0000000000000 Binary files a/blockchains/smartchain/assets/0x683fae4411249Ca05243dfb919c20920f3f5bfE0/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1/info.json b/blockchains/smartchain/assets/0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1/info.json new file mode 100644 index 0000000000000..24a0db0903d9a --- /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": "twitter", + "url": "https://twitter.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/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/logo.png b/blockchains/smartchain/assets/0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/logo.png rename to blockchains/smartchain/assets/0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1/logo.png diff --git a/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/info.json b/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/info.json new file mode 100644 index 0000000000000..f6af91d9837d3 --- /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": "twitter", + "url": "https://twitter.com/ukadoge" + }, + { + "name": "telegram", + "url": "https://t.me/ukadogechat" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/logo.png b/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/logo.png new file mode 100644 index 0000000000000..5c584d4cbacd1 Binary files /dev/null and b/blockchains/smartchain/assets/0x698111b771363B81D1179AD102e3d8B9cD093a11/logo.png differ diff --git a/blockchains/smartchain/assets/0x69C2fcAe7e30b429166BD616A322e32BeC036bCf/info.json b/blockchains/smartchain/assets/0x69C2fcAe7e30b429166BD616A322e32BeC036bCf/info.json new file mode 100644 index 0000000000000..d40f0fff17671 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..3cc8ad721ba67 Binary files /dev/null and b/blockchains/smartchain/assets/0x69C2fcAe7e30b429166BD616A322e32BeC036bCf/logo.png differ diff --git a/blockchains/smartchain/assets/0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2/info.json b/blockchains/smartchain/assets/0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2/info.json new file mode 100644 index 0000000000000..6cb113d1f0844 --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/smartchain/assets/0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2/logo.png b/blockchains/smartchain/assets/0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2/logo.png new file mode 100644 index 0000000000000..7a2acb6f2fde8 Binary files /dev/null and b/blockchains/smartchain/assets/0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2/logo.png differ diff --git a/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/info.json b/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/info.json new file mode 100644 index 0000000000000..e22128d9878aa --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/logo.png b/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/logo.png new file mode 100644 index 0000000000000..067cd2843f43e Binary files /dev/null and b/blockchains/smartchain/assets/0x6C46422A0f7dbbAD9BEC3BbBC1189bfAf9794B05/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Ced2d77eEb7a6e392CC2b1A3b44C872F49fa602/info.json b/blockchains/smartchain/assets/0x6Ced2d77eEb7a6e392CC2b1A3b44C872F49fa602/info.json new file mode 100644 index 0000000000000..9edbc9facb878 --- /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 0000000000000..8467e4d257f12 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 0000000000000..a5c8222f0fdb6 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..2a6c1f2c39e96 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 0000000000000..7b57bd1fb86fc --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/logo.png b/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/logo.png new file mode 100644 index 0000000000000..0665bfb8b88e3 Binary files /dev/null and b/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A/info.json b/blockchains/smartchain/assets/0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A/info.json new file mode 100644 index 0000000000000..50546dc859568 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7c8285a35b092 Binary files /dev/null and b/blockchains/smartchain/assets/0x6Dd60AFB2586D31Bf390450aDf5E6A9659d48c4A/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Ec90334d89dBdc89E08A133271be3d104128Edb/info.json b/blockchains/smartchain/assets/0x6Ec90334d89dBdc89E08A133271be3d104128Edb/info.json new file mode 100644 index 0000000000000..fbdbe579fcaa6 --- /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": "twitter", + "url": "https://twitter.com/wikicatcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wiki-cat/" + } + ] +} diff --git a/blockchains/smartchain/assets/0x6Ec90334d89dBdc89E08A133271be3d104128Edb/logo.png b/blockchains/smartchain/assets/0x6Ec90334d89dBdc89E08A133271be3d104128Edb/logo.png new file mode 100644 index 0000000000000..60bee77085fc1 Binary files /dev/null and b/blockchains/smartchain/assets/0x6Ec90334d89dBdc89E08A133271be3d104128Edb/logo.png differ diff --git a/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/info.json b/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/info.json new file mode 100644 index 0000000000000..66204c9a0077d --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/logo.png b/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/logo.png new file mode 100644 index 0000000000000..eb0d2ad4684d4 Binary files /dev/null and b/blockchains/smartchain/assets/0x6F64cC61d0d5542E40e6f2828cBddA84507D214D/logo.png differ diff --git a/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/info.json b/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/info.json new file mode 100644 index 0000000000000..503056042612e --- /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": "twitter", + "url": "https://twitter.com/arpaofficial?source=user_profile---------------------------" + }, + { + "name": "telegram", + "url": "https://t.me/arpa_community" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arpa-chain/" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/logo.png b/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/logo.png new file mode 100644 index 0000000000000..457e25381f7b2 Binary files /dev/null and b/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/logo.png differ diff --git a/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/info.json b/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/info.json new file mode 100644 index 0000000000000..c13eefe13b523 --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/logo.png b/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/logo.png new file mode 100644 index 0000000000000..b07113f56e099 Binary files /dev/null and b/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/logo.png differ diff --git a/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json b/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json new file mode 100644 index 0000000000000..6a93578f19dcc --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/logo.png b/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/logo.png new file mode 100644 index 0000000000000..ce53a7652fce9 Binary files /dev/null and b/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/logo.png differ diff --git a/blockchains/smartchain/assets/0x6c6D604D3f07aBE287C1A3dF0281e999A83495C0/info.json b/blockchains/smartchain/assets/0x6c6D604D3f07aBE287C1A3dF0281e999A83495C0/info.json new file mode 100644 index 0000000000000..2fa5aff7c8a8f --- /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 0000000000000..32179bc3c3aad Binary files /dev/null and b/blockchains/smartchain/assets/0x6c6D604D3f07aBE287C1A3dF0281e999A83495C0/logo.png differ diff --git a/blockchains/smartchain/assets/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/info.json b/blockchains/smartchain/assets/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/info.json new file mode 100644 index 0000000000000..a9fa762dbfa1c --- /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": "active", + "id": "0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.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/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/logo.png b/blockchains/smartchain/assets/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/logo.png new file mode 100644 index 0000000000000..514a2adb2071a Binary files /dev/null and b/blockchains/smartchain/assets/0x6e4a971B81CA58045a2AA982EaA3d50C4Ac38F42/logo.png differ diff --git a/blockchains/smartchain/assets/0x6ef238E9E8CD2A96740897761C18894Fc086B9d0/info.json b/blockchains/smartchain/assets/0x6ef238E9E8CD2A96740897761C18894Fc086B9d0/info.json new file mode 100644 index 0000000000000..0859d9a16881f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x6ef238E9E8CD2A96740897761C18894Fc086B9d0/logo.png b/blockchains/smartchain/assets/0x6ef238E9E8CD2A96740897761C18894Fc086B9d0/logo.png new file mode 100644 index 0000000000000..bb43b99a044e4 Binary files /dev/null and b/blockchains/smartchain/assets/0x6ef238E9E8CD2A96740897761C18894Fc086B9d0/logo.png differ diff --git a/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/info.json b/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/info.json index 1aad72269dc61..dedf002d31136 100644 --- a/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/info.json +++ b/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/info.json @@ -1,5 +1,5 @@ { - "name": "Binance-Peg Polkadot Token", + "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", diff --git a/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/info.json b/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/info.json new file mode 100644 index 0000000000000..3cc80c9523a6f --- /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": "twitter", + "url": "https://twitter.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" +} diff --git a/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/logo.png b/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/logo.png new file mode 100644 index 0000000000000..ef14a935f8780 Binary files /dev/null and b/blockchains/smartchain/assets/0x70D8d5B3416888fD05e806195312DD2D9597d50C/logo.png differ diff --git a/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/info.json b/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/info.json index 7cecff81d8d4a..3dad5ac8f3a0a 100644 --- a/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/info.json +++ b/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/info.json @@ -1,5 +1,5 @@ { - "name": "Binance-Peg BTCB Token", + "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", diff --git a/blockchains/smartchain/assets/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0/info.json b/blockchains/smartchain/assets/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0/info.json index 49a970d6a95d3..8be7f4bc3d1c8 100644 --- a/blockchains/smartchain/assets/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0/info.json +++ b/blockchains/smartchain/assets/0x715D400F88C167884bbCc41C5FeA407ed4D2f8A0/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Pegged Axie Infinity Shard", + "name": "BNB pegged Axie Infinity Shard", "website": "https://axieinfinity.com", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x71aB195498b6dC1656aBb4D9233f83Ae5F19495B/info.json b/blockchains/smartchain/assets/0x71aB195498b6dC1656aBb4D9233f83Ae5F19495B/info.json new file mode 100644 index 0000000000000..c16806c21ae27 --- /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": "twitter", + "url": "https://twitter.com/marvin_inu?s=21" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/smartchain/assets/0x71aB195498b6dC1656aBb4D9233f83Ae5F19495B/logo.png b/blockchains/smartchain/assets/0x71aB195498b6dC1656aBb4D9233f83Ae5F19495B/logo.png new file mode 100644 index 0000000000000..d10df7c636707 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 index de34a50293bd3..dc9e22dd7db27 100644 --- a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json +++ b/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "PVM", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x71afF23750db1f4edbE32C942157a478349035b2" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/logo.png b/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/logo.png deleted file mode 100644 index 425cbb5291ad3..0000000000000 Binary files a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/info.json b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/info.json new file mode 100644 index 0000000000000..da53cb67bf5d2 --- /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": "twitter", + "url": "https://twitter.com/Sekuyaofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sekuya/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sekuya" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/logo.png b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/logo.png new file mode 100644 index 0000000000000..aab7d66f52860 Binary files /dev/null and b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/logo.png differ diff --git a/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/info.json b/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/info.json new file mode 100644 index 0000000000000..6bd73f098daa5 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/logo.png b/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/logo.png new file mode 100644 index 0000000000000..c1c81990c3fa0 Binary files /dev/null and b/blockchains/smartchain/assets/0x71e72DdE4152D274afD1F2DB43531Ed9E44A78Fa/logo.png differ diff --git a/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/info.json b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/info.json new file mode 100644 index 0000000000000..359c4030d6131 --- /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": "twitter", + "url": "https://twitter.com/web3met" + }, + { + "name": "telegram", + "url": "https://t.me/W3MWEB3MET" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x7208a2671a2f96950d44c6daaf24719ce44dea78#code#L1" + } + ], + "tags": [ + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/logo.png b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/logo.png new file mode 100644 index 0000000000000..99bcbded70bf3 Binary files /dev/null and b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/logo.png differ diff --git a/blockchains/smartchain/assets/0x721F40adC793e951EdF2ECE86376e7a103211252/info.json b/blockchains/smartchain/assets/0x721F40adC793e951EdF2ECE86376e7a103211252/info.json new file mode 100644 index 0000000000000..28828daccb39a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..fb21b12f83f86 Binary files /dev/null and b/blockchains/smartchain/assets/0x721F40adC793e951EdF2ECE86376e7a103211252/logo.png differ diff --git a/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/info.json b/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/info.json new file mode 100644 index 0000000000000..23563aa03a09b --- /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": "twitter", + "url": "https://twitter.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 0000000000000..1eb8ea0651d8d Binary files /dev/null and b/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/logo.png differ diff --git a/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/info.json b/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/info.json new file mode 100644 index 0000000000000..5319d41fb3924 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/logo.png b/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/logo.png new file mode 100644 index 0000000000000..ac453498ca103 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 0000000000000..840376fa71500 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x73419De8E3E26A17e0E6b0436e29dd04A25B061D/logo.png b/blockchains/smartchain/assets/0x73419De8E3E26A17e0E6b0436e29dd04A25B061D/logo.png new file mode 100644 index 0000000000000..448723cbdec4b 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 0000000000000..25a177700dd13 --- /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": "twitter", + "url": "https://twitter.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/" + } + ] +} diff --git a/blockchains/smartchain/assets/0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB/logo.png b/blockchains/smartchain/assets/0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB/logo.png new file mode 100644 index 0000000000000..098bff1b3fb0f 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 0000000000000..ba3c5b1c1d83c --- /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": "twitter", + "url": "https://twitter.com/zedxionc" + }, + { + "name": "telegram", + "url": "https://t.me/zedxion" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usdz/" + } + ], + "tags": [ + "binance-peg" + ] +} diff --git a/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/logo.png b/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/logo.png new file mode 100644 index 0000000000000..b1298b9670e23 Binary files /dev/null and b/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/logo.png differ diff --git a/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/info.json b/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/info.json new file mode 100644 index 0000000000000..7186dd12318fa --- /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": "twitter", + "url": "https://twitter.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 0000000000000..22d28ab4739aa Binary files /dev/null and b/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/logo.png differ diff --git a/blockchains/smartchain/assets/0x739e81BCd49854d7BDF526302989f14A2E7994B2/info.json b/blockchains/smartchain/assets/0x739e81BCd49854d7BDF526302989f14A2E7994B2/info.json new file mode 100644 index 0000000000000..70ee3ee43c321 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..c4e8d94b1a3c0 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 0000000000000..4ee11a010daa3 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..beb8f70c36159 Binary files /dev/null and b/blockchains/smartchain/assets/0x7403802c0FFeE2d83FB13513e23aAF4a3a9C69f0/logo.png differ diff --git a/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/info.json b/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/info.json new file mode 100644 index 0000000000000..10d51dfe589bf --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/logo.png b/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/logo.png new file mode 100644 index 0000000000000..e501e346f6761 Binary files /dev/null and b/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/logo.png differ diff --git a/blockchains/smartchain/assets/0x74f08aF7528Ffb751e3A435ddD779b5C4565e684/info.json b/blockchains/smartchain/assets/0x74f08aF7528Ffb751e3A435ddD779b5C4565e684/info.json new file mode 100644 index 0000000000000..021eb1b3aeced --- /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": "twitter", + "url": "https://twitter.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 0000000000000..ce8521806bf7d Binary files /dev/null and b/blockchains/smartchain/assets/0x74f08aF7528Ffb751e3A435ddD779b5C4565e684/logo.png differ diff --git a/blockchains/smartchain/assets/0x75344E5693ed5ecAdF4f292fFeb866c2cF8afCF1/info.json b/blockchains/smartchain/assets/0x75344E5693ed5ecAdF4f292fFeb866c2cF8afCF1/info.json new file mode 100644 index 0000000000000..19cb31ba2d594 --- /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 0000000000000..20b80f3340234 Binary files /dev/null and b/blockchains/smartchain/assets/0x75344E5693ed5ecAdF4f292fFeb866c2cF8afCF1/logo.png differ diff --git a/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/info.json b/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/info.json new file mode 100644 index 0000000000000..c5163693d96f7 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6b18ca203bf15 Binary files /dev/null and b/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/logo.png differ diff --git a/blockchains/smartchain/assets/0x75aFA9915B2210Cd6329E820af0365e932bC1dd5/info.json b/blockchains/smartchain/assets/0x75aFA9915B2210Cd6329E820af0365e932bC1dd5/info.json new file mode 100644 index 0000000000000..b7cedd22c7df3 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7d5d7d9ff3b51 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 0000000000000..1ee4eb74d7ba1 --- /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": "twitter", + "url": "https://twitter.com/pvcmeta" + }, + { + "name": "github", + "url": "https://github.com/pvcmetaofficial" + }, + { + "name": "telegram", + "url": "https://t.me/PVCMETATKN" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pvc-meta/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/logo.png b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/logo.png new file mode 100644 index 0000000000000..828b3695b69ba Binary files /dev/null and b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/logo.png differ diff --git a/blockchains/smartchain/assets/0x76A797A59Ba2C17726896976B7B3747BfD1d220f/info.json b/blockchains/smartchain/assets/0x76A797A59Ba2C17726896976B7B3747BfD1d220f/info.json new file mode 100644 index 0000000000000..a362d5736a5d8 --- /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 0000000000000..9ef1d563283d0 Binary files /dev/null and b/blockchains/smartchain/assets/0x76A797A59Ba2C17726896976B7B3747BfD1d220f/logo.png differ diff --git a/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/info.json b/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/info.json new file mode 100644 index 0000000000000..38d8335d04873 --- /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": "twitter", + "url": "https://twitter.com/pulseaiapp" + }, + { + "name": "telegram", + "url": "https://t.me/pulseaiapp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pulseai/" + } + ] +} diff --git a/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/logo.png b/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/logo.png new file mode 100644 index 0000000000000..212f853d426b3 Binary files /dev/null and b/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/logo.png differ diff --git a/blockchains/smartchain/assets/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5/info.json b/blockchains/smartchain/assets/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5/info.json new file mode 100644 index 0000000000000..24c642c39e8e4 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..eb1014fc5b69a Binary files /dev/null and b/blockchains/smartchain/assets/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5/logo.png differ diff --git a/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/info.json b/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/info.json new file mode 100644 index 0000000000000..992da7161686f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/logo.png b/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/logo.png new file mode 100644 index 0000000000000..e75f2037588f0 Binary files /dev/null and b/blockchains/smartchain/assets/0x78F5d389F5CDCcFc41594aBaB4B0Ed02F31398b3/logo.png differ diff --git a/blockchains/smartchain/assets/0x797Bb0BeeA437D2762A755ea911C0046C1284568/info.json b/blockchains/smartchain/assets/0x797Bb0BeeA437D2762A755ea911C0046C1284568/info.json new file mode 100644 index 0000000000000..7ccfdc6fdf4af --- /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": "twitter", + "url": "https://twitter.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 0000000000000..fd08f102c9cf6 Binary files /dev/null and b/blockchains/smartchain/assets/0x797Bb0BeeA437D2762A755ea911C0046C1284568/logo.png differ diff --git a/blockchains/smartchain/assets/0x798aF7725376765e7F3cA86d5e0Cf1BEaEf19F34/info.json b/blockchains/smartchain/assets/0x798aF7725376765e7F3cA86d5e0Cf1BEaEf19F34/info.json new file mode 100644 index 0000000000000..91a9adbd48c3c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7f2215bdfa53a Binary files /dev/null and b/blockchains/smartchain/assets/0x798aF7725376765e7F3cA86d5e0Cf1BEaEf19F34/logo.png differ diff --git a/blockchains/smartchain/assets/0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6/info.json b/blockchains/smartchain/assets/0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6/info.json new file mode 100644 index 0000000000000..2373370f58f85 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a1b756f39f55f Binary files /dev/null and b/blockchains/smartchain/assets/0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6/logo.png differ diff --git a/blockchains/smartchain/assets/0x7BA3cD00229C1beCC95a4B056fF15C123DcB456D/info.json b/blockchains/smartchain/assets/0x7BA3cD00229C1beCC95a4B056fF15C123DcB456D/info.json index 515d17fb283cb..8c78d3eba33a2 100644 --- a/blockchains/smartchain/assets/0x7BA3cD00229C1beCC95a4B056fF15C123DcB456D/info.json +++ b/blockchains/smartchain/assets/0x7BA3cD00229C1beCC95a4B056fF15C123DcB456D/info.json @@ -1,7 +1,7 @@ { "name": "SpaceVikings Token ", "website": "https://SpaceVikings.finance", - "description": "SpaceVikings is a Danish DeFi Crypto project with real life use cases ", + "description": "SpaceVikings is a Danish DeFi Crypto project with real life use cases", "explorer": "https://bscscan.com/token/0x7BA3cD00229C1beCC95a4B056fF15C123DcB456D", "type": "BEP20", "symbol": "SVT", diff --git a/blockchains/smartchain/assets/0x7CF23DfF6DEDBf80211FfaDa15Ae01463C47D034/info.json b/blockchains/smartchain/assets/0x7CF23DfF6DEDBf80211FfaDa15Ae01463C47D034/info.json index 147425a0b42cf..abcd42f96f312 100644 --- a/blockchains/smartchain/assets/0x7CF23DfF6DEDBf80211FfaDa15Ae01463C47D034/info.json +++ b/blockchains/smartchain/assets/0x7CF23DfF6DEDBf80211FfaDa15Ae01463C47D034/info.json @@ -1,7 +1,7 @@ { "name": "legion For Justice", "website": "https://legionforjustice.com/", - "description": "Legion For Justice ($LEGION) is a community-driven project built on Binance Smart Chain.", + "description": "Legion For Justice is a community-driven project built on Binance Smart Chain.", "explorer": "https://bscscan.com/token/0x7cf23dff6dedbf80211ffada15ae01463c47d034", "type": "BEP20", "symbol": "LEGION", diff --git a/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json b/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json index f8a558e805bec..2280e81e91ee8 100644 --- a/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json +++ b/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json @@ -1,7 +1,7 @@ { - "name": "GMT Token", - "website": "https://gmt.io/", - "description": "A token backed by real assets that brings in constantly growing daily BTC income to its owner.", + "name": "Gomining", + "website": "https://gomining.com/", + "description": "Gomining is an exchange token backed by a Top 10 global bitcoin mining project.", "explorer": "https://bscscan.com/token/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989", "type": "BEP20", "symbol": "GMT", @@ -27,7 +27,7 @@ }, { "name": "whitepaper", - "url": "https://gmt.io/white-paper.pdf" + "url": "https://gomining.com/white-paper.pdf" }, { "name": "source_code", @@ -39,7 +39,7 @@ }, { "name": "coingecko", - "url": "https://coingecko.com/en/coins/gmt-token" + "url": "https://coingecko.com/coins/gmt-token" }, { "name": "medium", @@ -57,4 +57,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png b/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png index f30e4ef05ea4c..1d15389d09576 100644 Binary files a/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png and b/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/logo.png differ diff --git a/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/info.json b/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/info.json new file mode 100644 index 0000000000000..89a4fd82b445e --- /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": "twitter", + "url": "https://twitter.com/InfiblueNFT" + }, + { + "name": "whitepaper", + "url": "https://medium.com/@InfiblueWorld/infiblue-whitepaper-v1-0-8bb685def026" + } + ] +} diff --git a/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/logo.png b/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/logo.png new file mode 100644 index 0000000000000..af881ef9e76b9 Binary files /dev/null and b/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/logo.png differ diff --git a/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/info.json b/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/info.json new file mode 100644 index 0000000000000..d6a3054e9e916 --- /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": "twitter", + "url": "https://twitter.com/EngToken" + }, + { + "name": "telegram", + "url": "https://t.me/endlessbg" + }, + { + "name": "whitepaper", + "url": "https://endlessboardgame.com/Content/ENG%20Whitepaper.pdf" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/logo.png b/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/logo.png new file mode 100644 index 0000000000000..311f7db857b2a Binary files /dev/null and b/blockchains/smartchain/assets/0x7EeFB6AeB8BC2c1ba6be1D4273eC0758a1321272/logo.png differ diff --git a/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/info.json b/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/info.json index b2307092e0a52..cdae47bc92f98 100644 --- a/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/info.json +++ b/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/info.json @@ -1,5 +1,5 @@ { - "name": "Binance-Peg YFII.finance Token", + "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", diff --git a/blockchains/smartchain/assets/0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86/info.json b/blockchains/smartchain/assets/0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86/info.json new file mode 100644 index 0000000000000..5f95122a74172 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86/logo.png b/blockchains/smartchain/assets/0x7b665B2F633d9363b89A98b094B1F9E732Bd8F86/logo.png new file mode 100644 index 0000000000000..f19876470dc23 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 0000000000000..8a9584b63b86f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/logo.png b/blockchains/smartchain/assets/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/logo.png new file mode 100644 index 0000000000000..533446f22fc9b Binary files /dev/null and b/blockchains/smartchain/assets/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/logo.png differ diff --git a/blockchains/smartchain/assets/0x7cF551258d6871b72EE1bD1624588a6245bF48c4/info.json b/blockchains/smartchain/assets/0x7cF551258d6871b72EE1bD1624588a6245bF48c4/info.json new file mode 100644 index 0000000000000..3c62c13a51b99 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..2e90568483fb1 Binary files /dev/null and b/blockchains/smartchain/assets/0x7cF551258d6871b72EE1bD1624588a6245bF48c4/logo.png differ diff --git a/blockchains/smartchain/assets/0x7d220240Cf958C5c47f2DAAC821dB965f9837e82/info.json b/blockchains/smartchain/assets/0x7d220240Cf958C5c47f2DAAC821dB965f9837e82/info.json new file mode 100644 index 0000000000000..4b5c91fb4894b --- /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": "twitter", + "url": "https://twitter.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 0000000000000..71b5ec9ca83ab 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 0000000000000..57651d1c3d3c6 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7324dcc1e3bde Binary files /dev/null and b/blockchains/smartchain/assets/0x7d38315b92d0E7A85B35B2b7FE969B25935619D7/logo.png differ diff --git a/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json b/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json new file mode 100644 index 0000000000000..af57062f3958b --- /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": "active", + "id": "0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/logo.png b/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/logo.png new file mode 100644 index 0000000000000..295e34eadfc14 Binary files /dev/null and b/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/logo.png differ diff --git a/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/info.json b/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/info.json new file mode 100644 index 0000000000000..79b6b3fc165cb --- /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": "twitter", + "url": "https://twitter.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 0000000000000..795c86beca4e6 Binary files /dev/null and b/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/logo.png differ diff --git a/blockchains/smartchain/assets/0x7e9AB560d37E62883E882474b096643caB234B65/info.json b/blockchains/smartchain/assets/0x7e9AB560d37E62883E882474b096643caB234B65/info.json new file mode 100644 index 0000000000000..1cc85fdd90b4c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a16cde4bd1f7d Binary files /dev/null and b/blockchains/smartchain/assets/0x7e9AB560d37E62883E882474b096643caB234B65/logo.png differ diff --git a/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/info.json b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/info.json new file mode 100644 index 0000000000000..973ec8a77a8ba --- /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": "twitter", + "url": "https://twitter.com/GridxEcosystem" + }, + { + "name": "github", + "url": "https://github.com/gridxeco" + }, + { + "name": "telegram", + "url": "https://t.me/gridxfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gridx-ecosystem/" + }, + { + "name": "whitepaper", + "url": "https://gridxecosystem.com/img/whitepaper.pdf" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/logo.png b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/logo.png new file mode 100644 index 0000000000000..ee164b461d0ff Binary files /dev/null and b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/logo.png differ diff --git a/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/info.json b/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/info.json new file mode 100644 index 0000000000000..61f0a9f1de538 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..82dd911e61060 Binary files /dev/null and b/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/logo.png differ diff --git a/blockchains/smartchain/assets/0x8077398Ff2c530f129a6dd8D7F1E8840312440CD/info.json b/blockchains/smartchain/assets/0x8077398Ff2c530f129a6dd8D7F1E8840312440CD/info.json new file mode 100644 index 0000000000000..a5100aaba167a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..ab21f73547d2b Binary files /dev/null and b/blockchains/smartchain/assets/0x8077398Ff2c530f129a6dd8D7F1E8840312440CD/logo.png differ diff --git a/blockchains/smartchain/assets/0x818835503F55283cd51A4399f595e295A9338753/info.json b/blockchains/smartchain/assets/0x818835503F55283cd51A4399f595e295A9338753/info.json new file mode 100644 index 0000000000000..058822fe201ab --- /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": "twitter", + "url": "https://twitter.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 0000000000000..72e3d645b5f92 Binary files /dev/null and b/blockchains/smartchain/assets/0x818835503F55283cd51A4399f595e295A9338753/logo.png differ diff --git a/blockchains/smartchain/assets/0x82A479264B36104be4FDb91618a59A4fC0F50650/info.json b/blockchains/smartchain/assets/0x82A479264B36104be4FDb91618a59A4fC0F50650/info.json index 82af291e57a3f..6b14462f6980d 100644 --- a/blockchains/smartchain/assets/0x82A479264B36104be4FDb91618a59A4fC0F50650/info.json +++ b/blockchains/smartchain/assets/0x82A479264B36104be4FDb91618a59A4fC0F50650/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "BIRB", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x82A479264B36104be4FDb91618a59A4fC0F50650", "tags": [ "deflationary" @@ -37,4 +37,4 @@ "url": "https://reddit.com/r/BirbDefi/" } ] -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0x82A479264B36104be4FDb91618a59A4fC0F50650/logo.png b/blockchains/smartchain/assets/0x82A479264B36104be4FDb91618a59A4fC0F50650/logo.png deleted file mode 100644 index 8f0d19064972b..0000000000000 Binary files a/blockchains/smartchain/assets/0x82A479264B36104be4FDb91618a59A4fC0F50650/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/info.json b/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/info.json new file mode 100644 index 0000000000000..7b94f2bf60181 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/logo.png b/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/logo.png new file mode 100644 index 0000000000000..c2d1c4b7fa1b2 Binary files /dev/null and b/blockchains/smartchain/assets/0x83300C06aDFd8225560f8505Dba7493A9B60194C/logo.png differ diff --git a/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/info.json b/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/info.json new file mode 100644 index 0000000000000..0c47d1d9a949d --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/logo.png b/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/logo.png new file mode 100644 index 0000000000000..f13b159d3f3d1 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 0000000000000..83a82d2032fb5 --- /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 0000000000000..8cd9b22a7f253 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 0000000000000..a90531e5d0663 --- /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 0000000000000..40a2e3794a193 Binary files /dev/null and b/blockchains/smartchain/assets/0x8397Eb3EC07615cE88ff854d08e9E27B5155128b/logo.png differ diff --git a/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/info.json b/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/info.json new file mode 100644 index 0000000000000..4dd183448c90a --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/logo.png b/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/logo.png new file mode 100644 index 0000000000000..ad226e1f929e3 Binary files /dev/null and b/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/logo.png differ diff --git a/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/info.json b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/info.json new file mode 100644 index 0000000000000..39386a049c506 --- /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": "twitter", + "url": "https://twitter.com/maga_bnb" + }, + { + "name": "github", + "url": "https://github.com/trumpmagadev" + }, + { + "name": "telegram", + "url": "https://t.me/trump_eng" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x8479b19c5a3c43e024b2543582af0fc2fef2e6a8#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trump-maga/" + }, + { + "name": "docs", + "url": "https://doc.trumpmaga.dev/" + }, + { + "name": "medium", + "url": "https://medium.com/@maga_bnb" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/logo.png b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/logo.png new file mode 100644 index 0000000000000..e40c5e6a14a71 Binary files /dev/null and b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/logo.png differ diff --git a/blockchains/smartchain/assets/0x8595F9dA7b868b1822194fAEd312235E43007b49/info.json b/blockchains/smartchain/assets/0x8595F9dA7b868b1822194fAEd312235E43007b49/info.json index ababcdb0293d3..ccf2aad7f7a63 100644 --- a/blockchains/smartchain/assets/0x8595F9dA7b868b1822194fAEd312235E43007b49/info.json +++ b/blockchains/smartchain/assets/0x8595F9dA7b868b1822194fAEd312235E43007b49/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg BitTorrent", + "name": "BNB pegged BitTorrent", "website": "https://bittorrent.com/btt", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x8597ba143AC509189E89aaB3BA28d661A5dD9830/info.json b/blockchains/smartchain/assets/0x8597ba143AC509189E89aaB3BA28d661A5dD9830/info.json index 14fee56f041f7..e702af3889006 100644 --- a/blockchains/smartchain/assets/0x8597ba143AC509189E89aaB3BA28d661A5dD9830/info.json +++ b/blockchains/smartchain/assets/0x8597ba143AC509189E89aaB3BA28d661A5dD9830/info.json @@ -1,5 +1,5 @@ { - "name": "VanCat Token", + "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", @@ -7,5 +7,5 @@ "symbol": "VANCAT", "type": "BEP20", "decimals": 0, - "status": "active" + "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 0000000000000..7861f3bc7507c --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/logo.png b/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/logo.png new file mode 100644 index 0000000000000..64dec636e0ee1 Binary files /dev/null and b/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/logo.png differ diff --git a/blockchains/smartchain/assets/0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B/info.json b/blockchains/smartchain/assets/0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B/info.json index ae46e6c94b199..5949ce6dc688d 100644 --- a/blockchains/smartchain/assets/0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B/info.json +++ b/blockchains/smartchain/assets/0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B/info.json @@ -6,6 +6,6 @@ "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": "active", + "status": "abandoned", "id": "0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x861f1E1397daD68289e8f6a09a2ebb567f1B895C/info.json b/blockchains/smartchain/assets/0x861f1E1397daD68289e8f6a09a2ebb567f1B895C/info.json new file mode 100644 index 0000000000000..693ba7420d902 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..37aac3a32742f Binary files /dev/null and b/blockchains/smartchain/assets/0x861f1E1397daD68289e8f6a09a2ebb567f1B895C/logo.png differ diff --git a/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/info.json b/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/info.json index 9f1fe3cf5ce32..a67beeaba02d4 100644 --- a/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/info.json +++ b/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/info.json @@ -1,7 +1,7 @@ { "name": "Venus CAKE", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "description": "Venus is a decentralized finance (DeFi) algorithmic money market protocol on BNB Chain.", "links": [ { "name": "twitter", diff --git a/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/logo.png b/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/logo.png index ed1fb98cd835b..afc937dc75ce0 100644 Binary files a/blockchains/smartchain/assets/0x86aC3974e2BD0d60825230fa6F355fF11409df5c/logo.png 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 0000000000000..8fd135b3bbc91 --- /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": "twitter", + "url": "https://twitter.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/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json b/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json index 31b1f1cc19acd..a5e3787f618f3 100644 --- a/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json +++ b/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json @@ -1,7 +1,7 @@ { - "name": "Bholdus Token", - "website": "https://bholdus.com", - "description": "A blockchain dedicated to DeFi apps and NFTs with unprecedented transaction throughput and security.", + "name": "BHO Token", + "website": "https://bho.network", + "description": "Bring blockchain to life.", "explorer": "https://bscscan.com/token/0x8717e80eff08f53a45b4a925009957e14860a8a8", "id": "0x8717e80EfF08F53A45b4A925009957E14860A8a8", "type": "BEP20", @@ -11,19 +11,20 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/bholdus" - }, - { - "name": "medium", - "url": "https://annexfinance.medium.com/" + "url": "https://twitter.com/bhonetwork" }, { "name": "telegram", - "url": "https://t.me/Bholdus_ENcommunity" + "url": "https://t.me/bhonetwork_en" }, { "name": "github", - "url": "https://github.com/Bholdus" + "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 index 69693c82ef23a..52474c1d84462 100644 Binary files a/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/logo.png and b/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/logo.png differ diff --git a/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/info.json b/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/info.json index a877f346e3f83..a64b191e68a3a 100644 --- a/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/info.json +++ b/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/info.json @@ -1,7 +1,7 @@ { "name": "Venus BTC", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/logo.png b/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/logo.png old mode 100755 new mode 100644 index fe099027769b1..17835fe337352 Binary files a/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/logo.png 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 0000000000000..5850b8922011f --- /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": "twitter", + "url": "https://twitter.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/0x88888888Fc33e4ECba8958c0c2AD361089E19885/info.json b/blockchains/smartchain/assets/0x88888888Fc33e4ECba8958c0c2AD361089E19885/info.json new file mode 100644 index 0000000000000..fdc3732c8f9c4 --- /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": "twitter", + "url": "https://twitter.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/" + } + ] +} diff --git a/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/info.json b/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/info.json index 660901f6812ba..26c82e0210b78 100644 --- a/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/info.json +++ b/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg yearn.finance", + "name": "BNB pegged yearn.finance", "website": "https://yearn.finance/", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x89e4818eD21F668D65f7851839d2dD8cE5D208b0/info.json b/blockchains/smartchain/assets/0x89e4818eD21F668D65f7851839d2dD8cE5D208b0/info.json new file mode 100644 index 0000000000000..999fd2d058ca2 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..1909242e57be2 Binary files /dev/null and b/blockchains/smartchain/assets/0x89e4818eD21F668D65f7851839d2dD8cE5D208b0/logo.png differ diff --git a/blockchains/smartchain/assets/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f/info.json b/blockchains/smartchain/assets/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f/info.json index ad37d21777377..1c5763e4a637f 100644 --- a/blockchains/smartchain/assets/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f/info.json +++ b/blockchains/smartchain/assets/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f/info.json @@ -1,14 +1,72 @@ { "name": "Cake Monster", - "website": "https://cake.monster", - "description": "A hyper-deflationary and elastic supply token that has unique reserve and reward mechanisms featuring an automated hybrid monetary policy.", - "explorer": "https://bscscan.com/token/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f", "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": "twitter", + "url": "https://twitter.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" + "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 index 7f136c3c9b177..c7ff21db16fa5 100644 Binary files a/blockchains/smartchain/assets/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f/logo.png and b/blockchains/smartchain/assets/0x8A5d7FCD4c90421d21d30fCC4435948aC3618B2f/logo.png differ diff --git a/blockchains/smartchain/assets/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d/info.json b/blockchains/smartchain/assets/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d/info.json index 41ca5f6297ea7..a33112bb23206 100644 --- a/blockchains/smartchain/assets/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d/info.json +++ b/blockchains/smartchain/assets/0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg USD Coin", + "name": "BNB pegged USD Coin", "website": "https://www.centre.io", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97/info.json b/blockchains/smartchain/assets/0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97/info.json index fe35beab52c60..d8bda042323dc 100644 --- a/blockchains/smartchain/assets/0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97/info.json +++ b/blockchains/smartchain/assets/0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "BNX", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97", "links": [ { diff --git a/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/info.json b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/info.json new file mode 100644 index 0000000000000..afe12c9d79239 --- /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": "twitter", + "url": "https://twitter.com/RimaunangisRXT" + }, + { + "name": "facebook", + "url": "https://facebook.com/Rimaunangis-Digital-LLC-107415268757938/" + }, + { + "name": "telegram", + "url": "https://t.me/rimaunangis_official" + }, + { + "name": "telegram_news", + "url": "https://t.me/Rimau_Nangis" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rimaunangis/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rimaunangis" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/logo.png b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/logo.png new file mode 100644 index 0000000000000..232f1cd502cb0 Binary files /dev/null and b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/logo.png differ diff --git a/blockchains/smartchain/assets/0x8Dcff5Ba47aa24CFEb73A2262b7cD6D18739600c/info.json b/blockchains/smartchain/assets/0x8Dcff5Ba47aa24CFEb73A2262b7cD6D18739600c/info.json new file mode 100644 index 0000000000000..39abd1a3b12ba --- /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 0000000000000..0493eead87856 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 0000000000000..463b91e045424 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..eceba73064592 Binary files /dev/null and b/blockchains/smartchain/assets/0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4/logo.png differ diff --git a/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/info.json b/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/info.json new file mode 100644 index 0000000000000..e5f2da00cb39b --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/logo.png b/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/logo.png new file mode 100644 index 0000000000000..5e3e2f53c067b Binary files /dev/null and b/blockchains/smartchain/assets/0x8F49733210700D38098d7375C221c7d02F700cc8/logo.png differ diff --git a/blockchains/smartchain/assets/0x8a505D5Cb3Db9fcf404c0A72aF3dF8Be4eFB707c/info.json b/blockchains/smartchain/assets/0x8a505D5Cb3Db9fcf404c0A72aF3dF8Be4eFB707c/info.json new file mode 100644 index 0000000000000..f74e340492c78 --- /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 0000000000000..c2a20becfc4a3 Binary files /dev/null and b/blockchains/smartchain/assets/0x8a505D5Cb3Db9fcf404c0A72aF3dF8Be4eFB707c/logo.png differ diff --git a/blockchains/smartchain/assets/0x8b04E56A8cd5f4D465b784ccf564899F30Aaf88C/info.json b/blockchains/smartchain/assets/0x8b04E56A8cd5f4D465b784ccf564899F30Aaf88C/info.json new file mode 100644 index 0000000000000..b0487ac61b830 --- /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 0000000000000..715ef20db8ea7 Binary files /dev/null and b/blockchains/smartchain/assets/0x8b04E56A8cd5f4D465b784ccf564899F30Aaf88C/logo.png differ diff --git a/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json b/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json new file mode 100644 index 0000000000000..446a057492396 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/logo.png b/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/logo.png new file mode 100644 index 0000000000000..6c156aba62660 Binary files /dev/null and b/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/logo.png differ diff --git a/blockchains/smartchain/assets/0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998/info.json b/blockchains/smartchain/assets/0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998/info.json new file mode 100644 index 0000000000000..0b94b81d0767c --- /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": "twitter", + "url": "https://twitter.com/AncientKingNft" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCpSghae57xjFYfnUyBulpIw" + }, + { + "name": "discord", + "url": "https://discord.com/invite/gXHFkvva6a" + } + ] +} diff --git a/blockchains/smartchain/assets/0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998/logo.png b/blockchains/smartchain/assets/0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998/logo.png new file mode 100644 index 0000000000000..857c075dc57fb Binary files /dev/null and b/blockchains/smartchain/assets/0x8c282eA9eACd1B95D44a3A18DCdd1D0472868998/logo.png differ diff --git a/blockchains/smartchain/assets/0x8e17ed70334C87eCE574C9d537BC153d8609e2a3/info.json b/blockchains/smartchain/assets/0x8e17ed70334C87eCE574C9d537BC153d8609e2a3/info.json new file mode 100644 index 0000000000000..1dedaef2cdf27 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d5740aecada53 Binary files /dev/null and b/blockchains/smartchain/assets/0x8e17ed70334C87eCE574C9d537BC153d8609e2a3/logo.png differ diff --git a/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json b/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json new file mode 100644 index 0000000000000..ea97a972e367a --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/logo.png b/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/logo.png new file mode 100644 index 0000000000000..f21a9869c8c27 Binary files /dev/null and b/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/logo.png differ diff --git a/blockchains/smartchain/assets/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21/info.json b/blockchains/smartchain/assets/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21/info.json index 61051639599be..4a5270f55da7c 100644 --- a/blockchains/smartchain/assets/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21/info.json +++ b/blockchains/smartchain/assets/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21", "links": [ { diff --git a/blockchains/smartchain/assets/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21/logo.png b/blockchains/smartchain/assets/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21/logo.png deleted file mode 100644 index 9f82de1935a9c..0000000000000 Binary files a/blockchains/smartchain/assets/0x8fE8df37335EDB6E9F41F6baF550d2A973F48f21/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/info.json b/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/info.json index aaf1bc0e0084c..6f1572d15df56 100644 --- a/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/info.json +++ b/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/info.json @@ -1,5 +1,5 @@ { - "name": "Binance-Peg Bitcoin Cash Token", + "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", diff --git a/blockchains/smartchain/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json b/blockchains/smartchain/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/info.json new file mode 100644 index 0000000000000..812196c37be62 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..08ebbc0bff068 Binary files /dev/null and b/blockchains/smartchain/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/logo.png differ diff --git a/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/info.json b/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/info.json new file mode 100644 index 0000000000000..8a9f38bce4e35 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/logo.png b/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/logo.png new file mode 100644 index 0000000000000..44ccdd57bb753 Binary files /dev/null and b/blockchains/smartchain/assets/0x9096B4309224d751FCB43d7eB178dcFFc122aD15/logo.png differ diff --git a/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/info.json b/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/info.json new file mode 100644 index 0000000000000..44f0a99822563 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/logo.png b/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/logo.png new file mode 100644 index 0000000000000..fa9315e102908 Binary files /dev/null and b/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/logo.png differ diff --git a/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/info.json b/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/info.json new file mode 100644 index 0000000000000..9b168bbce3746 --- /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": "twitter", + "url": "https://twitter.com/RijentC" + }, + { + "name": "facebook", + "url": "https://facebook.com/rijentcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rijent-coin/" + } + ], + "tags": [ + "staking" + ] +} diff --git a/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/logo.png b/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/logo.png new file mode 100644 index 0000000000000..af630eec63adf Binary files /dev/null and b/blockchains/smartchain/assets/0x913aFbBA462d6ae230344209d0Bd11CE3CE92Ed1/logo.png differ diff --git a/blockchains/smartchain/assets/0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A/info.json b/blockchains/smartchain/assets/0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A/info.json new file mode 100644 index 0000000000000..b6b478e1ea878 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..5e2379d4a886b Binary files /dev/null and b/blockchains/smartchain/assets/0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A/logo.png differ diff --git a/blockchains/smartchain/assets/0x91Ca579B0D47E5cfD5D0862c21D5659d39C8eCf0/info.json b/blockchains/smartchain/assets/0x91Ca579B0D47E5cfD5D0862c21D5659d39C8eCf0/info.json new file mode 100644 index 0000000000000..496ab5475939a --- /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 0000000000000..c9ca83078881a Binary files /dev/null and b/blockchains/smartchain/assets/0x91Ca579B0D47E5cfD5D0862c21D5659d39C8eCf0/logo.png differ diff --git a/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/info.json b/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/info.json new file mode 100644 index 0000000000000..22f9280bff3fd --- /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 TWITTER ACCOUNT - IL CAPO OF CRYPTO! WE ALL KNOW WHO IS CRYPTO CAPO, AKA \"biggest bull trap i ever seen\" \"Still short and strong\" AND MORE JOKES LIKE THAT!", + "explorer": "https://bscscan.com/token/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624", + "status": "active", + "id": "0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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 0000000000000..c23da603c64db Binary files /dev/null and b/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/logo.png differ diff --git a/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/info.json b/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/info.json new file mode 100644 index 0000000000000..e66756ab26479 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..91bbd52b5176e Binary files /dev/null and b/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/logo.png differ diff --git a/blockchains/smartchain/assets/0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6/info.json b/blockchains/smartchain/assets/0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6/info.json new file mode 100644 index 0000000000000..107f15fec6f5e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..b97ae5f87f372 Binary files /dev/null and b/blockchains/smartchain/assets/0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6/logo.png differ diff --git a/blockchains/smartchain/assets/0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B/info.json b/blockchains/smartchain/assets/0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B/info.json new file mode 100644 index 0000000000000..a6d2e3920d373 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B/logo.png b/blockchains/smartchain/assets/0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B/logo.png new file mode 100644 index 0000000000000..6219717195f67 Binary files /dev/null and b/blockchains/smartchain/assets/0x95EE03e1e2C5c4877f9A298F1C0D6c98698FAB7B/logo.png differ diff --git a/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/info.json b/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/info.json index 3e69e5c0dc431..18fdbae94f528 100644 --- a/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/info.json +++ b/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/info.json @@ -1,7 +1,7 @@ { "name": "Venus BUSD", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0x95c78222B3D6e262426483D42CfA53685A67Ab9D", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/logo.png b/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/logo.png index 08dd6c6270b6e..dedb7029040e0 100644 Binary files a/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/logo.png 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 0000000000000..43748f45688c1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..ec0be6a2f08dd Binary files /dev/null and b/blockchains/smartchain/assets/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59/logo.png differ diff --git a/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json b/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json new file mode 100644 index 0000000000000..9a80141a1e40f --- /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": "active", + "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png b/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png new file mode 100644 index 0000000000000..129342cfae435 Binary files /dev/null and b/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png differ diff --git a/blockchains/smartchain/assets/0x96412902aa9aFf61E13f085e70D3152C6ef2a817/info.json b/blockchains/smartchain/assets/0x96412902aa9aFf61E13f085e70D3152C6ef2a817/info.json new file mode 100644 index 0000000000000..c28776f5a32a9 --- /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 0000000000000..5cfbd9abb2f7c Binary files /dev/null and b/blockchains/smartchain/assets/0x96412902aa9aFf61E13f085e70D3152C6ef2a817/logo.png differ diff --git a/blockchains/smartchain/assets/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5/info.json b/blockchains/smartchain/assets/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5/info.json index 07c5b108963ee..a8e20925141f9 100644 --- a/blockchains/smartchain/assets/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5/info.json +++ b/blockchains/smartchain/assets/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg IoTeX Network", + "name": "BNB pegged IoTeX Network", "website": "https://iotex.io", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/info.json b/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/info.json index 812ce1da165ee..1a126a8a0a4a1 100644 --- a/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/info.json +++ b/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/info.json @@ -1,7 +1,7 @@ { "name": "Venus BETH", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0x972207A639CC1B374B893cc33Fa251b55CEB7c07", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/logo.png b/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/logo.png index 866d79c24958f..43cb66cc79efb 100644 Binary files a/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/logo.png and b/blockchains/smartchain/assets/0x972207A639CC1B374B893cc33Fa251b55CEB7c07/logo.png differ diff --git a/blockchains/smartchain/assets/0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8/info.json b/blockchains/smartchain/assets/0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8/info.json new file mode 100644 index 0000000000000..a0c884758c5a1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..be0c071514d76 Binary files /dev/null and b/blockchains/smartchain/assets/0x9767c8E438Aa18f550208e6d1fDf5f43541cC2c8/logo.png differ diff --git a/blockchains/smartchain/assets/0x9840652DC04fb9db2C43853633f0F62BE6f00f98/info.json b/blockchains/smartchain/assets/0x9840652DC04fb9db2C43853633f0F62BE6f00f98/info.json new file mode 100644 index 0000000000000..53de2aa6bab1c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..11296a606fc2c Binary files /dev/null and b/blockchains/smartchain/assets/0x9840652DC04fb9db2C43853633f0F62BE6f00f98/logo.png differ diff --git a/blockchains/smartchain/assets/0x986854779804799C1d68867F5E03e601E781e41b/info.json b/blockchains/smartchain/assets/0x986854779804799C1d68867F5E03e601E781e41b/info.json new file mode 100644 index 0000000000000..c219246e6b9a2 --- /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 0000000000000..cc8b90ca87f4d Binary files /dev/null and b/blockchains/smartchain/assets/0x986854779804799C1d68867F5E03e601E781e41b/logo.png differ diff --git a/blockchains/smartchain/assets/0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9/info.json b/blockchains/smartchain/assets/0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9/info.json new file mode 100644 index 0000000000000..13d8e8627ca09 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..370b240bdb1d4 Binary files /dev/null and b/blockchains/smartchain/assets/0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9/logo.png differ diff --git a/blockchains/smartchain/assets/0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b/info.json b/blockchains/smartchain/assets/0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b/info.json new file mode 100644 index 0000000000000..b2a9ddf44d9be --- /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": "twitter", + "url": "https://twitter.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 0000000000000..897e2ba524111 Binary files /dev/null and b/blockchains/smartchain/assets/0x98A2500A2C3B8877B0eD5ac3ACC300C50Bf7064b/logo.png differ diff --git a/blockchains/smartchain/assets/0x98f8669F6481EbB341B522fCD3663f79A3d1A6A7/info.json b/blockchains/smartchain/assets/0x98f8669F6481EbB341B522fCD3663f79A3d1A6A7/info.json new file mode 100644 index 0000000000000..d2cae8a3b3ab1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..0de1a12459818 Binary files /dev/null and b/blockchains/smartchain/assets/0x98f8669F6481EbB341B522fCD3663f79A3d1A6A7/logo.png differ diff --git a/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/info.json b/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/info.json index 043315108d767..ce551182b8d92 100644 --- a/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/info.json +++ b/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/info.json @@ -1,7 +1,7 @@ { - "name": "BSC-Peg Thunder Token", + "name": "BNB pegged ThunderCore", "website": "https://bridge.thundercore.com/bsc/", - "description": "BSC-Peg Thunder Token (TT) on Binance Smart Chain. The Bridge allows users to transfer assets between Binance Smart Chain and ThunderCore network. This is a customized version of POA network Bridge", + "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", @@ -12,11 +12,14 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/ThunderProtocol" + "url": "https://twitter.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 index 21e39379e0977..c408c0f2a7f16 100644 Binary files a/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/logo.png and b/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/logo.png differ diff --git a/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json b/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json index 5c1c24f62593b..a749464a0e1ba 100644 --- a/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json +++ b/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json @@ -34,7 +34,6 @@ "nft", "staking", "memes", - "gamefi", - "staking-native" + "gamefi" ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8/info.json b/blockchains/smartchain/assets/0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8/info.json index 74299f8850731..041f8ec5bae4f 100644 --- a/blockchains/smartchain/assets/0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8/info.json +++ b/blockchains/smartchain/assets/0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0x9974F4E6FF49ac39469928E5d7cCa3E8649ae6b8", "links": [ { diff --git a/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/info.json b/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/info.json new file mode 100644 index 0000000000000..5277b1c10dd22 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..3f9f03bb4dbce Binary files /dev/null and b/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/logo.png differ diff --git a/blockchains/smartchain/assets/0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322/info.json b/blockchains/smartchain/assets/0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322/info.json new file mode 100644 index 0000000000000..1b775ddba8f3c --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322/logo.png b/blockchains/smartchain/assets/0x9Ab70e92319f0b9127df78868Fd3655fB9f1E322/logo.png new file mode 100644 index 0000000000000..868658f9ca357 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 index d5f63ef5e246c..4a079c3bff71a 100644 --- a/blockchains/smartchain/assets/0x9Ac983826058b8a9C7Aa1C9171441191232E8404/info.json +++ b/blockchains/smartchain/assets/0x9Ac983826058b8a9C7Aa1C9171441191232E8404/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Synthetix", + "name": "BNB pegged Synthetix", "website": "https://synthetix.io", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/info.json b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/info.json new file mode 100644 index 0000000000000..5b4c202a3da18 --- /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": "twitter", + "url": "https://twitter.com/payu_coin" + }, + { + "name": "telegram", + "url": "https://t.me/payu_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/platform-of-meme-coins/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/logo.png b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/logo.png new file mode 100644 index 0000000000000..de6546b7fd72e Binary files /dev/null and b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/logo.png differ diff --git a/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/info.json b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/info.json new file mode 100644 index 0000000000000..956543b93c630 --- /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": "twitter", + "url": "https://twitter.com/natronzofficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/natronzofficial" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/logo.png b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/logo.png new file mode 100644 index 0000000000000..1a14dd8ae40f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/logo.png differ diff --git a/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/info.json b/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/info.json new file mode 100644 index 0000000000000..0c9682812585c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7fdeef83aa259 Binary files /dev/null and b/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/logo.png differ diff --git a/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/info.json b/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/info.json index b4dfda2e4bcc1..92123571e23bd 100644 --- a/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/info.json +++ b/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "LAND", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x9D986A3f147212327Dd658F712d5264a73a1fdB0", "links": [ { diff --git a/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/logo.png b/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/logo.png deleted file mode 100644 index 95ce7b0269798..0000000000000 Binary files a/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125/info.json b/blockchains/smartchain/assets/0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125/info.json new file mode 100644 index 0000000000000..7ee61de85f63d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..5364ee3b78061 Binary files /dev/null and b/blockchains/smartchain/assets/0x9EC55d57208cb28a7714A2eA3468bD9d5bB15125/logo.png differ diff --git a/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json b/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json new file mode 100644 index 0000000000000..dced01a4fc048 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..9d7b0435acaac Binary files /dev/null and b/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/logo.png differ diff --git a/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/info.json b/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/info.json new file mode 100644 index 0000000000000..d7660727b6099 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/logo.png b/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/logo.png new file mode 100644 index 0000000000000..1ea778d687116 Binary files /dev/null and b/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/logo.png differ diff --git a/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/info.json b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/info.json new file mode 100644 index 0000000000000..34ed5013db1d1 --- /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": "twitter", + "url": "https://twitter.com/dingocoincrypto" + }, + { + "name": "github", + "url": "https://github.com/dingocoin/dingocoin" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/logo.png b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/logo.png new file mode 100644 index 0000000000000..488a2ec356624 Binary files /dev/null and b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/logo.png differ diff --git a/blockchains/smartchain/assets/0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A/info.json b/blockchains/smartchain/assets/0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A/info.json new file mode 100644 index 0000000000000..6ab15d706d811 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7664103dd74eb Binary files /dev/null and b/blockchains/smartchain/assets/0x9c2B1B3780A8B36B695f0b2781668664aC1Bf25A/logo.png differ diff --git a/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/info.json b/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/info.json new file mode 100644 index 0000000000000..91035600ef930 --- /dev/null +++ b/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/info.json @@ -0,0 +1,11 @@ +{ + "name": "VIDT Datalink BEP20", + "website": "https://about.v-id.org", + "description": "V-ID makes any digital file verifiable. The VIDT API enables organizations to protect their digital data against fraud and manipulation. A simple but strong formula, that adds and protects value at minimum expense and effort. Organizations like Airbus, AmSpec and IBM use VIDT Datalink to certify and secure digital documents like certificates, invoices, diplomas and sensor-data. VIDT Datalink products and services connect every cloud to every blockchain.", + "explorer": "https://bscscan.com/token/0x9c4a515cd72d27a4710571aca94858a53d9278d5", + "type": "BEP20", + "symbol": "VIDT", + "decimals": 18, + "status": "active", + "id": "0x9c4a515cd72D27A4710571Aca94858a53D9278D5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/logo.png b/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/logo.png rename to blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/logo.png diff --git a/blockchains/smartchain/assets/0x9eBBEB7f6b842377714EAdD987CaA4510205107A/info.json b/blockchains/smartchain/assets/0x9eBBEB7f6b842377714EAdD987CaA4510205107A/info.json new file mode 100644 index 0000000000000..0cfd27e18f18d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..2bdde77a02381 Binary files /dev/null and b/blockchains/smartchain/assets/0x9eBBEB7f6b842377714EAdD987CaA4510205107A/logo.png differ diff --git a/blockchains/smartchain/assets/0x9eeB6c5ff183E6001c65a12D70026b900AE76781/info.json b/blockchains/smartchain/assets/0x9eeB6c5ff183E6001c65a12D70026b900AE76781/info.json new file mode 100644 index 0000000000000..b12d2c22337ac --- /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": "twitter", + "url": "https://twitter.com/Irenagreencoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/irena-green-energy/" + } + ], + "tags": [ + "staking" + ] +} diff --git a/blockchains/smartchain/assets/0x9eeB6c5ff183E6001c65a12D70026b900AE76781/logo.png b/blockchains/smartchain/assets/0x9eeB6c5ff183E6001c65a12D70026b900AE76781/logo.png new file mode 100644 index 0000000000000..b7ff255509678 Binary files /dev/null and b/blockchains/smartchain/assets/0x9eeB6c5ff183E6001c65a12D70026b900AE76781/logo.png differ diff --git a/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/info.json b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/info.json new file mode 100644 index 0000000000000..c4a81bad591bc --- /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": "twitter", + "url": "https://twitter.com/trust_xgaming" + }, + { + "name": "telegram", + "url": "https://t.me/trustxgaming" + }, + { + "name": "whitepaper", + "url": "https://trustxgaming.io/Content/casinous/assets/images/TXG_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trustxgaming/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/logo.png b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/logo.png new file mode 100644 index 0000000000000..bfa2555a58abb Binary files /dev/null and b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/logo.png differ diff --git a/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/info.json b/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/info.json index 46d9b1520e0de..003ddc7f6aeec 100644 --- a/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/info.json +++ b/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/info.json @@ -3,7 +3,7 @@ "type": "BEP20", "symbol": "TKO", "decimals": 18, - "website": "http://www.tokocrypto.com/ ", + "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", diff --git a/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/info.json b/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/info.json index a870052187003..0fe7b68299d11 100644 --- a/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/info.json +++ b/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/info.json @@ -1,7 +1,7 @@ { "name": "Venus BNB", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0xA07c5b74C9B40447a954e1466938b865b6BBea36", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/logo.png b/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/logo.png index 3250df2bcaf9b..420e20555fc1a 100644 Binary files a/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/logo.png and b/blockchains/smartchain/assets/0xA07c5b74C9B40447a954e1466938b865b6BBea36/logo.png differ diff --git a/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/info.json b/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/info.json new file mode 100644 index 0000000000000..76cad050516e4 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/logo.png b/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/logo.png new file mode 100644 index 0000000000000..b6c4d9d3c20c5 Binary files /dev/null and b/blockchains/smartchain/assets/0xA1943Bc4a417ffd2E9e11A97383fa3f9548291c3/logo.png differ diff --git a/blockchains/smartchain/assets/0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd/info.json b/blockchains/smartchain/assets/0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd/info.json new file mode 100644 index 0000000000000..aa53ce36b71e1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..db55eb58e6611 Binary files /dev/null and b/blockchains/smartchain/assets/0xA2086F4a3955A520A1743D68CDbcf064Ee1746Cd/logo.png differ diff --git a/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/info.json b/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/info.json new file mode 100644 index 0000000000000..3517b3a01470a --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/logo.png b/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/logo.png new file mode 100644 index 0000000000000..1ccdc6a3b7db3 Binary files /dev/null and b/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/logo.png differ diff --git a/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/info.json b/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/info.json index 4f322ee14d501..e32e3c0a00f8b 100644 --- a/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/info.json +++ b/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/info.json @@ -1,16 +1,13 @@ { "name": "Adamant", "website": "https://www.adamantcoin.com/", - "description": "Adamant (ADMC) is a hyperdeflationary token and is the Governance Token of the charity NFT Game Adamant Mine", + "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", - "tags": [ - "deflationary" - ], "links": [ { "name": "coinmarketcap", @@ -32,5 +29,8 @@ "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 index 34eb4f7999a2b..16dd834f8f217 100644 Binary files a/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/logo.png and b/blockchains/smartchain/assets/0xA55EF2fB2B7b6A60371FD3def9B806E74a48bE69/logo.png differ diff --git a/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/info.json b/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/info.json new file mode 100644 index 0000000000000..e93b9244f9ca8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6ef222298a99e Binary files /dev/null and b/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/logo.png differ diff --git a/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/info.json b/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/info.json index b1b1641bd0058..86902cf84ec3f 100644 --- a/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/info.json +++ b/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "EPS", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xA7f552078dcC247C2684336020c03648500C6d9F", "tags": [ "defi" diff --git a/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/logo.png b/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/logo.png deleted file mode 100644 index 34eaed3a5e8dc..0000000000000 Binary files a/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xA9F059F63cd432B65A723EEeFf69304FD780070c/info.json b/blockchains/smartchain/assets/0xA9F059F63cd432B65A723EEeFf69304FD780070c/info.json new file mode 100644 index 0000000000000..9fdd7d6bf1cfe --- /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": "twitter", + "url": "https://twitter.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 0000000000000..dffcfe1473107 Binary files /dev/null and b/blockchains/smartchain/assets/0xA9F059F63cd432B65A723EEeFf69304FD780070c/logo.png differ diff --git a/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json b/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json index b74fcfa0de189..e3847f4468c17 100644 --- a/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json +++ b/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "QANX", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa", "links": [ { diff --git a/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json new file mode 100644 index 0000000000000..b3589d2c72b78 --- /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": "twitter", + "url": "https://twitter.com/qanplatform" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bABaQeTPN7" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/qanplatform" + }, + { + "name": "medium", + "url": "https://medium.com/qanplatform" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/QANplatform" + }, + { + "name": "whitepaper", + "url": "https://assets.qanplatform.com/whitepaper.pdf" + }, + { + "name": "source_code", + "url": "https://github.com/QANplatform" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qanplatform/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/qanplatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/logo.png b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/logo.png rename to blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png diff --git a/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/info.json b/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/info.json new file mode 100644 index 0000000000000..763c552e4014f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..613cf86d83cae Binary files /dev/null and b/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/logo.png differ diff --git a/blockchains/smartchain/assets/0xAD29AbB318791D579433D831ed122aFeAf29dcfe/info.json b/blockchains/smartchain/assets/0xAD29AbB318791D579433D831ed122aFeAf29dcfe/info.json new file mode 100644 index 0000000000000..09c712d1df457 --- /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": "twitter", + "url": "https://twitter.com/FantomFDN" + }, + { + "name": "telegram", + "url": "https://t.me/Fantom_English" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/fantom/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantom/" + } + ] +} \ 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 0000000000000..4c55ec1d7621e 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 index 0538767af05af..8214ba685ae8a 100644 --- a/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/info.json +++ b/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/info.json @@ -1,5 +1,5 @@ { - "name": "Binance-Peg Band Protocol Token", + "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", diff --git a/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/logo.png b/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/logo.png index f89a34f79784b..9db68a25f3b4b 100644 Binary files a/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/logo.png and b/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/logo.png differ diff --git a/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json b/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json index d35c1534257c6..3baf286b2cefc 100644 --- a/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json +++ b/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "GMR", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884", "links": [ { diff --git a/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/info.json b/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/info.json new file mode 100644 index 0000000000000..a1640dfa4d86e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..edb82f056e99c Binary files /dev/null and b/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/logo.png differ diff --git a/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/info.json b/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/info.json index af232b8fc5459..77bc6e5bfd7d1 100644 --- a/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/info.json +++ b/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/info.json @@ -1,48 +1,66 @@ { - "name": "Puli Inu", + "name": "Puli", "type": "BEP20", "symbol": "PULI", "decimals": 9, - "website": "https://www.puli-inu.com/", - "description": "Powering P2E games every month. Store, swap, play, chat and earn tokens while introducing new investors to crypto.", - "explorer": "https://bscscan.com/token/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC", + "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": "twitter", - "url": "https://twitter.com/puli_inu" + "url": "https://twitter.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": "coingecko", - "url": "https://coingecko.com/en/coins/puli-inu" + "name": "reddit", + "url": "https://reddit.com/Puli_Inu/" }, { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/puli-inu/" + "name": "facebook", + "url": "https://facebook.com/groups/1645662419114677" }, { - "name": "reddit", - "url": "https://reddit.com/r/Puli_Inu/" + "name": "source_code", + "url": "https://github.com/interfinetwork/audited-codes/blob/main/PULIINU.sol" }, { - "name": "discord", - "url": "https://discord.com/" + "name": "youtube", + "url": "https://youtube.com/channel/UCvAYp8cyMZzEcurdjHdqQZQ/featured" }, { - "name": "facebook", - "url": "https://facebook.com/profile.php?id=100076014895069" + "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 index ec3f0770ff704..cc601de9b61e5 100644 Binary files a/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/logo.png and b/blockchains/smartchain/assets/0xAEf0a177c8c329CBC8508292Bb7E06c00786BBfC/logo.png differ diff --git a/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/info.json b/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/info.json new file mode 100644 index 0000000000000..d39f86a8eaed8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..073b8760be40a Binary files /dev/null and b/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/logo.png differ diff --git a/blockchains/smartchain/assets/0xAb14952d2902343fde7c65D7dC095e5c8bE86920/info.json b/blockchains/smartchain/assets/0xAb14952d2902343fde7c65D7dC095e5c8bE86920/info.json index 8fdfc3410cc53..663af803ab225 100644 --- a/blockchains/smartchain/assets/0xAb14952d2902343fde7c65D7dC095e5c8bE86920/info.json +++ b/blockchains/smartchain/assets/0xAb14952d2902343fde7c65D7dC095e5c8bE86920/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0xAb14952d2902343fde7c65D7dC095e5c8bE86920", "links": [ { diff --git a/blockchains/smartchain/assets/0xAb14952d2902343fde7c65D7dC095e5c8bE86920/logo.png b/blockchains/smartchain/assets/0xAb14952d2902343fde7c65D7dC095e5c8bE86920/logo.png deleted file mode 100644 index c83e369dcb94a..0000000000000 Binary files a/blockchains/smartchain/assets/0xAb14952d2902343fde7c65D7dC095e5c8bE86920/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/info.json b/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/info.json new file mode 100644 index 0000000000000..a1d90bcf2e4c3 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..3a3da33983f99 Binary files /dev/null and b/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/logo.png differ diff --git a/blockchains/smartchain/assets/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681/info.json b/blockchains/smartchain/assets/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681/info.json new file mode 100644 index 0000000000000..063fdd0b9698a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..2f38ab0bdb239 Binary files /dev/null and b/blockchains/smartchain/assets/0xAeBdbcc7d6821E3924EE5167b4138a43c19Cf681/logo.png differ diff --git a/blockchains/smartchain/assets/0xAf41054C1487b0e5E2B9250C0332eCBCe6CE9d71/info.json b/blockchains/smartchain/assets/0xAf41054C1487b0e5E2B9250C0332eCBCe6CE9d71/info.json new file mode 100644 index 0000000000000..344c5d2a07b67 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a447405932c32 Binary files /dev/null and b/blockchains/smartchain/assets/0xAf41054C1487b0e5E2B9250C0332eCBCe6CE9d71/logo.png differ diff --git a/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/info.json b/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/info.json new file mode 100644 index 0000000000000..6dab3547f7e91 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/logo.png b/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/logo.png new file mode 100644 index 0000000000000..70a81100d5552 Binary files /dev/null and b/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/logo.png differ diff --git a/blockchains/smartchain/assets/0xB04906e95AB5D797aDA81508115611fee694c2b3/info.json b/blockchains/smartchain/assets/0xB04906e95AB5D797aDA81508115611fee694c2b3/info.json new file mode 100644 index 0000000000000..d2c9d5a180cc0 --- /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 0000000000000..ed00e43fcfe9b Binary files /dev/null and b/blockchains/smartchain/assets/0xB04906e95AB5D797aDA81508115611fee694c2b3/logo.png differ diff --git a/blockchains/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/info.json b/blockchains/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/info.json new file mode 100644 index 0000000000000..2cc737ca06692 --- /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 0000000000000..f983849d90c4f Binary files /dev/null and b/blockchains/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/logo.png differ diff --git a/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/info.json b/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/info.json index 3ac6e8206c61d..830dac2549265 100644 --- a/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/info.json +++ b/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/info.json @@ -1,7 +1,7 @@ { "name": "Venus XRP", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0xB248a295732e0225acd3337607cc01068e3b9c10", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/logo.png b/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/logo.png old mode 100755 new mode 100644 index b36453b580c9e..1e5d46d777c71 Binary files a/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/logo.png and b/blockchains/smartchain/assets/0xB248a295732e0225acd3337607cc01068e3b9c10/logo.png differ diff --git a/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/info.json b/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/info.json index ca0aa00c78dd9..41f7178d90b48 100644 --- a/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/info.json +++ b/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "LOF", "decimals": 9, - "status": "active", + "status": "abandoned", "id": "0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96", "links": [ { diff --git a/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/logo.png b/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/logo.png deleted file mode 100644 index b5163cadd9600..0000000000000 Binary files a/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/info.json b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/info.json new file mode 100644 index 0000000000000..361effadcde40 --- /dev/null +++ b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/info.json @@ -0,0 +1,11 @@ +{ + "name": "RYOSHI TOKEN", + "type": "BEP20", + "symbol": "RYOSHI", + "decimals": 18, + "website": "https://www.ryoshitoken.com", + "description": "Ryoshi is a deflationary, community driven meme token that came to take over the meme game. With 10% burn from every transaction that decreases the supply and increases the demand you can kick back and watch your RYOSHI value grow.", + "explorer": "https://bscscan.com/token/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5", + "status": "active", + "id": "0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/logo.png b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/logo.png new file mode 100644 index 0000000000000..20119148a5b05 Binary files /dev/null and b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/logo.png differ diff --git a/blockchains/smartchain/assets/0xB583961E033Dfe0FfF161952f7BA21c411b6103d/info.json b/blockchains/smartchain/assets/0xB583961E033Dfe0FfF161952f7BA21c411b6103d/info.json new file mode 100644 index 0000000000000..51a235ff95140 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..b93b286481610 Binary files /dev/null and b/blockchains/smartchain/assets/0xB583961E033Dfe0FfF161952f7BA21c411b6103d/logo.png differ diff --git a/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/info.json b/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/info.json new file mode 100644 index 0000000000000..6f58aa4c9b060 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/logo.png b/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/logo.png new file mode 100644 index 0000000000000..6e47bf3cd010f Binary files /dev/null and b/blockchains/smartchain/assets/0xB82BEb6Ee0063Abd5fC8E544c852237aA62CBb14/logo.png differ diff --git a/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/info.json b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/info.json new file mode 100644 index 0000000000000..97cc3c9441b63 --- /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": "twitter", + "url": "https://twitter.com/metatimecom" + }, + { + "name": "telegram", + "url": "https://t.me/metatime" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metatime-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/logo.png b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/logo.png new file mode 100644 index 0000000000000..11b60376bb37c Binary files /dev/null and b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/logo.png differ diff --git a/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/info.json b/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/info.json new file mode 100644 index 0000000000000..2da787977c4dd --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/logo.png b/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/logo.png new file mode 100644 index 0000000000000..99909fe6d39dc Binary files /dev/null and b/blockchains/smartchain/assets/0xB9d35811424600fa9E8cD62A0471fBd025131cb8/logo.png differ diff --git a/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/info.json b/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/info.json index c74222ef0d557..e2ed232fce722 100644 --- a/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/info.json +++ b/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/info.json @@ -3,11 +3,37 @@ "type": "BEP20", "symbol": "EnergyX", "decimals": 8, - "website": "https://www.safeenergyofficial.com", - "description": "SafeEnergy, or $ENERGYX is a community driven deflationary charity token with future projects to reduce our carbon footprint by making renewable energy sources more accessible. As SafeEnergy, we are determined and highly motivated, and made it our goal to invest, to establish, and support projects which incentivize the usage of renewable energy sources in mining BTC.", + "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": "twitter", + "url": "https://twitter.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" ] diff --git a/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/logo.png b/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/logo.png index c351299762bf5..423279da3c7a9 100644 Binary files a/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/logo.png and b/blockchains/smartchain/assets/0xBBe899c61198D1826a43e20ea19efC46E50c2B00/logo.png differ diff --git a/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json b/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json new file mode 100644 index 0000000000000..d885fdb4f6c4f --- /dev/null +++ b/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json @@ -0,0 +1,46 @@ +{ + "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": "twitter", + "url": "https://twitter.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" + ] +} + diff --git a/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png b/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png new file mode 100644 index 0000000000000..68ecfe32afae5 Binary files /dev/null and b/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png differ diff --git a/blockchains/smartchain/assets/0xBbcF57177D8752B21d080bf30a06CE20aD6333F8/info.json b/blockchains/smartchain/assets/0xBbcF57177D8752B21d080bf30a06CE20aD6333F8/info.json new file mode 100644 index 0000000000000..d5a1ae4594f68 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..8e5e88c403007 Binary files /dev/null and b/blockchains/smartchain/assets/0xBbcF57177D8752B21d080bf30a06CE20aD6333F8/logo.png differ diff --git a/blockchains/smartchain/assets/0xBf38A8b9cf02223b44f823e15f45219E9978b491/info.json b/blockchains/smartchain/assets/0xBf38A8b9cf02223b44f823e15f45219E9978b491/info.json new file mode 100644 index 0000000000000..7cb419e39306a --- /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": "twitter", + "url": "https://twitter.com/DivinerFi" + }, + { + "name": "telegram", + "url": "https://t.me/Diviner_Games" + }, + { + "name": "docs", + "url": "https://docs.diviner.games/" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0xBf38A8b9cf02223b44f823e15f45219E9978b491/logo.png b/blockchains/smartchain/assets/0xBf38A8b9cf02223b44f823e15f45219E9978b491/logo.png new file mode 100644 index 0000000000000..b223aed2f755f 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 index e23915c02243c..5cfefdb3e3c42 100644 --- a/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/info.json +++ b/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Uniswap", + "name": "BNB pegged Uniswap", "website": "https://uniswap.org", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/info.json b/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/info.json index 577c34e887e7b..bdad583214215 100644 --- a/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/info.json +++ b/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/info.json @@ -1,28 +1,40 @@ { "name": "EverGrow Coin", - "website": "https://evergrowcoin.com/", - "description": "EverGrow Coin is a hyper deflationary token that rewards holders in BUSD", - "explorer": "https://bscscan.com/token/0xC001BBe2B87079294C63EcE98BdD0a88D761434e", "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", - "tags": [ - "deflationary" - ], "links": [ { - "name": "github", - "url": "https://github.com/Evergrowcoin/Evergrowcoin" + "name": "telegram", + "url": "https://t.me/evergrowcoin" }, { "name": "twitter", "url": "https://twitter.com/evergrowcoinEGC" }, { - "name": "telegram", - "url": "https://t.me/evergrowcoin" + "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 index 4a012412b5fb0..4a60835ae5793 100644 Binary files a/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/logo.png and b/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/logo.png differ diff --git a/blockchains/smartchain/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json b/blockchains/smartchain/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json new file mode 100644 index 0000000000000..e5f8520fca626 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..fb9f7a63b2f43 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 0000000000000..01f1d234dfa41 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..26babd9f80135 Binary files /dev/null and b/blockchains/smartchain/assets/0xC183062db25FC96325485ea369C979CE881Ac0eA/logo.png differ diff --git a/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/info.json b/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/info.json new file mode 100644 index 0000000000000..83a67df30cede --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/logo.png b/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/logo.png new file mode 100644 index 0000000000000..c01536256f123 Binary files /dev/null and b/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/logo.png differ diff --git a/blockchains/smartchain/assets/0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5/info.json b/blockchains/smartchain/assets/0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5/info.json new file mode 100644 index 0000000000000..fd5ddba1b65b7 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5/logo.png b/blockchains/smartchain/assets/0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5/logo.png new file mode 100644 index 0000000000000..5715ecaad41f9 Binary files /dev/null and b/blockchains/smartchain/assets/0xC3afDe95B6Eb9ba8553cDAea6645D45fB3a7FAF5/logo.png differ diff --git a/blockchains/smartchain/assets/0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1/info.json b/blockchains/smartchain/assets/0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1/info.json new file mode 100644 index 0000000000000..0c76167d77825 --- /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": "twitter", + "url": "https://twitter.com/StarfishOS" + }, + { + "name": "github", + "url": "https://github.com/starfishos" + }, + { + "name": "telegram", + "url": "https://t.me/starfishos" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/smartchain/assets/0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1/logo.png b/blockchains/smartchain/assets/0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1/logo.png new file mode 100644 index 0000000000000..ce3cc8f12b1f8 Binary files /dev/null and b/blockchains/smartchain/assets/0xC544D8aB2b5ED395B96E3Ec87462801ECa579aE1/logo.png differ diff --git a/blockchains/smartchain/assets/0xC638a73969C0F7442Ba8F5Ffda9968434891034B/info.json b/blockchains/smartchain/assets/0xC638a73969C0F7442Ba8F5Ffda9968434891034B/info.json new file mode 100644 index 0000000000000..7e43ebba7dc6f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xC638a73969C0F7442Ba8F5Ffda9968434891034B/logo.png b/blockchains/smartchain/assets/0xC638a73969C0F7442Ba8F5Ffda9968434891034B/logo.png new file mode 100644 index 0000000000000..a801840a9e5fa Binary files /dev/null and b/blockchains/smartchain/assets/0xC638a73969C0F7442Ba8F5Ffda9968434891034B/logo.png differ diff --git a/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/info.json b/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/info.json new file mode 100644 index 0000000000000..0d7a0b08beab8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f7a107f946cb6 Binary files /dev/null and b/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/logo.png differ diff --git a/blockchains/smartchain/assets/0xC7D43F2B51F44f09fBB8a691a0451E8FFCF36c0a/info.json b/blockchains/smartchain/assets/0xC7D43F2B51F44f09fBB8a691a0451E8FFCF36c0a/info.json index e7c1835a33c13..512e5bdfde45b 100644 --- a/blockchains/smartchain/assets/0xC7D43F2B51F44f09fBB8a691a0451E8FFCF36c0a/info.json +++ b/blockchains/smartchain/assets/0xC7D43F2B51F44f09fBB8a691a0451E8FFCF36c0a/info.json @@ -1,7 +1,7 @@ { - "name": "EverRise", + "name": "EverRise (old)", "type": "BEP20", - "symbol": "RISE", + "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.", diff --git a/blockchains/smartchain/assets/0xC7D43F2B51F44f09fBB8a691a0451E8FFCF36c0a/logo.png b/blockchains/smartchain/assets/0xC7D43F2B51F44f09fBB8a691a0451E8FFCF36c0a/logo.png deleted file mode 100644 index 05c8442fcc793..0000000000000 Binary files a/blockchains/smartchain/assets/0xC7D43F2B51F44f09fBB8a691a0451E8FFCF36c0a/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/info.json b/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/info.json new file mode 100644 index 0000000000000..e5e10e4c157a7 --- /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": "active", + "id": "0xC8A11F433512C16ED895245F34BCC2ca44eb06bd", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/logo.png b/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/logo.png new file mode 100644 index 0000000000000..2fddf8ccfd347 Binary files /dev/null and b/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/logo.png differ diff --git a/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json b/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json new file mode 100644 index 0000000000000..b711193259879 --- /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": "active", + "id": "0xCA7661Ba64A7667E3006c421C181502d545D1911", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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/0xCA7661Ba64A7667E3006c421C181502d545D1911/logo.png b/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/logo.png new file mode 100644 index 0000000000000..7c76f51d11485 Binary files /dev/null and b/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/logo.png differ diff --git a/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/info.json b/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/info.json new file mode 100644 index 0000000000000..39d05ec6b503c --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/logo.png b/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/logo.png new file mode 100644 index 0000000000000..262a5caf9e957 Binary files /dev/null and b/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/logo.png differ diff --git a/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json b/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json new file mode 100644 index 0000000000000..9d131ddada116 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/logo.png b/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/logo.png new file mode 100644 index 0000000000000..991a74355e573 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 0000000000000..ba7c7cc73b379 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..74ec9785f66d5 Binary files /dev/null and b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/logo.png differ diff --git a/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/info.json b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/info.json new file mode 100644 index 0000000000000..af2cf5cae35c6 --- /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": "twitter", + "url": "https://twitter.com/PlanetReFi" + }, + { + "name": "telegram", + "url": "https://t.me/PlanetReFi" + }, + { + "name": "medium", + "url": "https://medium.com/@PlanetReFi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/planettoken/" + } + ] +} diff --git a/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/logo.png b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/logo.png new file mode 100644 index 0000000000000..a3fb80da0a20b Binary files /dev/null and b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/logo.png differ diff --git a/blockchains/smartchain/assets/0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5/info.json b/blockchains/smartchain/assets/0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5/info.json new file mode 100644 index 0000000000000..5669862507e2c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..12fcb92aa0387 Binary files /dev/null and b/blockchains/smartchain/assets/0xCb1DDC8F705e2737685A9C1e6B84A63d04D200e5/logo.png differ diff --git a/blockchains/smartchain/assets/0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed/info.json b/blockchains/smartchain/assets/0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed/info.json new file mode 100644 index 0000000000000..90c745135700c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..36f0ce5c88add Binary files /dev/null and b/blockchains/smartchain/assets/0xCdcaef3cE3a138C47ddB0B04a9b04649c13D50Ed/logo.png differ diff --git a/blockchains/smartchain/assets/0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b/info.json b/blockchains/smartchain/assets/0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b/info.json index a2cdf65e2b386..3c7c09572cfd6 100644 --- a/blockchains/smartchain/assets/0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b/info.json +++ b/blockchains/smartchain/assets/0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b/info.json @@ -1,17 +1,14 @@ { "name": "MiniFootball", - "website": "https://www.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", "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": "github", - "url": "https://github.com/Hectortheman/MiniFootball" - }, { "name": "twitter", "url": "https://twitter.com/minifootballbsc" @@ -19,7 +16,18 @@ { "name": "telegram", "url": "https://t.me/minifootballtoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/minifootball/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/minifootball/" } ], - "id": "0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b" + "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 index b1d8f5b942112..871e542f2fce1 100644 Binary files a/blockchains/smartchain/assets/0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b/logo.png and b/blockchains/smartchain/assets/0xD024Ac1195762F6F13f8CfDF3cdd2c97b33B248b/logo.png differ diff --git a/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/info.json b/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/info.json new file mode 100644 index 0000000000000..ee6ab78768476 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/logo.png b/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/logo.png new file mode 100644 index 0000000000000..0d35e83db7021 Binary files /dev/null and b/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/logo.png differ diff --git a/blockchains/smartchain/assets/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B/info.json b/blockchains/smartchain/assets/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B/info.json new file mode 100644 index 0000000000000..357f664cb31ce --- /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": "twitter", + "url": "https://twitter.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 0000000000000..2d695ea1daafa Binary files /dev/null and b/blockchains/smartchain/assets/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B/logo.png differ diff --git a/blockchains/smartchain/assets/0xD3Ac199E6e6A1668ED6566b6F6dcdf7641868731/info.json b/blockchains/smartchain/assets/0xD3Ac199E6e6A1668ED6566b6F6dcdf7641868731/info.json new file mode 100644 index 0000000000000..55cc9659daee6 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a87e965ccc963 Binary files /dev/null and b/blockchains/smartchain/assets/0xD3Ac199E6e6A1668ED6566b6F6dcdf7641868731/logo.png differ diff --git a/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/info.json b/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/info.json new file mode 100644 index 0000000000000..08882da9ed10f --- /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": "twitter", + "url": "https://twitter.com/twogeinu" + }, + { + "name": "github", + "url": "https://github.com/twogeinu" + }, + { + "name": "whitepaper", + "url": "https://github.com/twogeinu/whitepaper/blob/main/Twoge%20Whitepaper.pdf" + } + ] +} diff --git a/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/logo.png b/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/logo.png new file mode 100644 index 0000000000000..ca66658d2be72 Binary files /dev/null and b/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/logo.png differ diff --git a/blockchains/smartchain/assets/0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C/info.json b/blockchains/smartchain/assets/0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C/info.json new file mode 100644 index 0000000000000..e442ce4a49e0a --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C/logo.png b/blockchains/smartchain/assets/0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C/logo.png new file mode 100644 index 0000000000000..19c75d7103423 Binary files /dev/null and b/blockchains/smartchain/assets/0xD5f363F83b36E10e8a823166b992c0bDc3deDE2C/logo.png differ diff --git a/blockchains/smartchain/assets/0xDB79c12d1d0670988A39B0E48b96e955eF922d24/info.json b/blockchains/smartchain/assets/0xDB79c12d1d0670988A39B0E48b96e955eF922d24/info.json new file mode 100644 index 0000000000000..95a6d4a430857 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..5f42e043c5e1a Binary files /dev/null and b/blockchains/smartchain/assets/0xDB79c12d1d0670988A39B0E48b96e955eF922d24/logo.png differ diff --git a/blockchains/smartchain/assets/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef/info.json b/blockchains/smartchain/assets/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef/info.json new file mode 100644 index 0000000000000..ac0a09a31b279 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..e9f509c1cd4c4 Binary files /dev/null and b/blockchains/smartchain/assets/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef/logo.png differ diff --git a/blockchains/smartchain/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json b/blockchains/smartchain/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json new file mode 100644 index 0000000000000..ae937d227e227 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..47ffbe08a8dcc Binary files /dev/null and b/blockchains/smartchain/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/logo.png differ diff --git a/blockchains/smartchain/assets/0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb/info.json b/blockchains/smartchain/assets/0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb/info.json new file mode 100644 index 0000000000000..e35cf9475f803 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a0f69fd2b7085 Binary files /dev/null and b/blockchains/smartchain/assets/0xE0399378f7a92A39DA849EB64CdDdE2940e234Bb/logo.png differ diff --git a/blockchains/smartchain/assets/0xE0b1EF69BC4AB4173989C1190f0d77A813f3B726/info.json b/blockchains/smartchain/assets/0xE0b1EF69BC4AB4173989C1190f0d77A813f3B726/info.json new file mode 100644 index 0000000000000..1a105f8bdf926 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..69c42e1a62652 Binary files /dev/null and b/blockchains/smartchain/assets/0xE0b1EF69BC4AB4173989C1190f0d77A813f3B726/logo.png differ diff --git a/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/info.json b/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/info.json index 299f44aa08cab..ad815ea101fd9 100644 --- a/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/info.json +++ b/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/info.json @@ -1,28 +1,33 @@ { - "name": "NELO Metaverse", - "website": "https://nelo.world", - "description": "NELO Metaverse = NFT Mining + Gamefi + SocialFi on BSC", - "explorer": "https://bscscan.com/token/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F", - "type": "BEP20", - "symbol": "NELO", "decimals": 9, - "status": "active", + "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", - "tags": [ - "deflationary" - ], "links": [ + { + "name": "twitter", + "url": "https://twitter.com/NELOnetwork" + }, { "name": "telegram", - "url": "https://t.me/NeloMetaverseOfficial" + "url": "https://t.me/NELOnetwork" }, { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/ru/currencies/nelo-metaverse/" + "name": "discord", + "url": "https://discord.com/invite/NELOnetwork" }, { - "name": "twitter", - "url": "https://twitter.com/NeloMetaverse" + "name": "facebook", + "url": "https://facebook.com/NELOnetwork/" } - ] -} \ No newline at end of file + ], + "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 index bdf2f7a665856..1a6210abf880f 100644 Binary files a/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/logo.png and b/blockchains/smartchain/assets/0xE38950f71E2D2Fc4cA9dC9C3625d82560b0A5d8F/logo.png differ diff --git a/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json b/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json index 04dbb6ffbb900..b8a59673ef1c9 100644 --- a/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json +++ b/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json @@ -6,7 +6,7 @@ "website": "https://rhythm.cash/", "description": "$RHYTHM is the token powering the Rhythm music streaming platform, which boasts a library of over 100 million songs, offering holders in-app rewards, perks, NFTs, and powering the Artist Partner Program.", "explorer": "https://bscscan.com/token/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb", - "status": "active", + "status": "abandoned", "id": "0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb", "links": [ { diff --git a/blockchains/smartchain/assets/0xE440b9af0AE99174b3FAaB87174E31634D135f6d/info.json b/blockchains/smartchain/assets/0xE440b9af0AE99174b3FAaB87174E31634D135f6d/info.json index febd17e8560fd..12805451c92bd 100644 --- a/blockchains/smartchain/assets/0xE440b9af0AE99174b3FAaB87174E31634D135f6d/info.json +++ b/blockchains/smartchain/assets/0xE440b9af0AE99174b3FAaB87174E31634D135f6d/info.json @@ -6,6 +6,6 @@ "website": "https://monetasglobal.com/", "description": "monetas", "explorer": "https://bscscan.com/token/0xE440b9af0AE99174b3FAaB87174E31634D135f6d", - "status": "active", + "status": "abandoned", "id": "0xE440b9af0AE99174b3FAaB87174E31634D135f6d" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE440b9af0AE99174b3FAaB87174E31634D135f6d/logo.png b/blockchains/smartchain/assets/0xE440b9af0AE99174b3FAaB87174E31634D135f6d/logo.png deleted file mode 100644 index fcd9fa2872c30..0000000000000 Binary files a/blockchains/smartchain/assets/0xE440b9af0AE99174b3FAaB87174E31634D135f6d/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/info.json b/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/info.json new file mode 100644 index 0000000000000..e629aa623c498 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/logo.png b/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/logo.png new file mode 100644 index 0000000000000..876c6f407f5a1 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 0000000000000..2fc7fc63e5dc5 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..3c154ea917cc5 Binary files /dev/null and b/blockchains/smartchain/assets/0xE5c355c993dE69C06b5DD1A0c9a2c39b4Cde5511/logo.png differ diff --git a/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/info.json b/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/info.json new file mode 100644 index 0000000000000..1b55919f62272 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..aea07177c97d6 Binary files /dev/null and b/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/logo.png differ diff --git a/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/info.json b/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/info.json index 544a1aff40f5c..2c39cf20608d3 100644 --- a/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/info.json +++ b/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/info.json @@ -4,7 +4,7 @@ "symbol": "CZUSD", "decimals": 18, "website": "https://czodiac.com", - "description": "CZUSD is a USD stablecoin. The peg is maintained in the short term by the Scorch Peg which trades the token back to $1 and uses the profits to burn CZF.", + "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", @@ -35,10 +35,11 @@ }, { "name": "discord", - "url": "https://discord.com/invite/QDyTJccdE9" + "url": "https://discord.com/invite/Tg9JFQxzbs" } ], "tags": [ - "stablecoin" + "stablecoin", + "defi" ] -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/logo.png b/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/logo.png index cb70d1298facb..cec4d397760ee 100644 Binary files a/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/logo.png and b/blockchains/smartchain/assets/0xE68b79e51bf826534Ff37AA9CeE71a3842ee9c70/logo.png differ diff --git a/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/info.json b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/info.json new file mode 100644 index 0000000000000..a0b8ffc78da59 --- /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": "twitter", + "url": "https://twitter.com/loomnetwork" + }, + { + "name": "github", + "url": "https://github.com/loomnetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/logo.png b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/logo.png new file mode 100644 index 0000000000000..0d6c30316b0e1 Binary files /dev/null and b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/logo.png differ diff --git a/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/info.json b/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/info.json new file mode 100644 index 0000000000000..bd5f016ea0be5 --- /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": "twitter", + "url": "https://twitter.com/galaxyfinance3" + }, + { + "name": "telegram", + "url": "https://t.me/galaxyfinance_channel" + } + ], + "tags": [ + "staking" + ] +} diff --git a/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/logo.png b/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/logo.png new file mode 100644 index 0000000000000..42f9b1e8dfbad Binary files /dev/null and b/blockchains/smartchain/assets/0xE77932B1216125848e82C3967e75698362168f99/logo.png differ diff --git a/blockchains/smartchain/assets/0xE9c7a827a4bA133b338b844C19241c864E95d75f/info.json b/blockchains/smartchain/assets/0xE9c7a827a4bA133b338b844C19241c864E95d75f/info.json new file mode 100644 index 0000000000000..e3f2cae7a44d2 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..bedbb8482fc5f Binary files /dev/null and b/blockchains/smartchain/assets/0xE9c7a827a4bA133b338b844C19241c864E95d75f/logo.png differ diff --git a/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/info.json b/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/info.json new file mode 100644 index 0000000000000..e7efd39e35526 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/logo.png b/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/logo.png new file mode 100644 index 0000000000000..c27df7e4ed0f7 Binary files /dev/null and b/blockchains/smartchain/assets/0xEA5E9F39F4B4Bc2684e49A0E43127F7f6F6be3b8/logo.png differ diff --git a/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/info.json b/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/info.json new file mode 100644 index 0000000000000..cf4d349d7a7de --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6248d059b5a20 Binary files /dev/null and b/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/logo.png differ diff --git a/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/info.json b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/info.json new file mode 100644 index 0000000000000..c334da94e8073 --- /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": "twitter", + "url": "https://twitter.com/_unsofficial_" + }, + { + "name": "telegram", + "url": "https://t.me/uns_token" + }, + { + "name": "discord", + "url": "https://discord.com/invite/wjFHg94mAW" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uns-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uns-token" + }, + { + "name": "telegram_news", + "url": "https://t.me/unstoken" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/UNS_Token" + }, + { + "name": "github", + "url": "https://github.com/Uns-Technology" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/logo.png b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/logo.png new file mode 100644 index 0000000000000..aa527486df972 Binary files /dev/null and b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/logo.png differ diff --git a/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/info.json b/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/info.json new file mode 100644 index 0000000000000..8850fa5d51d13 --- /dev/null +++ b/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/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://bscscan.com/token/0xed8c8aa8299c10f067496bb66f8cc7fb338a3405", + "type": "BEP20", + "symbol": "PROS", + "decimals": 18, + "status": "active", + "id": "0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/logo.png b/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/logo.png new file mode 100644 index 0000000000000..5725990a5e6f0 Binary files /dev/null and b/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/logo.png differ diff --git a/blockchains/smartchain/assets/0xEda3866f07566d9379a91A07F8D62e19C03183e0/info.json b/blockchains/smartchain/assets/0xEda3866f07566d9379a91A07F8D62e19C03183e0/info.json new file mode 100644 index 0000000000000..ab35e7c61be72 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..3544e757e5a7b Binary files /dev/null and b/blockchains/smartchain/assets/0xEda3866f07566d9379a91A07F8D62e19C03183e0/logo.png differ diff --git a/blockchains/smartchain/assets/0xEe0736c93E98B2e9fbf11f47dB19E7B68Db71E94/info.json b/blockchains/smartchain/assets/0xEe0736c93E98B2e9fbf11f47dB19E7B68Db71E94/info.json new file mode 100644 index 0000000000000..940e39a685d19 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f3c761f6b6c10 Binary files /dev/null and b/blockchains/smartchain/assets/0xEe0736c93E98B2e9fbf11f47dB19E7B68Db71E94/logo.png differ diff --git a/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/info.json b/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/info.json new file mode 100644 index 0000000000000..d57272d09104a --- /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": "twitter", + "url": "https://twitter.com/AthosMeta" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/AthosMeta" + }, + { + "name": "whitepaper", + "url": "https://athos-meta.io/Whitepaper-EN.pdf" + } + ] +} diff --git a/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/logo.png b/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/logo.png new file mode 100644 index 0000000000000..f326efceafe89 Binary files /dev/null and b/blockchains/smartchain/assets/0xF02b31b0B6dCabd579e41A0250288608FA43F898/logo.png differ diff --git a/blockchains/smartchain/assets/0xF03E02AcbC5eb22de027eA4F59235966F5810D4f/info.json b/blockchains/smartchain/assets/0xF03E02AcbC5eb22de027eA4F59235966F5810D4f/info.json new file mode 100644 index 0000000000000..7abd1d87d1bb2 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..1528a945ae7df 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 0000000000000..d89c26fa02a26 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..fffc9371c27a5 Binary files /dev/null and b/blockchains/smartchain/assets/0xF078580015Cdfaa849BDAd8B38e72F5803C316c4/logo.png differ diff --git a/blockchains/smartchain/assets/0xF14D3692B0055Db9Ca4c04065165d59B87E763f1/info.json b/blockchains/smartchain/assets/0xF14D3692B0055Db9Ca4c04065165d59B87E763f1/info.json new file mode 100644 index 0000000000000..8f11b29627090 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xF14D3692B0055Db9Ca4c04065165d59B87E763f1/logo.png b/blockchains/smartchain/assets/0xF14D3692B0055Db9Ca4c04065165d59B87E763f1/logo.png new file mode 100644 index 0000000000000..893c3183ee1da Binary files /dev/null and b/blockchains/smartchain/assets/0xF14D3692B0055Db9Ca4c04065165d59B87E763f1/logo.png differ diff --git a/blockchains/smartchain/assets/0xF18e1289FCe882e4dB55Ec8A349D027a9a5B3169/info.json b/blockchains/smartchain/assets/0xF18e1289FCe882e4dB55Ec8A349D027a9a5B3169/info.json new file mode 100644 index 0000000000000..64b5f607bbe6e --- /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": "twitter", + "url": "https://twitter.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 0000000000000..cd26b87f46094 Binary files /dev/null and b/blockchains/smartchain/assets/0xF18e1289FCe882e4dB55Ec8A349D027a9a5B3169/logo.png differ diff --git a/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/info.json b/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/info.json index c75da90ac669c..c83872be64d3b 100644 --- a/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/info.json +++ b/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "THOREUM", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d", "tags": [ "defi" @@ -41,4 +41,4 @@ "url": "https://github.com/ThoreumFinance/ThoreumCapital" } ] -} +} diff --git a/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/logo.png b/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/logo.png deleted file mode 100644 index bbdb2951046f7..0000000000000 Binary files a/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json b/blockchains/smartchain/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json new file mode 100644 index 0000000000000..2085cb535e94f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..4c8c7bcdcf762 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 0000000000000..acf7efbcbf718 --- /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 0000000000000..403e41c3fd66f Binary files /dev/null and b/blockchains/smartchain/assets/0xF37cAc4783a343D6258DdD52AA4e2566C0CbE25a/logo.png differ diff --git a/blockchains/smartchain/assets/0xF5a367b7809e5683538C93Ce638B9258A0B88271/info.json b/blockchains/smartchain/assets/0xF5a367b7809e5683538C93Ce638B9258A0B88271/info.json new file mode 100644 index 0000000000000..caa72cd03c65e --- /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 0000000000000..a45f0578a4d24 Binary files /dev/null and b/blockchains/smartchain/assets/0xF5a367b7809e5683538C93Ce638B9258A0B88271/logo.png differ diff --git a/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/info.json b/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/info.json new file mode 100644 index 0000000000000..a724a92b42c3a --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/logo.png b/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/logo.png new file mode 100644 index 0000000000000..a498c4b2cbf26 Binary files /dev/null and b/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/logo.png differ diff --git a/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/info.json b/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/info.json index 9d0b3a576dcb7..68e9dd65fd487 100644 --- a/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/info.json +++ b/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg ChainLink", + "name": "BNB pegged ChainLink", "website": "https://chain.link", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/logo.png b/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/logo.png old mode 100755 new mode 100644 index 48c89738d2655..ab55f5e21fae2 Binary files a/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/logo.png and b/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/logo.png differ diff --git a/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/info.json b/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/info.json index 2537517cd9980..704ca9009ac2b 100644 --- a/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/info.json +++ b/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/info.json @@ -1,7 +1,7 @@ { "name": "Venus DOGE", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", diff --git a/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/logo.png b/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/logo.png index bbe9f3d3db742..18c53b17c6368 100644 Binary files a/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/logo.png 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 0000000000000..214faa8a582b4 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xF93f6b686f4A6557151455189a9173735D668154/logo.png b/blockchains/smartchain/assets/0xF93f6b686f4A6557151455189a9173735D668154/logo.png new file mode 100644 index 0000000000000..4c99dd1602538 Binary files /dev/null and b/blockchains/smartchain/assets/0xF93f6b686f4A6557151455189a9173735D668154/logo.png differ diff --git a/blockchains/smartchain/assets/0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835/info.json b/blockchains/smartchain/assets/0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835/info.json new file mode 100644 index 0000000000000..d0b2052d6da94 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..26f3dbd585377 Binary files /dev/null and b/blockchains/smartchain/assets/0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835/logo.png differ diff --git a/blockchains/smartchain/assets/0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5/info.json b/blockchains/smartchain/assets/0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5/info.json new file mode 100644 index 0000000000000..6c16486d83cd5 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..c2b15bea995e6 Binary files /dev/null and b/blockchains/smartchain/assets/0xFACE67C5CE2bb48c29779b0Dede5360cC9ef5fd5/logo.png differ diff --git a/blockchains/smartchain/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json b/blockchains/smartchain/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json index ed5af8bef2994..7fafae1314e61 100644 --- a/blockchains/smartchain/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json +++ b/blockchains/smartchain/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json @@ -6,6 +6,6 @@ "website": "https://zedxion.io", "description": "Zedxion offers a comprehensive solution to the major problems faced by the traditional, fiat-driven monetary system. Building a crypto powered ecosystem comprising Zedxion Token.", "explorer": "https://bscscan.com/token/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341", - "status": "active", + "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 0000000000000..bb9d7cf3886fd --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xFbDB1Fa163a0e8d90DD88104F44C093882A71914/logo.png b/blockchains/smartchain/assets/0xFbDB1Fa163a0e8d90DD88104F44C093882A71914/logo.png new file mode 100644 index 0000000000000..9a18cc8e0ebd6 Binary files /dev/null and b/blockchains/smartchain/assets/0xFbDB1Fa163a0e8d90DD88104F44C093882A71914/logo.png differ diff --git a/blockchains/smartchain/assets/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335/info.json b/blockchains/smartchain/assets/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335/info.json index 5520ff80105f8..ab555eec50d1b 100644 --- a/blockchains/smartchain/assets/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335/info.json +++ b/blockchains/smartchain/assets/0xFd7B3A77848f1C2D67E05E54d78d174a0C850335/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Ontology Token", + "name": "BNB pegged Ontology Token", "website": "https://ont.io", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0xa026Ad2ceDa16Ca5FC28fd3C72f99e2C332c8a26/info.json b/blockchains/smartchain/assets/0xa026Ad2ceDa16Ca5FC28fd3C72f99e2C332c8a26/info.json new file mode 100644 index 0000000000000..915d789317d0a --- /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": "twitter", + "url": "https://twitter.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 0000000000000..2fc6d63b74003 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 0000000000000..0842c8e0b90b1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..592ac274130df Binary files /dev/null and b/blockchains/smartchain/assets/0xa03110800894b3CcF8723D991d80875561F96777/logo.png differ diff --git a/blockchains/smartchain/assets/0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0/info.json b/blockchains/smartchain/assets/0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0/info.json new file mode 100644 index 0000000000000..74e900ea07054 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..10c26b8bf7c9f Binary files /dev/null and b/blockchains/smartchain/assets/0xa260E12d2B924cb899AE80BB58123ac3fEE1E2F0/logo.png differ diff --git a/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/info.json b/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/info.json index 858babc01601c..3d4eeda80197d 100644 --- a/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/info.json +++ b/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/info.json @@ -1,5 +1,5 @@ { - "name": "Injective Protocol", + "name": "Injective", "website": "https://injectiveprotocol.com", "description": "The Universal Layer-2 DeFi Protocol for Cross-Chain Derivatives Trading.", "explorer": "https://bscscan.com/token/0xa2b726b1145a4773f68593cf171187d8ebe4d495", diff --git a/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/logo.png b/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/logo.png index dcc5ff1a0d0c5..f3a521dc1391a 100644 Binary files a/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/logo.png and b/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/logo.png differ diff --git a/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json new file mode 100644 index 0000000000000..ed36e2d3c9f56 --- /dev/null +++ b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Binance Beacon ETH", + "type": "BEP20", + "symbol": "wBETH", + "decimals": 18, + "website": "https://www.binance.com/en/wbeth", + "description": "wBETH is a reward-bearing ETH liquid staking token offered by Binance. Each wBETH represents 1 BETH (1:1 to staked ETH) plus all of its accrued ETH2.0 staking rewards starting from when wBETH's conversion rate was initialized at 1:1 on Apr 27th 2023 00:00 (UTC+0).", + "explorer": "https://bscscan.com/token/0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "status": "active", + "id": "0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-beacon-eth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-beacon-eth" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png new file mode 100644 index 0000000000000..832596160ae8d Binary files /dev/null and b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png differ diff --git a/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/info.json b/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/info.json new file mode 100644 index 0000000000000..8a74c258f65fb --- /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": "twitter", + "url": "https://twitter.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 0000000000000..577673c43c6a4 Binary files /dev/null and b/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/logo.png differ diff --git a/blockchains/smartchain/assets/0xa531a733070a5fF4866D1327d82e403Fa35290A6/info.json b/blockchains/smartchain/assets/0xa531a733070a5fF4866D1327d82e403Fa35290A6/info.json new file mode 100644 index 0000000000000..810ab876b8fd6 --- /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 0000000000000..2f640927677fa Binary files /dev/null and b/blockchains/smartchain/assets/0xa531a733070a5fF4866D1327d82e403Fa35290A6/logo.png differ diff --git a/blockchains/smartchain/assets/0xa73dF9480e9408908c828be2e1A7345855501508/info.json b/blockchains/smartchain/assets/0xa73dF9480e9408908c828be2e1A7345855501508/info.json new file mode 100644 index 0000000000000..50d338a8d101f --- /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": "twitter", + "url": "https://twitter.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/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/logo.png b/blockchains/smartchain/assets/0xa73dF9480e9408908c828be2e1A7345855501508/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/logo.png rename to blockchains/smartchain/assets/0xa73dF9480e9408908c828be2e1A7345855501508/logo.png diff --git a/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/info.json b/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/info.json new file mode 100644 index 0000000000000..00683b6a97360 --- /dev/null +++ b/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/info.json @@ -0,0 +1,32 @@ +{ + "name": "Openleverage Token", + "website": "https://openleverage.finance/", + "description": "A permissionless lending and margin trading protocol, enabling traders to go long or short with any pairs on DEXs efficiently and securely.", + "explorer": "https://bscscan.com/token/0xa865197A84E780957422237B5D152772654341F3", + "type": "BEP20", + "symbol": "OLE", + "decimals": 18, + "status": "active", + "id": "0xa865197A84E780957422237B5D152772654341F3", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.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/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/logo.png b/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/logo.png new file mode 100644 index 0000000000000..abd32439fb3fc Binary files /dev/null and b/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/logo.png differ diff --git a/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/info.json b/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/info.json new file mode 100644 index 0000000000000..e3ce9d17daac5 --- /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": "twitter", + "url": "https://twitter.com/Pleasure_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pleasure-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/pleasure-coin" + } + ] +} diff --git a/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/logo.png b/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/logo.png new file mode 100644 index 0000000000000..2592a2e3e7c1c Binary files /dev/null and b/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/logo.png differ diff --git a/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/info.json b/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/info.json new file mode 100644 index 0000000000000..4e65d302562a2 --- /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": "twitter", + "url": "https://twitter.com/JWSocial1" + }, + { + "name": "facebook", + "url": "https://facebook.com/JWTOKEN" + }, + { + "name": "telegram", + "url": "https://t.me/web3wellness" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/logo.png b/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/logo.png new file mode 100644 index 0000000000000..e99ba9070be5d Binary files /dev/null and b/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/logo.png differ diff --git a/blockchains/smartchain/assets/0xaC41Fb8013c0B63588fC63997785A5d79E73eb28/info.json b/blockchains/smartchain/assets/0xaC41Fb8013c0B63588fC63997785A5d79E73eb28/info.json new file mode 100644 index 0000000000000..2730361eae41d --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xaC41Fb8013c0B63588fC63997785A5d79E73eb28/logo.png b/blockchains/smartchain/assets/0xaC41Fb8013c0B63588fC63997785A5d79E73eb28/logo.png new file mode 100644 index 0000000000000..a136b9c8c4c0c Binary files /dev/null and b/blockchains/smartchain/assets/0xaC41Fb8013c0B63588fC63997785A5d79E73eb28/logo.png differ diff --git a/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/info.json b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/info.json new file mode 100644 index 0000000000000..1bb16d833e800 --- /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": "twitter", + "url": "https://twitter.com/HunVizslainu" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/logo.png b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/logo.png new file mode 100644 index 0000000000000..c2d1e4c3d022d Binary files /dev/null and b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/logo.png differ diff --git a/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/info.json b/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/info.json new file mode 100644 index 0000000000000..cfecbc9cf57d5 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..c5609229eeae9 Binary files /dev/null and b/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/logo.png differ diff --git a/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/info.json b/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/info.json index 76fd066ab3914..f47104cc76cc4 100644 --- a/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/info.json +++ b/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/info.json @@ -1,38 +1,54 @@ { - "name": "Prometeus", - "website": "https://prometeus.io", - "description": "Prometeus Network describes itself as a secure and decentralized ecosystem designed to solve real-world problems in data brokerage.", - "explorer": "https://bscscan.com/token/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5", - "research": "", + "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": "github", - "url": "https://github.com/Prometeus-Network" + "name": "twitter", + "url": "https://twitter.com/prom_io" }, { - "name": "twitter", - "url": "https://twitter.com/prometeusnet" + "name": "telegram", + "url": "https://t.me/prom_io" }, { - "name": "medium", - "url": "https://medium.com/prometeus-network" + "name": "telegram_news", + "url": "https://t.me/prom_ann" }, { - "name": "telegram", - "url": "https://t.me/promnetwork" + "name": "discord", + "url": "https://discord.com/invite/prom" + }, + { + "name": "whitepaper", + "url": "https://prom.io/whitepaper.pdf" }, { "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/prometeus/" + "url": "https://coinmarketcap.com/currencies/prom/" }, { "name": "coingecko", - "url": "https://coingecko.com/en/coins/prometeus/" + "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 index b52533454db19..b8bd23e7924b0 100644 Binary files a/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/logo.png and b/blockchains/smartchain/assets/0xaF53d56ff99f1322515E54FdDE93FF8b3b7DAFd5/logo.png differ diff --git a/blockchains/smartchain/assets/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/info.json b/blockchains/smartchain/assets/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/info.json new file mode 100644 index 0000000000000..4dc8c4d4e1fd8 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/info.json b/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/info.json index 42308bde9223d..4b05a0f66c777 100644 --- a/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/info.json +++ b/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167", "tags": [ "deflationary" diff --git a/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/logo.png b/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/logo.png deleted file mode 100644 index 5fcae3d64a1e3..0000000000000 Binary files a/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xb1547683DA678f2e1F003A780143EC10Af8a832B/info.json b/blockchains/smartchain/assets/0xb1547683DA678f2e1F003A780143EC10Af8a832B/info.json new file mode 100644 index 0000000000000..30bdb0b89aa4f --- /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 0000000000000..5f4a1d03d126c 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 0000000000000..01425d7dd0c72 --- /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": "twitter", + "url": "https://twitter.com/defitigertoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defi-tiger/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/defi-tiger/" + } + ] +} diff --git a/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/logo.png b/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/logo.png new file mode 100644 index 0000000000000..5366f7d18e9a6 Binary files /dev/null and b/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/logo.png differ diff --git a/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/info.json b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/info.json new file mode 100644 index 0000000000000..4b18ca3ad7c2c --- /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": "twitter", + "url": "https://twitter.com/pendle_fi" + }, + { + "name": "docs", + "url": "https://docs.pendle.finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pendle" + }, + { + "name": "discord", + "url": "https://discord.com/invite/9x9VUngNZD" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/logo.png b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/logo.png new file mode 100644 index 0000000000000..4f5c2f60ea7d5 Binary files /dev/null and b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/logo.png differ diff --git a/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/info.json b/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/info.json new file mode 100644 index 0000000000000..cffb07c86b613 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a72b3917e23a6 Binary files /dev/null and b/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/logo.png differ diff --git a/blockchains/smartchain/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json b/blockchains/smartchain/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json new file mode 100644 index 0000000000000..1847c930472ec --- /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": "twitter", + "url": "https://twitter.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 0000000000000..cc526a26256c8 Binary files /dev/null and b/blockchains/smartchain/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/logo.png differ diff --git a/blockchains/smartchain/assets/0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094/info.json b/blockchains/smartchain/assets/0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094/info.json index 7bc506a85b984..703a5c5a9e635 100644 --- a/blockchains/smartchain/assets/0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094/info.json +++ b/blockchains/smartchain/assets/0xb7F8Cd00C5A06c0537E2aBfF0b58033d02e5E094/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Paxos Standard", + "name": "BNB pegged Paxos Standard", "website": "https://paxos.com/standard", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0xbA2aE424d960c26247Dd6c32edC70B295c744C43/info.json b/blockchains/smartchain/assets/0xbA2aE424d960c26247Dd6c32edC70B295c744C43/info.json index c307776c9ffb7..e810764424d23 100644 --- a/blockchains/smartchain/assets/0xbA2aE424d960c26247Dd6c32edC70B295c744C43/info.json +++ b/blockchains/smartchain/assets/0xbA2aE424d960c26247Dd6c32edC70B295c744C43/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Dogecoin", + "name": "BNB pegged Dogecoin", "website": "https://dogecoin.com/", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0xbA552586eA573Eaa3436f04027ff4effd0c0abbb/info.json b/blockchains/smartchain/assets/0xbA552586eA573Eaa3436f04027ff4effd0c0abbb/info.json new file mode 100644 index 0000000000000..429a3b16d68f1 --- /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 0000000000000..0502f513ff473 Binary files /dev/null and b/blockchains/smartchain/assets/0xbA552586eA573Eaa3436f04027ff4effd0c0abbb/logo.png differ diff --git a/blockchains/smartchain/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json b/blockchains/smartchain/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json new file mode 100644 index 0000000000000..1d73aa0f346b7 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..efff8d00af4a5 Binary files /dev/null and b/blockchains/smartchain/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/logo.png differ diff --git a/blockchains/smartchain/assets/0xbD83010eB60F12112908774998F65761cf9f6f9a/info.json b/blockchains/smartchain/assets/0xbD83010eB60F12112908774998F65761cf9f6f9a/info.json new file mode 100644 index 0000000000000..5ff3da005bb58 --- /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": "twitter", + "url": "https://twitter.com/mogulofficial_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mogul-productions/" + } + ], + "tags": [ + "defi", + "nft" + ] +} diff --git a/blockchains/smartchain/assets/0xbD83010eB60F12112908774998F65761cf9f6f9a/logo.png b/blockchains/smartchain/assets/0xbD83010eB60F12112908774998F65761cf9f6f9a/logo.png new file mode 100644 index 0000000000000..052b490078f25 Binary files /dev/null and b/blockchains/smartchain/assets/0xbD83010eB60F12112908774998F65761cf9f6f9a/logo.png differ diff --git a/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/info.json b/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/info.json index abb32628dd42d..02c7bd8dadc7c 100644 --- a/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/info.json +++ b/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg Elrond", + "name": "BNB pegged Elrond", "website": "https://elrond.com", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0xba7E2a9E5193E60368F440E4Ae881cC312d6a160/info.json b/blockchains/smartchain/assets/0xba7E2a9E5193E60368F440E4Ae881cC312d6a160/info.json new file mode 100644 index 0000000000000..dcf25cf04edd3 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a84c1e67f797c Binary files /dev/null and b/blockchains/smartchain/assets/0xba7E2a9E5193E60368F440E4Ae881cC312d6a160/logo.png differ diff --git a/blockchains/smartchain/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json b/blockchains/smartchain/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json new file mode 100644 index 0000000000000..b9eda844992d1 --- /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": "twitter", + "url": "https://twitter.com/FEGtoken" + }, + { + "name": "telegram", + "url": "https://t.me/FEGchat" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/feg-token" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/logo.png b/blockchains/smartchain/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/logo.png new file mode 100644 index 0000000000000..94405ed8c6779 Binary files /dev/null and b/blockchains/smartchain/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/logo.png differ diff --git a/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/info.json b/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/info.json new file mode 100644 index 0000000000000..bb04c4b894ab2 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/logo.png b/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/logo.png new file mode 100644 index 0000000000000..72ab3d225e486 Binary files /dev/null and b/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/logo.png differ diff --git a/blockchains/smartchain/assets/0xc1F47175d96Fe7c4cD5370552e5954f384E3C791/info.json b/blockchains/smartchain/assets/0xc1F47175d96Fe7c4cD5370552e5954f384E3C791/info.json new file mode 100644 index 0000000000000..4895c576290fc --- /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 0000000000000..f448cdfef620e Binary files /dev/null and b/blockchains/smartchain/assets/0xc1F47175d96Fe7c4cD5370552e5954f384E3C791/logo.png differ diff --git a/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/info.json b/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/info.json new file mode 100644 index 0000000000000..21462589c5a39 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/logo.png b/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/logo.png new file mode 100644 index 0000000000000..f12009e239253 Binary files /dev/null and b/blockchains/smartchain/assets/0xc2E9d07F66A89c44062459A47a0D2Dc038E4fb16/logo.png differ diff --git a/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/info.json b/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/info.json new file mode 100644 index 0000000000000..41b3893cbcbe4 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..376a83227291b Binary files /dev/null and b/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/logo.png differ diff --git a/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/info.json b/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/info.json new file mode 100644 index 0000000000000..3396804d8e7f2 --- /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": "active", + "id": "0xc3601108947A46B219C09f24c668a52756C8d977", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/logo.png b/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/logo.png new file mode 100644 index 0000000000000..62b8c49184690 Binary files /dev/null and b/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/logo.png differ diff --git a/blockchains/smartchain/assets/0xc4736F2611A62d545DC2D0d8f0766283617e6FcB/info.json b/blockchains/smartchain/assets/0xc4736F2611A62d545DC2D0d8f0766283617e6FcB/info.json new file mode 100644 index 0000000000000..f7b6b4e9f3069 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..1e4b470346f63 Binary files /dev/null and b/blockchains/smartchain/assets/0xc4736F2611A62d545DC2D0d8f0766283617e6FcB/logo.png differ diff --git a/blockchains/smartchain/assets/0xc836d8dC361E44DbE64c4862D55BA041F88Ddd39/info.json b/blockchains/smartchain/assets/0xc836d8dC361E44DbE64c4862D55BA041F88Ddd39/info.json new file mode 100644 index 0000000000000..e28c950b1257e --- /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 0000000000000..60c97897b870c Binary files /dev/null and b/blockchains/smartchain/assets/0xc836d8dC361E44DbE64c4862D55BA041F88Ddd39/logo.png differ diff --git a/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/info.json b/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/info.json new file mode 100644 index 0000000000000..bd46c8afeafdd --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/logo.png b/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/logo.png new file mode 100644 index 0000000000000..1022f7423227b Binary files /dev/null and b/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/logo.png differ diff --git a/blockchains/smartchain/assets/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42/info.json b/blockchains/smartchain/assets/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42/info.json index 1c37917d14ded..20068ad5e7c55 100644 --- a/blockchains/smartchain/assets/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42/info.json +++ b/blockchains/smartchain/assets/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42", "links": [ { diff --git a/blockchains/smartchain/assets/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42/logo.png b/blockchains/smartchain/assets/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42/logo.png deleted file mode 100644 index 2f50dfc7bddfe..0000000000000 Binary files a/blockchains/smartchain/assets/0xc98a8EC7A07f1b743E86896a52434C4C6A0Dbc42/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/info.json b/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/info.json new file mode 100644 index 0000000000000..7ee2b8623d504 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..bef8fa97c8da7 Binary files /dev/null and b/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/logo.png differ diff --git a/blockchains/smartchain/assets/0xcCe7F9eB881248E04f2975a3Fb3B62631ad9eE37/info.json b/blockchains/smartchain/assets/0xcCe7F9eB881248E04f2975a3Fb3B62631ad9eE37/info.json index 9b51f25259ced..a4b1ff310254d 100644 --- a/blockchains/smartchain/assets/0xcCe7F9eB881248E04f2975a3Fb3B62631ad9eE37/info.json +++ b/blockchains/smartchain/assets/0xcCe7F9eB881248E04f2975a3Fb3B62631ad9eE37/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "SLAM", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xcCe7F9eB881248E04f2975a3Fb3B62631ad9eE37" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcCe7F9eB881248E04f2975a3Fb3B62631ad9eE37/logo.png b/blockchains/smartchain/assets/0xcCe7F9eB881248E04f2975a3Fb3B62631ad9eE37/logo.png deleted file mode 100644 index 5ed9f5742323f..0000000000000 Binary files a/blockchains/smartchain/assets/0xcCe7F9eB881248E04f2975a3Fb3B62631ad9eE37/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/info.json b/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/info.json new file mode 100644 index 0000000000000..f9638affbfb97 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..75ab0743930d9 Binary files /dev/null and b/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/logo.png differ diff --git a/blockchains/smartchain/assets/0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63/logo.png b/blockchains/smartchain/assets/0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63/logo.png index 903ba7aa40edf..008d22434f766 100644 Binary files a/blockchains/smartchain/assets/0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63/logo.png and b/blockchains/smartchain/assets/0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63/logo.png differ diff --git a/blockchains/smartchain/assets/0xca861e289f04cB9C67fd6b87ca7EAFa59192f164/info.json b/blockchains/smartchain/assets/0xca861e289f04cB9C67fd6b87ca7EAFa59192f164/info.json new file mode 100644 index 0000000000000..688a21b4c0e8b --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6e2f949e6b2b1 Binary files /dev/null and b/blockchains/smartchain/assets/0xca861e289f04cB9C67fd6b87ca7EAFa59192f164/logo.png differ diff --git a/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/info.json b/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/info.json new file mode 100644 index 0000000000000..3eec960f19f1c --- /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": "twitter", + "url": "https://twitter.com/ZedxionC" + } + ] +} diff --git a/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/logo.png b/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/logo.png new file mode 100644 index 0000000000000..56ebcd22f86dc Binary files /dev/null and b/blockchains/smartchain/assets/0xccE7162344Dc758e4715079C8Abc981dc72273B9/logo.png differ diff --git a/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/info.json b/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/info.json new file mode 100644 index 0000000000000..bcb3902561f24 --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/logo.png b/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/logo.png new file mode 100644 index 0000000000000..f6949869609aa Binary files /dev/null and b/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/logo.png differ diff --git a/blockchains/smartchain/assets/0xd10Fe9d371C22416df34340287cd5D9029842Fc3/info.json b/blockchains/smartchain/assets/0xd10Fe9d371C22416df34340287cd5D9029842Fc3/info.json new file mode 100644 index 0000000000000..60de0c348c122 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..02a1cd4476e15 Binary files /dev/null and b/blockchains/smartchain/assets/0xd10Fe9d371C22416df34340287cd5D9029842Fc3/logo.png differ diff --git a/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/info.json b/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/info.json new file mode 100644 index 0000000000000..7494ca9f5db3d --- /dev/null +++ b/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/info.json @@ -0,0 +1,25 @@ +{ + "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/0xd17479997F34dd9156Deef8F95A52D81D265be9c", + "status": "active", + "id": "0xd17479997F34dd9156Deef8F95A52D81D265be9c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/usddio" + }, + { + "name": "whitepaper", + "url": "https://usdd.io/USDD-en.pdf" + } + ], + "tags": [ + "stablecoin" + ] +} + diff --git a/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/logo.png b/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/logo.png new file mode 100644 index 0000000000000..b17bf63fd3273 Binary files /dev/null and b/blockchains/smartchain/assets/0xd17479997F34dd9156Deef8F95A52D81D265be9c/logo.png differ diff --git a/blockchains/smartchain/assets/0xd21d29B38374528675C34936bf7d5Dd693D2a577/info.json b/blockchains/smartchain/assets/0xd21d29B38374528675C34936bf7d5Dd693D2a577/info.json new file mode 100644 index 0000000000000..e9beae8f73eb8 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..87014c4be024a Binary files /dev/null and b/blockchains/smartchain/assets/0xd21d29B38374528675C34936bf7d5Dd693D2a577/logo.png differ diff --git a/blockchains/smartchain/assets/0xd2359c576632234D1354B20Bf51B0277Be20C81e/info.json b/blockchains/smartchain/assets/0xd2359c576632234D1354B20Bf51B0277Be20C81e/info.json new file mode 100644 index 0000000000000..2378f80f41d95 --- /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": "twitter", + "url": "https://twitter.com/GameGuruToken" + }, + { + "name": "telegram", + "url": "https://t.me/GameGuruToken" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.gameguru.gg" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0xd2359c576632234D1354B20Bf51B0277Be20C81e/logo.png b/blockchains/smartchain/assets/0xd2359c576632234D1354B20Bf51B0277Be20C81e/logo.png new file mode 100644 index 0000000000000..7ee8f72d1ccf8 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 index a261790409ebf..b3b4973c693ab 100644 --- a/blockchains/smartchain/assets/0xd27D3F7f329D93d897612E413F207A4dbe8bF799/info.json +++ b/blockchains/smartchain/assets/0xd27D3F7f329D93d897612E413F207A4dbe8bF799/info.json @@ -1,12 +1,12 @@ { - "name": "Moonshot (MOONSHOT)", + "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": "active", + "status": "abandoned", "id": "0xd27D3F7f329D93d897612E413F207A4dbe8bF799", "links": [ { diff --git a/blockchains/smartchain/assets/0xd27D3F7f329D93d897612E413F207A4dbe8bF799/logo.png b/blockchains/smartchain/assets/0xd27D3F7f329D93d897612E413F207A4dbe8bF799/logo.png deleted file mode 100644 index 7493afe98439d..0000000000000 Binary files a/blockchains/smartchain/assets/0xd27D3F7f329D93d897612E413F207A4dbe8bF799/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xd63CDf02853D759831550fAe7dF8FFfE0B317b39/info.json b/blockchains/smartchain/assets/0xd63CDf02853D759831550fAe7dF8FFfE0B317b39/info.json new file mode 100644 index 0000000000000..d9c4981acbcfe --- /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 0000000000000..5657a6ff93b8a Binary files /dev/null and b/blockchains/smartchain/assets/0xd63CDf02853D759831550fAe7dF8FFfE0B317b39/logo.png differ diff --git a/blockchains/smartchain/assets/0xd6AF849b09879a3648d56B5d43c6e5908a74CA83/info.json b/blockchains/smartchain/assets/0xd6AF849b09879a3648d56B5d43c6e5908a74CA83/info.json new file mode 100644 index 0000000000000..8996da9a0d62a --- /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": "twitter", + "url": "https://twitter.com/CommunityJax" + }, + { + "name": "facebook", + "url": "https://facebook.com/network.jax" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCGLFiBG4j-CzEs9TFTKk51g" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/smartchain/assets/0xd6AF849b09879a3648d56B5d43c6e5908a74CA83/logo.png b/blockchains/smartchain/assets/0xd6AF849b09879a3648d56B5d43c6e5908a74CA83/logo.png new file mode 100644 index 0000000000000..9fcda0c21448a Binary files /dev/null and b/blockchains/smartchain/assets/0xd6AF849b09879a3648d56B5d43c6e5908a74CA83/logo.png differ diff --git a/blockchains/smartchain/assets/0xd6edbB510af7901b2C049ce778b65a740c4aeB7f/info.json b/blockchains/smartchain/assets/0xd6edbB510af7901b2C049ce778b65a740c4aeB7f/info.json new file mode 100644 index 0000000000000..d80d07216c811 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..9ec3f2023a45e 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 index 1894d7a828693..0b3cca0f08d01 100644 --- a/blockchains/smartchain/assets/0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec/info.json +++ b/blockchains/smartchain/assets/0xd6fDDe76B8C1C45B33790cc8751D5b88984c44ec/info.json @@ -3,23 +3,50 @@ "type": "BEP20", "symbol": "STRX", "decimals": 18, - "website": "https://strikecoin.co", - "description": "StrikeX is the sole currency for the TradeStrike ecosystem; TradeStrike Lite, TradeStrike Wallet & TradeStrike.", + "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": "twitter", - "url": "https://twitter.com/trade_strike" + "url": "https://twitter.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/r/TradeStrike" + "url": "https://reddit.com/TradeStrike" } + ], + "tags": [ + "staking" ] -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/info.json b/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/info.json new file mode 100644 index 0000000000000..de51634d1f247 --- /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": "twitter", + "url": "https://twitter.com/RhythmBSC" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rhythm" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rhythm/" + }, + { + "name": "telegram", + "url": "https://t.me/RhythmChat" + }, + { + "name": "whitepaper", + "url": "https://rhythm.cash/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/logo.png b/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/logo.png rename to blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/logo.png diff --git a/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json new file mode 100644 index 0000000000000..4db11f9697404 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..599cd735e829a Binary files /dev/null and b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png differ diff --git a/blockchains/smartchain/assets/0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782/info.json b/blockchains/smartchain/assets/0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782/info.json new file mode 100644 index 0000000000000..f84acf61f625b --- /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": "twitter", + "url": "https://twitter.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 0000000000000..8d7b5b280b2ae Binary files /dev/null and b/blockchains/smartchain/assets/0xd944f1D1e9d5f9Bb90b62f9D45e447D989580782/logo.png differ diff --git a/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/info.json b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/info.json new file mode 100644 index 0000000000000..0f8ec13181894 --- /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": "twitter", + "url": "https://twitter.com/howinu" + }, + { + "name": "telegram", + "url": "https://t.me/howinu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/howinu/" + }, + { + "name": "facebook", + "url": "https://facebook.com/howinu" + }, + { + "name": "youtube", + "url": "https://youtube.com/howinu" + }, + { + "name": "whitepaper", + "url": "https://howinu.com/download/107/?tmstv=1685559667" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/logo.png b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/logo.png new file mode 100644 index 0000000000000..113c19589edc3 Binary files /dev/null and b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/logo.png differ diff --git a/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/info.json b/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/info.json new file mode 100644 index 0000000000000..7c1a66005d5e3 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/logo.png b/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/logo.png new file mode 100644 index 0000000000000..88b8b5786481d Binary files /dev/null and b/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/logo.png differ diff --git a/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/info.json b/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/info.json new file mode 100644 index 0000000000000..5aebe0b8f6b2e --- /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": "twitter", + "url": "https://twitter.com/payslink" + }, + { + "name": "telegram", + "url": "https://t.me/payslink" + } + ] +} diff --git a/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/logo.png b/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/logo.png new file mode 100644 index 0000000000000..abfc45d7828a8 Binary files /dev/null and b/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/logo.png differ diff --git a/blockchains/smartchain/assets/0xdd325C38b12903B727D16961e61333f4871A70E0/info.json b/blockchains/smartchain/assets/0xdd325C38b12903B727D16961e61333f4871A70E0/info.json new file mode 100644 index 0000000000000..a155bbde63fe2 --- /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": "twitter", + "url": "https://twitter.com/ElephantStatus" + }, + { + "name": "whitepaper", + "url": "https://elephant.money/media/elephant-wp.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCBHcyR7ixP70R6hhpck1qUQ" + } + ], + "tags": [ + "stablecoin", + "defi", + "staking" + ] +} diff --git a/blockchains/smartchain/assets/0xdd325C38b12903B727D16961e61333f4871A70E0/logo.png b/blockchains/smartchain/assets/0xdd325C38b12903B727D16961e61333f4871A70E0/logo.png new file mode 100644 index 0000000000000..08cf65993de07 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 0000000000000..f9f09f1eec6e7 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..1f1a9a06f9bac Binary files /dev/null and b/blockchains/smartchain/assets/0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6/logo.png differ diff --git a/blockchains/smartchain/assets/0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995/info.json b/blockchains/smartchain/assets/0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995/info.json new file mode 100644 index 0000000000000..931d1325f4238 --- /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": "twitter", + "url": "https://twitter.com/CryptoMinesApp" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cryptomines" + }, + { + "name": "telegram", + "url": "https://t.me/cryptominesapp" + } + ], + "tags": [ + "nft", + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995/logo.png b/blockchains/smartchain/assets/0xe0191fEfdd0D2B39b1a2E4E029cCDA8A481b7995/logo.png new file mode 100644 index 0000000000000..48d6857688910 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 0000000000000..55ed208003060 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..8f09e5dab0274 Binary files /dev/null and b/blockchains/smartchain/assets/0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3/logo.png differ diff --git a/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/info.json b/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/info.json new file mode 100644 index 0000000000000..2645831747684 --- /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": "twitter", + "url": "https://twitter.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/" + } + ] +} diff --git a/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/logo.png b/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/logo.png new file mode 100644 index 0000000000000..9dce726640988 Binary files /dev/null and b/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/logo.png differ diff --git a/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/info.json b/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/info.json index d2b93f8744af8..7819fdb180ec7 100644 --- a/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/info.json +++ b/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "DOGECOLA", "decimals": 9, - "status": "active", + "status": "abandoned", "id": "0xe320Df552e78D57E95cF1182B6960746d5016561", "tags": [ "deflationary" diff --git a/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/logo.png b/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/logo.png deleted file mode 100644 index fd0acaa83f1f8..0000000000000 Binary files a/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175/info.json b/blockchains/smartchain/assets/0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175/info.json new file mode 100644 index 0000000000000..84e7c6cd4d064 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f085b9ac010cb Binary files /dev/null and b/blockchains/smartchain/assets/0xe327eD2037F133cdA9F56171b68B6b7b4Dfa6175/logo.png differ diff --git a/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/info.json b/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/info.json new file mode 100644 index 0000000000000..46cac4236f2bc --- /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": "twitter", + "url": "https://twitter.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 0000000000000..bf59041d8b182 Binary files /dev/null and b/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/logo.png differ diff --git a/blockchains/smartchain/assets/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5/info.json b/blockchains/smartchain/assets/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5/info.json new file mode 100644 index 0000000000000..b9e5c5e2befff --- /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": "twitter", + "url": "https://twitter.com/galxe" + }, + { + "name": "telegram", + "url": "https://t.me/galxe" + }, + { + "name": "discord", + "url": "https://discord.com/invite/galxe" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/smartchain/assets/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5/logo.png b/blockchains/smartchain/assets/0xe4Cc45Bb5DBDA06dB6183E8bf016569f40497Aa5/logo.png new file mode 100644 index 0000000000000..2c93c622e823e 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 0000000000000..9b7f55ccc8903 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/logo.png b/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/logo.png new file mode 100644 index 0000000000000..bcfd3fced0d36 Binary files /dev/null and b/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/logo.png differ diff --git a/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/info.json b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/info.json new file mode 100644 index 0000000000000..15d44bbe0913f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/logo.png b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/logo.png new file mode 100644 index 0000000000000..6a9a2201dfa22 Binary files /dev/null and b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/logo.png differ diff --git a/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json b/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json new file mode 100644 index 0000000000000..117ef79e380da --- /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": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.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/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/logo.png b/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/logo.png new file mode 100644 index 0000000000000..8f53736344256 Binary files /dev/null and b/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/logo.png differ diff --git a/blockchains/smartchain/assets/0xe57F73EB27Da9D17f90C994744D842e95700C100/info.json b/blockchains/smartchain/assets/0xe57F73EB27Da9D17f90C994744D842e95700C100/info.json new file mode 100644 index 0000000000000..d2481f898f75f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..83136391b1e94 Binary files /dev/null and b/blockchains/smartchain/assets/0xe57F73EB27Da9D17f90C994744D842e95700C100/logo.png differ diff --git a/blockchains/smartchain/assets/0xe702c303173f90094ce8c9c6CA3f198eCA0E027C/info.json b/blockchains/smartchain/assets/0xe702c303173f90094ce8c9c6CA3f198eCA0E027C/info.json new file mode 100644 index 0000000000000..00fa38572c7c7 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..0bc18a175b274 Binary files /dev/null and b/blockchains/smartchain/assets/0xe702c303173f90094ce8c9c6CA3f198eCA0E027C/logo.png differ diff --git a/blockchains/smartchain/assets/0xe73c081cB82f1e8486f18a833D547a33F28B1A45/info.json b/blockchains/smartchain/assets/0xe73c081cB82f1e8486f18a833D547a33F28B1A45/info.json new file mode 100644 index 0000000000000..93b8304bb01f7 --- /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": "twitter", + "url": "https://twitter.com/HappyTreasure__" + } + ], + "tags": [ + "defi", + "nft", + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0xe73c081cB82f1e8486f18a833D547a33F28B1A45/logo.png b/blockchains/smartchain/assets/0xe73c081cB82f1e8486f18a833D547a33F28B1A45/logo.png new file mode 100644 index 0000000000000..fdafef373680b 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 0000000000000..16cac3c2af49c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..b9a3ff852a95c Binary files /dev/null and b/blockchains/smartchain/assets/0xe75BF67Df2388183d9b7714231996C937d4a855A/logo.png differ diff --git a/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 0000000000000..b4e2b6f0acef5 --- /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": "twitter", + "url": "https://twitter.com/abbcfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbc-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png b/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png new file mode 100644 index 0000000000000..9259df4c30a91 Binary files /dev/null and b/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png differ diff --git a/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/info.json b/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/info.json index 871d625d1a43e..f6251dc232bf4 100644 --- a/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/info.json +++ b/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg BUSD", + "name": "BNB pegged BUSD", "website": "https://paxos.com/busd", - "description": "Binance-Peg 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.", + "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", diff --git a/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/info.json b/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/info.json new file mode 100644 index 0000000000000..0d160ede06930 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/logo.png b/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/logo.png new file mode 100644 index 0000000000000..c6de8862832c9 Binary files /dev/null and b/blockchains/smartchain/assets/0xeBBAefF6217d22E7744394061D874015709b8141/logo.png differ diff --git a/blockchains/smartchain/assets/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef/info.json b/blockchains/smartchain/assets/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef/info.json index fb84077689f66..956eecc730e87 100644 --- a/blockchains/smartchain/assets/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef/info.json +++ b/blockchains/smartchain/assets/0xeBD0070237a0713E8D94fEf1B728d3d993d290ef/info.json @@ -1,7 +1,7 @@ { "name": "Venus CAN", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0xeBD0070237a0713E8D94fEf1B728d3d993d290ef", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9/info.json b/blockchains/smartchain/assets/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9/info.json new file mode 100644 index 0000000000000..8267fb8425f6f --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9/logo.png b/blockchains/smartchain/assets/0xeCEB87cF00DCBf2D4E2880223743Ff087a995aD9/logo.png new file mode 100644 index 0000000000000..cec3ca1725e13 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 0000000000000..66305f608c22d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d980071a04045 Binary files /dev/null and b/blockchains/smartchain/assets/0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB/logo.png differ diff --git a/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/info.json b/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/info.json new file mode 100644 index 0000000000000..7737248d08eb9 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/logo.png b/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/logo.png new file mode 100644 index 0000000000000..a83d58a242a0e 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 index 5cde3af99dad5..80b1693c57a8a 100644 --- a/blockchains/smartchain/assets/0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D/info.json +++ b/blockchains/smartchain/assets/0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "HPS", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D", "links": [ { diff --git a/blockchains/smartchain/assets/0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D/logo.png b/blockchains/smartchain/assets/0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D/logo.png deleted file mode 100644 index b0bad5657d0c0..0000000000000 Binary files a/blockchains/smartchain/assets/0xeDa21B525Ac789EaB1a08ef2404dd8505FfB973D/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f/info.json b/blockchains/smartchain/assets/0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f/info.json new file mode 100644 index 0000000000000..622dd29483521 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..f8d79b2cb9c92 Binary files /dev/null and b/blockchains/smartchain/assets/0xeE7E8C85956D32C64bafDcdED3F43b3c39b1CE2f/logo.png differ diff --git a/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/info.json b/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/info.json index 169c8d574e6ee..62691460efe16 100644 --- a/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/info.json +++ b/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/info.json @@ -1,7 +1,7 @@ { "name": "Venus USDC", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/logo.png b/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/logo.png index 11d297e8c5503..c30a7b4553b50 100644 Binary files a/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/logo.png and b/blockchains/smartchain/assets/0xecA88125a5ADbe82614ffC12D0DB554E2e2867C8/logo.png differ diff --git a/blockchains/smartchain/assets/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4/info.json b/blockchains/smartchain/assets/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4/info.json index 8b42985f3d146..2be1ebed17af9 100644 --- a/blockchains/smartchain/assets/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4/info.json +++ b/blockchains/smartchain/assets/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0xed74Bc5DC139356E08dE28143996F5eF6e4334a4", "links": [ { diff --git a/blockchains/smartchain/assets/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4/logo.png b/blockchains/smartchain/assets/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4/logo.png deleted file mode 100644 index e7ee1803efdfa..0000000000000 Binary files a/blockchains/smartchain/assets/0xed74Bc5DC139356E08dE28143996F5eF6e4334a4/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/info.json b/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/info.json new file mode 100644 index 0000000000000..bf8dfd885c3ae --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/logo.png b/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/logo.png new file mode 100644 index 0000000000000..41f6314172001 Binary files /dev/null and b/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/logo.png differ diff --git a/blockchains/smartchain/assets/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C/info.json b/blockchains/smartchain/assets/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C/info.json index 68009259205e7..c7cc18e139dd5 100644 --- a/blockchains/smartchain/assets/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C/info.json +++ b/blockchains/smartchain/assets/0xf275e1AC303a4C9D987a2c48b8E555A77FeC3F1C/info.json @@ -4,18 +4,42 @@ "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!", + "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": "twitter", + "url": "https://twitter.com/DeepSpaceBSC" + }, { "name": "github", "url": "https://github.com/deepspace-game" }, { - "name": "twitter", - "url": "https://twitter.com/DeepSpaceBSC" + "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", @@ -25,22 +49,18 @@ "name": "whitepaper", "url": "https://dps.fyi/whitepaper" }, - { - "name": "telegram", - "url": "https://t.me/DeepSpaceGame" - }, { "name": "medium", "url": "https://deepspacebsc.medium.com/" }, - { - "name": "discord", - "url": "https://discord.com/invite/gG6engzZXu" - }, { "name": "youtube", "url": "https://youtube.com/c/DeepSpaceBSC" }, + { + "name": "facebook", + "url": "https://facebook.com/deepspacebsc/" + }, { "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/deepspace/" @@ -49,17 +69,16 @@ "name": "coingecko", "url": "https://coingecko.com/coins/deepspace" }, - { - "name": "blog", - "url": "https://dps.fyi/blog" - }, - { - "name": "docs", - "url": "https://dps.fyi/docs" - }, { "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/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/info.json b/blockchains/smartchain/assets/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/info.json new file mode 100644 index 0000000000000..0e1c09655896d --- /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": "twitter", + "url": "https://twitter.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 0000000000000..a59dd4bd6c7c4 Binary files /dev/null and b/blockchains/smartchain/assets/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/logo.png differ diff --git a/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/info.json b/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/info.json index f15ac19fc8ef6..86736f530604c 100644 --- a/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/info.json +++ b/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/info.json @@ -1,7 +1,7 @@ { "name": "Venus ETH", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0xf508fCD89b8bd15579dc79A6827cB4686A3592c8", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/logo.png b/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/logo.png old mode 100755 new mode 100644 index ebb43df0fdf41..6461b421e15f0 Binary files a/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/logo.png and b/blockchains/smartchain/assets/0xf508fCD89b8bd15579dc79A6827cB4686A3592c8/logo.png differ diff --git a/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/info.json b/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/info.json new file mode 100644 index 0000000000000..2bd8b12412ff1 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/logo.png b/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/logo.png new file mode 100644 index 0000000000000..a750e6c4fffb3 Binary files /dev/null and b/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/logo.png differ diff --git a/blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/info.json b/blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/info.json new file mode 100644 index 0000000000000..cfcec79474dd7 --- /dev/null +++ b/blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/info.json @@ -0,0 +1,11 @@ +{ + "name": "JulSwap", + "website": "https://julswap.com", + "description": "JulSwap DEX Commnuity Token", + "explorer": "https://bscscan.com/token/0xf5D8015D625be6F59b8073C8189BD51bA28792e1", + "type": "BEP20", + "symbol": "JulD", + "decimals": 18, + "status": "active", + "id": "0xf5D8015D625be6F59b8073C8189BD51bA28792e1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/logo.png b/blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/logo.png rename to blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/logo.png diff --git a/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json b/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json new file mode 100644 index 0000000000000..05dc893c0c8a5 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..ee7784a141fab Binary files /dev/null and b/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/logo.png differ diff --git a/blockchains/smartchain/assets/0xf7DE7E8A6bd59ED41a4b5fe50278b3B7f31384dF/info.json b/blockchains/smartchain/assets/0xf7DE7E8A6bd59ED41a4b5fe50278b3B7f31384dF/info.json new file mode 100644 index 0000000000000..9fd8c062ab492 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..61eec0683aa20 Binary files /dev/null and b/blockchains/smartchain/assets/0xf7DE7E8A6bd59ED41a4b5fe50278b3B7f31384dF/logo.png differ diff --git a/blockchains/smartchain/assets/0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695/info.json b/blockchains/smartchain/assets/0xf8F9efC0db77d8881500bb06FF5D6ABc3070E695/info.json new file mode 100644 index 0000000000000..aee8dc8c01be2 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..577673c43c6a4 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 index 02993da6ccccd..b3c97641237a6 100644 --- a/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/info.json +++ b/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/info.json @@ -1,7 +1,7 @@ { "name": "Venus FIL", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/logo.png b/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/logo.png index c89265cf749a2..e94351f0da0ad 100644 Binary files a/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/logo.png and b/blockchains/smartchain/assets/0xf91d58b5aE142DAcC749f58A49FCBac340Cb0343/logo.png differ diff --git a/blockchains/smartchain/assets/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE/info.json b/blockchains/smartchain/assets/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE/info.json new file mode 100644 index 0000000000000..f1583114751b0 --- /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": "twitter", + "url": "https://twitter.com/teamchromia" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE/logo.png b/blockchains/smartchain/assets/0xf9CeC8d50f6c8ad3Fb6dcCEC577e05aA32B224FE/logo.png new file mode 100644 index 0000000000000..395696034cf78 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 0000000000000..29c993cf7d7fe --- /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": "twitter", + "url": "https://twitter.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 0000000000000..b23304784bcc8 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 0000000000000..d86fc2b81edc1 --- /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 0000000000000..7a2e75fd77f1b Binary files /dev/null and b/blockchains/smartchain/assets/0xfA54fF1a158B5189Ebba6ae130CEd6bbd3aEA76e/logo.png differ diff --git a/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/info.json b/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/info.json index 190ad8af85c00..c9dac6896101f 100644 --- a/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/info.json +++ b/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/info.json @@ -1,7 +1,7 @@ { "name": "Venus USDT", "website": "https://venus.io/", - "description": "The Venus vTokens, which are self-contained borrowing and lending contracts. VToken contains the core logic and VBep20, VBUSD, VSXP, VUSDC, VUSDT, VXVS and VBNB add public interfaces for Bep20 tokens and bnb, respectively.", + "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", @@ -10,10 +10,6 @@ "status": "active", "id": "0xfD5840Cd36d94D7229439859C0112a4185BC0255", "links": [ - { - "name": "github", - "url": "https://github.com/SwipeWallet/venus-protocol" - }, { "name": "twitter", "url": "https://twitter.com/VenusProtocol" diff --git a/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/logo.png b/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/logo.png index 18d88d02a58a7..a7e07311e8ee6 100644 Binary files a/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/logo.png and b/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/logo.png differ diff --git a/blockchains/smartchain/assets/0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba/info.json b/blockchains/smartchain/assets/0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba/info.json new file mode 100644 index 0000000000000..4a907f3656e86 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..4101813265fa1 Binary files /dev/null and b/blockchains/smartchain/assets/0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba/logo.png differ diff --git a/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/info.json b/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/info.json new file mode 100644 index 0000000000000..a763599730108 --- /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": "twitter", + "url": "https://twitter.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/m7JxNcSt7e" + }, + { + "name": "whitepaper", + "url": "https://vitainu.org/wp-content/uploads/2022/01/Vita-Inu-Whitepaper-NEW-INTRO_compressed.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/vitainucoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCLcg0_VQMlOA9RfyW6xL9Zw" + }, + { + "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" + ] +} diff --git a/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/logo.png b/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/logo.png new file mode 100644 index 0000000000000..0fdad05b652d2 Binary files /dev/null and b/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/logo.png differ diff --git a/blockchains/smartchain/assets/0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2/info.json b/blockchains/smartchain/assets/0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2/info.json new file mode 100644 index 0000000000000..f565a17e6ff51 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..273b71d336cea Binary files /dev/null and b/blockchains/smartchain/assets/0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2/logo.png differ diff --git a/blockchains/smartchain/assets/0xfa37E513E6cd506c4694b992825a8B614C035581/info.json b/blockchains/smartchain/assets/0xfa37E513E6cd506c4694b992825a8B614C035581/info.json new file mode 100644 index 0000000000000..800e5b06dd030 --- /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": "twitter", + "url": "https://twitter.com/CoinNexum" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/nexum/" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0xfa37E513E6cd506c4694b992825a8B614C035581/logo.png b/blockchains/smartchain/assets/0xfa37E513E6cd506c4694b992825a8B614C035581/logo.png new file mode 100644 index 0000000000000..ce69e5ca7483d Binary files /dev/null and b/blockchains/smartchain/assets/0xfa37E513E6cd506c4694b992825a8B614C035581/logo.png differ diff --git a/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/info.json b/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/info.json new file mode 100644 index 0000000000000..57e6bfc612dc5 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..7df4376797683 Binary files /dev/null and b/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/logo.png differ diff --git a/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/info.json b/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/info.json new file mode 100644 index 0000000000000..62766ba8ac7c6 --- /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": "active", + "id": "0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/logo.png b/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/logo.png rename to blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/logo.png diff --git a/blockchains/smartchain/info/info.json b/blockchains/smartchain/info/info.json index d99e086e8f33e..c745cc84b86d8 100644 --- a/blockchains/smartchain/info/info.json +++ b/blockchains/smartchain/info/info.json @@ -1,6 +1,6 @@ { "name": "BNB Smart Chain", - "website": "https://binance.org/en/smartChain", + "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", @@ -9,7 +9,8 @@ "decimals": 18, "status": "active", "tags": [ - "staking-native" + "staking-native", + "dapp" ], "links": [ { @@ -18,7 +19,7 @@ }, { "name": "twitter", - "url": "https://twitter.com/binance_dex" + "url": "https://twitter.com/BNBCHAIN" }, { "name": "reddit", diff --git a/blockchains/smartchain/tokenlist.json b/blockchains/smartchain/tokenlist.json index 34a45314b385d..b3e13d77d3a67 100644 --- a/blockchains/smartchain/tokenlist.json +++ b/blockchains/smartchain/tokenlist.json @@ -11,7 +11,7 @@ "name": "Wrapped BNB", "symbol": "WBNB", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c/logo.png", "pairs": [ { "base": "c20000714_t0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153" @@ -183,6 +183,19 @@ }, { "base": "c20000714_t0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6" + }, + { + "base": "c20000714_t0x6679eB24F59dFe111864AEc72B443d1Da666B360" + }, + { + "base": "c20000714_t0x734D66f635523D7ddb7d2373C128333DA313041b" + + }, + { + "base": "c20000714_t0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34" + }, + { + "base": "c20000714_t0xc748673057861a797275CD8A068AbB95A902e8de" } ] }, @@ -194,17 +207,17 @@ "name": "Jupiter", "symbol": "bwJUP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x0231f91e02DebD20345Ae8AB7D71A41f8E140cE7/logo.png", "pairs": [] }, { "asset": "c20000714_t0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153", "type": "BEP20", "address": "0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153", - "name": "Binance-Peg Filecoin", + "name": "BNB pegged Filecoin", "symbol": "FIL", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/logo.png", "pairs": [] }, { @@ -215,27 +228,27 @@ "name": "PancakeSwap Token", "symbol": "CAKE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82/logo.png", "pairs": [] }, { "asset": "c20000714_t0x0Eb3a705fc54725037CC9e008bDede697f62F335", "type": "BEP20", "address": "0x0Eb3a705fc54725037CC9e008bDede697f62F335", - "name": "Binance-Peg Cosmos Token", + "name": "BNB pegged Cosmos Token", "symbol": "ATOM", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/logo.png", "pairs": [] }, { "asset": "c20000714_t0x16939ef78684453bfDFb47825F8a5F714f12623a", "type": "BEP20", "address": "0x16939ef78684453bfDFb47825F8a5F714f12623a", - "name": "Binance-Peg Tezos Token", + "name": "BNB pegged Tezos Token", "symbol": "XTZ", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/logo.png", "pairs": [] }, { @@ -245,7 +258,7 @@ "name": "bDollar", "symbol": "BDO", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x190b589cf9Fb8DDEabBFeae36a813FFb2A702454/logo.png", "pairs": [] }, { @@ -253,20 +266,20 @@ "asset": "c20000714_t0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", "type": "BEP20", "address": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", - "name": "Binance-Peg Dai Token", + "name": "BNB pegged Dai Token", "symbol": "DAI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/logo.png", "pairs": [] }, { "asset": "c20000714_t0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE", "type": "BEP20", "address": "0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE", - "name": "Binance-Peg XRP Token", + "name": "BNB pegged XRP Token", "symbol": "XRP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/logo.png", "pairs": [] }, { @@ -276,7 +289,7 @@ "name": "Fuel Token", "symbol": "Fuel", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x2090c8295769791ab7A3CF1CC6e0AA19F35e441A/logo.png", "pairs": [] }, { @@ -284,10 +297,10 @@ "asset": "c20000714_t0x2170Ed0880ac9A755fd29B2688956BD959F933F8", "type": "BEP20", "address": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8", - "name": "Binance-Peg Ethereum", + "name": "BNB pegged Ethereum", "symbol": "ETH", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/logo.png", "pairs": [] }, { @@ -297,7 +310,7 @@ "name": "Wrapped UST Token", "symbol": "UST", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x23396cF899Ca06c4472205fC903bDB4de249D6fC/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x23396cF899Ca06c4472205fC903bDB4de249D6fC/logo.png", "pairs": [] }, { @@ -307,7 +320,7 @@ "name": "Ditto", "symbol": "DITTO", "decimals": 9, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x233d91A0713155003fc4DcE0AFa871b508B3B715/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x233d91A0713155003fc4DcE0AFa871b508B3B715/logo.png", "pairs": [] }, { @@ -317,7 +330,7 @@ "name": "SparkPoint Fuel", "symbol": "SFUEL", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x37Ac4D6140e54304D77437A5c11924f61a2D976f/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x37Ac4D6140e54304D77437A5c11924f61a2D976f/logo.png", "pairs": [] }, { @@ -327,17 +340,17 @@ "name": "SPONGE", "symbol": "SPG", "decimals": 9, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x3aabCf53A1930A42E18D938C019E83Ebee50a849/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x3aabCf53A1930A42E18D938C019E83Ebee50a849/logo.png", "pairs": [] }, { "asset": "c20000714_t0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47", "type": "BEP20", "address": "0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47", - "name": "Binance-Peg Cardano Token", + "name": "BNB pegged Cardano Token", "symbol": "ADA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/logo.png", "pairs": [] }, { @@ -347,17 +360,17 @@ "name": "ACryptoS", "symbol": "ACS", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x4197C6EF3879a08cD51e5560da5064B773aa1d29/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x4197C6EF3879a08cD51e5560da5064B773aa1d29/logo.png", "pairs": [] }, { "asset": "c20000714_t0x4338665CBB7B2485A8855A139b75D5e34AB0DB94", "type": "BEP20", "address": "0x4338665CBB7B2485A8855A139b75D5e34AB0DB94", - "name": "Binance-Peg Litecoin Token", + "name": "BNB pegged Litecoin Token", "symbol": "LTC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/logo.png", "pairs": [] }, { @@ -367,7 +380,7 @@ "name": "ZeroSwapToken", "symbol": "ZEE", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x44754455564474A89358B2C2265883DF993b12F0/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x44754455564474A89358B2C2265883DF993b12F0/logo.png", "pairs": [] }, { @@ -377,7 +390,7 @@ "name": "Swipe", "symbol": "SXP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x47BEAd2563dCBf3bF2c9407fEa4dC236fAbA485A/logo.png", "pairs": [] }, { @@ -388,7 +401,7 @@ "name": "Trust Wallet", "symbol": "TWT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png", "pairs": [] }, { @@ -399,7 +412,7 @@ "name": "VAI Stablecoin", "symbol": "VAI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/logo.png", "pairs": [] }, { @@ -407,20 +420,20 @@ "asset": "c20000714_t0x55d398326f99059fF775485246999027B3197955", "type": "BEP20", "address": "0x55d398326f99059fF775485246999027B3197955", - "name": "Binance-Peg BSC-USD", + "name": "Tether USD", "symbol": "USDT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x55d398326f99059fF775485246999027B3197955/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x55d398326f99059fF775485246999027B3197955/logo.png", "pairs": [] }, { "asset": "c20000714_t0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6", "type": "BEP20", "address": "0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6", - "name": "Binance-Peg EOS Token", + "name": "BNB pegged EOS Token", "symbol": "EOS", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6/logo.png", "pairs": [] }, { @@ -430,7 +443,7 @@ "name": "BSCX", "symbol": "BSCX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x5Ac52EE5b2a633895292Ff6d8A89bB9190451587/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x5Ac52EE5b2a633895292Ff6d8A89bB9190451587/logo.png", "pairs": [] }, { @@ -441,7 +454,7 @@ "name": "BLinkToken", "symbol": "BLINK", "decimals": 6, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x63870A18B6e42b01Ef1Ad8A2302ef50B7132054F/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x63870A18B6e42b01Ef1Ad8A2302ef50B7132054F/logo.png", "pairs": [] }, { @@ -451,7 +464,7 @@ "name": "DODO", "symbol": "DODO", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2/logo.png", "pairs": [] }, { @@ -461,17 +474,17 @@ "name": "Absorber", "symbol": "ABS", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x6c5FE6e99D2484db7E4BF34F365ABA42d0E4dC20/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x6c5FE6e99D2484db7E4BF34F365ABA42d0E4dC20/logo.png", "pairs": [] }, { "asset": "c20000714_t0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402", "type": "BEP20", "address": "0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402", - "name": "Binance-Peg Polkadot Token", + "name": "BNB pegged Polkadot Token", "symbol": "DOT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/logo.png", "pairs": [] }, { @@ -479,10 +492,10 @@ "asset": "c20000714_t0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c", "type": "BEP20", "address": "0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c", - "name": "Binance-Peg BTCB Token", + "name": "BNB pegged BTCB Token", "symbol": "BTCB", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/logo.png", "pairs": [] }, { @@ -492,7 +505,7 @@ "name": "UNFI", "symbol": "UNFI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x728C5baC3C3e370E372Fc4671f9ef6916b814d8B/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x728C5baC3C3e370E372Fc4671f9ef6916b814d8B/logo.png", "pairs": [] }, { @@ -502,7 +515,7 @@ "name": "AllianceBlock Token", "symbol": "bALBT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x72fAa679E1008Ad8382959FF48E392042A8b06f7/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x72fAa679E1008Ad8382959FF48E392042A8b06f7/logo.png", "pairs": [] }, { @@ -512,7 +525,7 @@ "name": "StandardBTCHashrateToken", "symbol": "BTCST", "decimals": 17, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x78650B139471520656b9E7aA7A5e9276814a38e9/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x78650B139471520656b9E7aA7A5e9276814a38e9/logo.png", "pairs": [] }, { @@ -522,7 +535,7 @@ "name": "CafeSwap Token", "symbol": "BREW", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x790Be81C3cA0e53974bE2688cDb954732C9862e1/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x790Be81C3cA0e53974bE2688cDb954732C9862e1/logo.png", "pairs": [] }, { @@ -532,17 +545,17 @@ "name": "Kebab Token", "symbol": "KEBAB", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x7979F6C54ebA05E18Ded44C4F986F49a5De551c2/logo.png", "pairs": [] }, { "asset": "c20000714_t0x7F70642d88cf1C4a3a7abb072B53B929b653edA5", "type": "BEP20", "address": "0x7F70642d88cf1C4a3a7abb072B53B929b653edA5", - "name": "Binance-Peg YFII.finance Token", + "name": "BNB pegged YFII.finance Token", "symbol": "YFII", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/logo.png", "pairs": [] }, { @@ -552,27 +565,27 @@ "name": "bearn.fi", "symbol": "BFI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x81859801b01764D4f0Fa5E64729f5a6C3b91435b/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x81859801b01764D4f0Fa5E64729f5a6C3b91435b/logo.png", "pairs": [] }, { "asset": "c20000714_t0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e", "type": "BEP20", "address": "0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e", - "name": "Binance-Peg yearn.finance", + "name": "BNB pegged yearn.finance", "symbol": "YFI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/logo.png", "pairs": [] }, { "asset": "c20000714_t0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf", "type": "BEP20", "address": "0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf", - "name": "Binance-Peg Bitcoin Cash Token", + "name": "BNB pegged Bitcoin Cash Token", "symbol": "BCH", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/logo.png", "pairs": [] }, { @@ -582,7 +595,7 @@ "name": "Frontier Token", "symbol": "FRONT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x928e55daB735aa8260AF3cEDadA18B5f70C72f1b/logo.png", "pairs": [] }, { @@ -592,7 +605,7 @@ "name": "Helmet.insure Governance Token", "symbol": "Helmet", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x948d2a81086A075b3130BAc19e4c6DEe1D2E3fE8/logo.png", "pairs": [] }, { @@ -602,7 +615,7 @@ "name": "CryptEx Token", "symbol": "CRX", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x97a30C692eCe9C317235d48287d23d358170FC40/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x97a30C692eCe9C317235d48287d23d358170FC40/logo.png", "pairs": [] }, { @@ -612,7 +625,7 @@ "name": "AUTOv2", "symbol": "AUTO", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xa184088a740c695E156F91f5cC086a06bb78b827/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xa184088a740c695E156F91f5cC086a06bb78b827/logo.png", "pairs": [] }, { @@ -623,7 +636,7 @@ "name": "Alpha Finance", "symbol": "ALPHA", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xa1faa113cbE53436Df28FF0aEe54275c13B40975/logo.png", "pairs": [] }, { @@ -631,10 +644,10 @@ "asset": "c20000714_t0xa2B726B1145A4773F68593CF171187d8EBe4d495", "type": "BEP20", "address": "0xa2B726B1145A4773F68593CF171187d8EBe4d495", - "name": "Injective Protocol", + "name": "Injective", "symbol": "INJ", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/logo.png", "pairs": [] }, { @@ -645,17 +658,17 @@ "name": "CertiK Token", "symbol": "CTK", "decimals": 6, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xA8c2B8eec3d368C0253ad3dae65a5F2BBB89c929/logo.png", "pairs": [] }, { "asset": "c20000714_t0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18", "type": "BEP20", "address": "0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18", - "name": "Binance-Peg Band Protocol Token", + "name": "BNB pegged Band Protocol Token", "symbol": "BAND", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/logo.png", "pairs": [] }, { @@ -665,7 +678,7 @@ "name": "Litentry", "symbol": "LIT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xb59490aB09A0f526Cc7305822aC65f2Ab12f9723/logo.png", "pairs": [] }, { @@ -673,20 +686,20 @@ "asset": "c20000714_t0xBf5140A22578168FD562DCcF235E5D43A02ce9B1", "type": "BEP20", "address": "0xBf5140A22578168FD562DCcF235E5D43A02ce9B1", - "name": "Binance-Peg Uniswap", + "name": "BNB pegged Uniswap", "symbol": "UNI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/logo.png", "pairs": [] }, { "asset": "c20000714_t0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe", "type": "BEP20", "address": "0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe", - "name": "Binance-Peg Elrond", + "name": "BNB pegged Elrond", "symbol": "EGLD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/logo.png", "pairs": [] }, { @@ -696,7 +709,7 @@ "name": "Hedget", "symbol": "HGET", "decimals": 6, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xC7d8D35EBA58a0935ff2D5a33Df105DD9f071731/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xC7d8D35EBA58a0935ff2D5a33Df105DD9f071731/logo.png", "pairs": [] }, { @@ -706,7 +719,7 @@ "name": "PocketRocket", "symbol": "POCROC", "decimals": 9, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xC7FB8c5eFE8564205eE5CbA4dE8eeA8a086a4bd2/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xC7FB8c5eFE8564205eE5CbA4dE8eeA8a086a4bd2/logo.png", "pairs": [] }, { @@ -716,7 +729,7 @@ "name": "Bunny Token", "symbol": "BUNNY", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/logo.png", "pairs": [] }, { @@ -727,7 +740,7 @@ "name": "beefy.finance", "symbol": "BIFI", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/logo.png", "pairs": [] }, { @@ -737,7 +750,7 @@ "name": "Crow Token", "symbol": "CROW", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E/logo.png", "pairs": [] }, { @@ -748,7 +761,7 @@ "name": "Venus", "symbol": "XVS", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xcF6BB5389c92Bdda8a3747Ddb454cB7a64626C63/logo.png", "pairs": [] }, { @@ -758,7 +771,7 @@ "name": "SafePal Token", "symbol": "SFP", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xD41FDb03Ba84762dD66a0af1a6C8540FF1ba5dfb/logo.png", "pairs": [] }, { @@ -768,7 +781,7 @@ "name": "SWGb", "symbol": "SWGb", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xE40255C5d7fa7ceEc5120408C78C787CECB4cfdb/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xE40255C5d7fa7ceEc5120408C78C787CECB4cfdb/logo.png", "pairs": [] }, { @@ -776,10 +789,10 @@ "asset": "c20000714_t0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", "type": "BEP20", "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", - "name": "Binance-Peg BUSD", + "name": "BNB pegged BUSD", "symbol": "BUSD", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/logo.png", "pairs": [] }, { @@ -789,7 +802,7 @@ "name": "TeraBlock Token", "symbol": "TBC", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x9798dF2f5d213a872c787bD03b2b91F54D0D04A1/logo.png", "pairs": [] }, { @@ -799,7 +812,7 @@ "name": "Reef.finance", "symbol": "REEF", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e/logo.png", "pairs": [] }, { @@ -810,17 +823,17 @@ "name": "Hard Protocol", "symbol": "HARD", "decimals": 6, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xf79037F6f6bE66832DE4E7516be52826BC3cBcc4/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xf79037F6f6bE66832DE4E7516be52826BC3cBcc4/logo.png", "pairs": [] }, { "asset": "c20000714_t0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", "type": "BEP20", "address": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", - "name": "Binance-Peg ChainLink", + "name": "BNB pegged ChainLink", "symbol": "LINK", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/logo.png", "pairs": [] }, { @@ -830,7 +843,7 @@ "name": "Goose Golden Egg", "symbol": "EGG", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6/logo.png", "pairs": [] }, { @@ -840,7 +853,67 @@ "name": "AirNFT Token", "symbol": "AIRT", "decimals": 18, - "logoURI": "https://assets.trustwalletapp.com/blockchains/smartchain/assets/0x016CF83732f1468150D87dCC5BdF67730B3934D3/logo.png", + "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_t0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34", + "type": "BEP20", + "address": "0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34", + "name": "ZEDXION", + "symbol": "ZEDXION", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_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": [] } ], @@ -849,4 +922,4 @@ "minor": 0, "patch": 0 } -} \ No newline at end of file +} diff --git a/blockchains/solana/assets/12uHjozDVgyGWeLqQ8DMCRbig8amW5VmvZu3FdMMdcaG/info.json b/blockchains/solana/assets/12uHjozDVgyGWeLqQ8DMCRbig8amW5VmvZu3FdMMdcaG/info.json new file mode 100644 index 0000000000000..74747aef64d7a --- /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 0000000000000..e048ce9096f19 Binary files /dev/null and b/blockchains/solana/assets/12uHjozDVgyGWeLqQ8DMCRbig8amW5VmvZu3FdMMdcaG/logo.png differ diff --git a/blockchains/solana/assets/2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD/info.json b/blockchains/solana/assets/2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD/info.json new file mode 100644 index 0000000000000..6f36b57050bf4 --- /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 0000000000000..4ede2d46cc74d Binary files /dev/null and b/blockchains/solana/assets/2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD/logo.png differ diff --git a/blockchains/solana/assets/2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX/info.json b/blockchains/solana/assets/2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX/info.json new file mode 100644 index 0000000000000..39e5093e21061 --- /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 0000000000000..bb40954f41856 Binary files /dev/null and b/blockchains/solana/assets/2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX/logo.png differ diff --git a/blockchains/solana/assets/33fsBLA8djQm82RpHmE3SuVrPGtZBWNYExsEUeKX1HXX/info.json b/blockchains/solana/assets/33fsBLA8djQm82RpHmE3SuVrPGtZBWNYExsEUeKX1HXX/info.json new file mode 100644 index 0000000000000..afff53d0140f7 --- /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 0000000000000..ad5123c0ba9b6 Binary files /dev/null and b/blockchains/solana/assets/33fsBLA8djQm82RpHmE3SuVrPGtZBWNYExsEUeKX1HXX/logo.png differ diff --git a/blockchains/solana/assets/3CyiEDRehaGufzkpXJitCP5tvh7cNhRqd9rPBxZrgK5z/info.json b/blockchains/solana/assets/3CyiEDRehaGufzkpXJitCP5tvh7cNhRqd9rPBxZrgK5z/info.json new file mode 100644 index 0000000000000..a9fef4ba05afc --- /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 0000000000000..ddf3876587cc3 Binary files /dev/null and b/blockchains/solana/assets/3CyiEDRehaGufzkpXJitCP5tvh7cNhRqd9rPBxZrgK5z/logo.png differ diff --git a/blockchains/solana/assets/3EQ6LqLkiFcoxTeGEsHMFpSLWNVPe9yT7XPX2HYSFyxX/info.json b/blockchains/solana/assets/3EQ6LqLkiFcoxTeGEsHMFpSLWNVPe9yT7XPX2HYSFyxX/info.json new file mode 100644 index 0000000000000..ba040043bd7a8 --- /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 0000000000000..f53f464b18acc Binary files /dev/null and b/blockchains/solana/assets/3EQ6LqLkiFcoxTeGEsHMFpSLWNVPe9yT7XPX2HYSFyxX/logo.png differ diff --git a/blockchains/solana/assets/3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh/info.json b/blockchains/solana/assets/3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh/info.json new file mode 100644 index 0000000000000..554dbc2004241 --- /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 0000000000000..d603db0efae1f Binary files /dev/null and b/blockchains/solana/assets/3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh/logo.png differ diff --git a/blockchains/solana/assets/3UCMiSnkcnkPE1pgQ5ggPCBv6dXgVUy16TmMUe1WpG9x/info.json b/blockchains/solana/assets/3UCMiSnkcnkPE1pgQ5ggPCBv6dXgVUy16TmMUe1WpG9x/info.json new file mode 100644 index 0000000000000..e59712c47e42b --- /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 0000000000000..93a2674eac7e3 Binary files /dev/null and b/blockchains/solana/assets/3UCMiSnkcnkPE1pgQ5ggPCBv6dXgVUy16TmMUe1WpG9x/logo.png differ diff --git a/blockchains/solana/assets/3a2VW9t5N6p4baMW3M6yLH1UJ9imMt7VsyUk6ouXPVLq/info.json b/blockchains/solana/assets/3a2VW9t5N6p4baMW3M6yLH1UJ9imMt7VsyUk6ouXPVLq/info.json new file mode 100644 index 0000000000000..caaf156c7cdc6 --- /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 0000000000000..111db89289b74 Binary files /dev/null and b/blockchains/solana/assets/3a2VW9t5N6p4baMW3M6yLH1UJ9imMt7VsyUk6ouXPVLq/logo.png differ diff --git a/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/info.json b/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/info.json new file mode 100644 index 0000000000000..313f30165950d --- /dev/null +++ b/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/info.json @@ -0,0 +1,14 @@ +{ + "name": "Aave Token (Portal)", + "type": "SPL", + "symbol": "AAVE", + "decimals": 8, + "description": "Cross Chain Portal Bridged Token", + "website": "https://app.aave.com/?referral=93", + "explorer": "https://solscan.io/token/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg", + "status": "active", + "id": "3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg", + "tags": [ + "wrapped" + ] +} \ 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 0000000000000..3c530aaca6334 Binary files /dev/null and b/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/logo.png differ diff --git a/blockchains/solana/assets/43m2ewFV5nDepieFjT9EmAQnc1HRtAF247RBpLGFem5F/info.json b/blockchains/solana/assets/43m2ewFV5nDepieFjT9EmAQnc1HRtAF247RBpLGFem5F/info.json new file mode 100644 index 0000000000000..38e1f5f8a3a48 --- /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 0000000000000..88ba434269af7 Binary files /dev/null and b/blockchains/solana/assets/43m2ewFV5nDepieFjT9EmAQnc1HRtAF247RBpLGFem5F/logo.png differ diff --git a/blockchains/solana/assets/49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt/info.json b/blockchains/solana/assets/49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt/info.json new file mode 100644 index 0000000000000..d92c094787682 --- /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 0000000000000..b3b2a58d8b13b Binary files /dev/null and b/blockchains/solana/assets/49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt/logo.png differ diff --git a/blockchains/solana/assets/4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao/info.json b/blockchains/solana/assets/4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao/info.json new file mode 100644 index 0000000000000..3c0a428fe0563 --- /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 0000000000000..715ef20db8ea7 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 0000000000000..eedcec8791961 --- /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 0000000000000..6c0a11716f9ed Binary files /dev/null and b/blockchains/solana/assets/4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP/logo.png differ diff --git a/blockchains/solana/assets/4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU/info.json b/blockchains/solana/assets/4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU/info.json new file mode 100644 index 0000000000000..6c84acdca7c99 --- /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 0000000000000..c778c54757c32 Binary files /dev/null and b/blockchains/solana/assets/4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU/logo.png differ diff --git a/blockchains/solana/assets/4ThReWAbAVZjNVgs5Ui9Pk3cZ5TYaD9u6Y89fp6EFzoF/info.json b/blockchains/solana/assets/4ThReWAbAVZjNVgs5Ui9Pk3cZ5TYaD9u6Y89fp6EFzoF/info.json new file mode 100644 index 0000000000000..f1a24a5e2d2e1 --- /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 0000000000000..565e48e3326d7 Binary files /dev/null and b/blockchains/solana/assets/4ThReWAbAVZjNVgs5Ui9Pk3cZ5TYaD9u6Y89fp6EFzoF/logo.png differ diff --git a/blockchains/solana/assets/4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4/info.json b/blockchains/solana/assets/4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4/info.json new file mode 100644 index 0000000000000..0248c06bf7625 --- /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 0000000000000..b6a07c3b67c47 Binary files /dev/null and b/blockchains/solana/assets/4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4/logo.png differ diff --git a/blockchains/solana/assets/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/info.json b/blockchains/solana/assets/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/info.json new file mode 100644 index 0000000000000..336aa0b71ca9c --- /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 0000000000000..58b66f7e91e64 Binary files /dev/null and b/blockchains/solana/assets/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/logo.png differ diff --git a/blockchains/solana/assets/5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG/info.json b/blockchains/solana/assets/5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG/info.json new file mode 100644 index 0000000000000..4e31d062d581b --- /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 0000000000000..fb704aeadd3fc Binary files /dev/null and b/blockchains/solana/assets/5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG/logo.png differ diff --git a/blockchains/solana/assets/5Wc4U1ZoQRzF4tPdqKQzBwRSjYe8vEf3EvZMuXgtKUW6/info.json b/blockchains/solana/assets/5Wc4U1ZoQRzF4tPdqKQzBwRSjYe8vEf3EvZMuXgtKUW6/info.json new file mode 100644 index 0000000000000..4882bce5835bb --- /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 0000000000000..82083624f3424 Binary files /dev/null and b/blockchains/solana/assets/5Wc4U1ZoQRzF4tPdqKQzBwRSjYe8vEf3EvZMuXgtKUW6/logo.png differ diff --git a/blockchains/solana/assets/5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1/info.json b/blockchains/solana/assets/5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1/info.json new file mode 100644 index 0000000000000..5076d435000b6 --- /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 0000000000000..3555ddd31d42f Binary files /dev/null and b/blockchains/solana/assets/5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1/logo.png differ diff --git a/blockchains/solana/assets/5hcdG6NjQwiNhVa9bcyaaDsCyA1muPQ6WRzQwHfgeeKo/info.json b/blockchains/solana/assets/5hcdG6NjQwiNhVa9bcyaaDsCyA1muPQ6WRzQwHfgeeKo/info.json new file mode 100644 index 0000000000000..fd53f06b320cf --- /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 0000000000000..e6659582837ad Binary files /dev/null and b/blockchains/solana/assets/5hcdG6NjQwiNhVa9bcyaaDsCyA1muPQ6WRzQwHfgeeKo/logo.png differ diff --git a/blockchains/solana/assets/5njTmK53Ss5jkiHHZvzabVzZj6ztu6WYWpAPYgbVnbjs/info.json b/blockchains/solana/assets/5njTmK53Ss5jkiHHZvzabVzZj6ztu6WYWpAPYgbVnbjs/info.json new file mode 100644 index 0000000000000..d796e67eb5b39 --- /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 0000000000000..12637385c5712 Binary files /dev/null and b/blockchains/solana/assets/5njTmK53Ss5jkiHHZvzabVzZj6ztu6WYWpAPYgbVnbjs/logo.png differ diff --git a/blockchains/solana/assets/64L6o4G2H7Ln1vN7AHZsUMW4pbFciHyuwn4wUdSbcFxh/info.json b/blockchains/solana/assets/64L6o4G2H7Ln1vN7AHZsUMW4pbFciHyuwn4wUdSbcFxh/info.json new file mode 100644 index 0000000000000..9d0d55447eeb3 --- /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 0000000000000..e180b75b98914 Binary files /dev/null and b/blockchains/solana/assets/64L6o4G2H7Ln1vN7AHZsUMW4pbFciHyuwn4wUdSbcFxh/logo.png differ diff --git a/blockchains/solana/assets/6LX8BhMQ4Sy2otmAWj7Y5sKd9YTVVUgfMsBzT6B9W7ct/info.json b/blockchains/solana/assets/6LX8BhMQ4Sy2otmAWj7Y5sKd9YTVVUgfMsBzT6B9W7ct/info.json new file mode 100644 index 0000000000000..f71f1feef60ae --- /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 0000000000000..fe4a799cf6e4e Binary files /dev/null and b/blockchains/solana/assets/6LX8BhMQ4Sy2otmAWj7Y5sKd9YTVVUgfMsBzT6B9W7ct/logo.png differ diff --git a/blockchains/solana/assets/6Q5fvsJ6kgAFmisgDqqyaFd9FURYzHf8MCUbpAUaGZnE/info.json b/blockchains/solana/assets/6Q5fvsJ6kgAFmisgDqqyaFd9FURYzHf8MCUbpAUaGZnE/info.json new file mode 100644 index 0000000000000..7eb50f9698fc2 --- /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 0000000000000..9d43a7dd44203 Binary files /dev/null and b/blockchains/solana/assets/6Q5fvsJ6kgAFmisgDqqyaFd9FURYzHf8MCUbpAUaGZnE/logo.png differ diff --git a/blockchains/solana/assets/6nKUU36URHkewHg5GGGAgxs6szkE4VTioGUT5txQqJFU/info.json b/blockchains/solana/assets/6nKUU36URHkewHg5GGGAgxs6szkE4VTioGUT5txQqJFU/info.json new file mode 100644 index 0000000000000..6c87ded79cbf5 --- /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 0000000000000..b51db5134ddf6 Binary files /dev/null and b/blockchains/solana/assets/6nKUU36URHkewHg5GGGAgxs6szkE4VTioGUT5txQqJFU/logo.png differ diff --git a/blockchains/solana/assets/7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw/info.json b/blockchains/solana/assets/7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw/info.json new file mode 100644 index 0000000000000..4e204d5fb7160 --- /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 0000000000000..df5cef3677564 Binary files /dev/null and b/blockchains/solana/assets/7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw/logo.png differ diff --git a/blockchains/solana/assets/7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8/info.json b/blockchains/solana/assets/7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8/info.json new file mode 100644 index 0000000000000..4d48c4d58fa7b --- /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 0000000000000..917b1324bc7c5 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 0000000000000..618a58f43d802 --- /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 0000000000000..d9617dce079bd Binary files /dev/null and b/blockchains/solana/assets/7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi/logo.png differ diff --git a/blockchains/solana/assets/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs/info.json b/blockchains/solana/assets/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs/info.json new file mode 100644 index 0000000000000..4432a63cfbbb4 --- /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.fi/", + "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 0000000000000..ae4cd47b95661 Binary files /dev/null and b/blockchains/solana/assets/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs/logo.png differ diff --git a/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/info.json b/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/info.json new file mode 100644 index 0000000000000..822cc93149385 --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/logo.png b/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/logo.png new file mode 100644 index 0000000000000..925798e5a6319 Binary files /dev/null and b/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/logo.png differ diff --git a/blockchains/solana/assets/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs/info.json b/blockchains/solana/assets/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs/info.json new file mode 100644 index 0000000000000..a8c8a912b1177 --- /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 0000000000000..2d99a939536c4 Binary files /dev/null and b/blockchains/solana/assets/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs/logo.png differ diff --git a/blockchains/solana/assets/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU/info.json b/blockchains/solana/assets/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU/info.json new file mode 100644 index 0000000000000..89b3ab0005f3f --- /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": "twitter", + "url": "https://twitter.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 0000000000000..26ad2e6c81761 Binary files /dev/null and b/blockchains/solana/assets/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU/logo.png differ diff --git a/blockchains/solana/assets/8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36/info.json b/blockchains/solana/assets/8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36/info.json new file mode 100644 index 0000000000000..1fcf49102aa6f --- /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 0000000000000..66cd242149010 Binary files /dev/null and b/blockchains/solana/assets/8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36/logo.png differ diff --git a/blockchains/solana/assets/8UJbtpsEubDVkY53rk7d61hNYKkvouicczB2XmuwiG4g/info.json b/blockchains/solana/assets/8UJbtpsEubDVkY53rk7d61hNYKkvouicczB2XmuwiG4g/info.json new file mode 100644 index 0000000000000..6869951afd443 --- /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 0000000000000..8b6029ec44cf0 Binary files /dev/null and b/blockchains/solana/assets/8UJbtpsEubDVkY53rk7d61hNYKkvouicczB2XmuwiG4g/logo.png differ diff --git a/blockchains/solana/assets/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56/info.json b/blockchains/solana/assets/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56/info.json new file mode 100644 index 0000000000000..c521ceb474ada --- /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 0000000000000..9f614bf221a7a Binary files /dev/null and b/blockchains/solana/assets/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56/logo.png differ diff --git a/blockchains/solana/assets/8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN/info.json b/blockchains/solana/assets/8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN/info.json new file mode 100644 index 0000000000000..024f9197a1e88 --- /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 0000000000000..3268b4b190355 Binary files /dev/null and b/blockchains/solana/assets/8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN/logo.png differ diff --git a/blockchains/solana/assets/8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv/info.json b/blockchains/solana/assets/8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv/info.json new file mode 100644 index 0000000000000..1a2ebe0f7b44f --- /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 0000000000000..498219815a122 Binary files /dev/null and b/blockchains/solana/assets/8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv/logo.png differ diff --git a/blockchains/solana/assets/9ARQsBfAn65q522cEqSJuse3cLhA31jgWDBGQHeiq7Mg/info.json b/blockchains/solana/assets/9ARQsBfAn65q522cEqSJuse3cLhA31jgWDBGQHeiq7Mg/info.json new file mode 100644 index 0000000000000..a5e5548a813f6 --- /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 0000000000000..927484a81fa2b Binary files /dev/null and b/blockchains/solana/assets/9ARQsBfAn65q522cEqSJuse3cLhA31jgWDBGQHeiq7Mg/logo.png differ diff --git a/blockchains/solana/assets/9BsnSWDPfbusseZfnXyZ3un14CyPMZYvsKjWY3Y8Gbqn/info.json b/blockchains/solana/assets/9BsnSWDPfbusseZfnXyZ3un14CyPMZYvsKjWY3Y8Gbqn/info.json new file mode 100644 index 0000000000000..cb3968fa86583 --- /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 0000000000000..d78e4d3525407 Binary files /dev/null and b/blockchains/solana/assets/9BsnSWDPfbusseZfnXyZ3un14CyPMZYvsKjWY3Y8Gbqn/logo.png differ diff --git a/blockchains/solana/assets/9LzCMqDgTKYz9Drzqnpgee3SGa89up3a247ypMj2xrqM/info.json b/blockchains/solana/assets/9LzCMqDgTKYz9Drzqnpgee3SGa89up3a247ypMj2xrqM/info.json new file mode 100644 index 0000000000000..0f6857396d4dd --- /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 0000000000000..c06d51fcc9aa4 Binary files /dev/null and b/blockchains/solana/assets/9LzCMqDgTKYz9Drzqnpgee3SGa89up3a247ypMj2xrqM/logo.png differ diff --git a/blockchains/solana/assets/9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa/info.json b/blockchains/solana/assets/9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa/info.json new file mode 100644 index 0000000000000..7431625d51f0d --- /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 0000000000000..24a702d4390f2 Binary files /dev/null and b/blockchains/solana/assets/9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa/logo.png differ diff --git a/blockchains/solana/assets/9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i/info.json b/blockchains/solana/assets/9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i/info.json new file mode 100644 index 0000000000000..e6de2ce0aa335 --- /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 0000000000000..e3110cce3bde2 Binary files /dev/null and b/blockchains/solana/assets/9vMJfxuKxXBoEa7rM12mYLMwTacLMLDJqHozw96WQL8i/logo.png differ diff --git a/blockchains/solana/assets/A9ik2NrpKRRG2snyTjofZQcTuav9yH3mNVHLsLiDQmYt/info.json b/blockchains/solana/assets/A9ik2NrpKRRG2snyTjofZQcTuav9yH3mNVHLsLiDQmYt/info.json new file mode 100644 index 0000000000000..51ed5c98ad4e9 --- /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 0000000000000..8fd5f9c8fb3b1 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 0000000000000..09f0b44c0414a --- /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 0000000000000..ed00e43fcfe9b 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 0000000000000..8e777ae6282d0 --- /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 0000000000000..6c32b31be5f80 Binary files /dev/null and b/blockchains/solana/assets/ABAq2R9gSpDDGguQxBk4u13s4ZYW6zbwKVBx15mCMG8/logo.png differ diff --git a/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/info.json b/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/info.json new file mode 100644 index 0000000000000..d7b343d64f063 --- /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": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/logo.png b/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/logo.png new file mode 100644 index 0000000000000..e914d5088ee73 Binary files /dev/null and b/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/logo.png differ diff --git a/blockchains/solana/assets/AGqKX7F4mqJ8x2mUQVangJb5pWQJApaKoUfe5gXM53CV/info.json b/blockchains/solana/assets/AGqKX7F4mqJ8x2mUQVangJb5pWQJApaKoUfe5gXM53CV/info.json new file mode 100644 index 0000000000000..733098510a986 --- /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 0000000000000..f448cdfef620e Binary files /dev/null and b/blockchains/solana/assets/AGqKX7F4mqJ8x2mUQVangJb5pWQJApaKoUfe5gXM53CV/logo.png differ diff --git a/blockchains/solana/assets/ASk8bss7PoxfFVJfXnSJepj9KupTX15QaRnhdjs6DdYe/info.json b/blockchains/solana/assets/ASk8bss7PoxfFVJfXnSJepj9KupTX15QaRnhdjs6DdYe/info.json new file mode 100644 index 0000000000000..dc2e6a43c0e0e --- /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 0000000000000..cf38fdc042df1 Binary files /dev/null and b/blockchains/solana/assets/ASk8bss7PoxfFVJfXnSJepj9KupTX15QaRnhdjs6DdYe/logo.png differ diff --git a/blockchains/solana/assets/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC/info.json b/blockchains/solana/assets/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC/info.json new file mode 100644 index 0000000000000..0b8449189ec05 --- /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 0000000000000..a13b4c569ffcf Binary files /dev/null and b/blockchains/solana/assets/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC/logo.png differ diff --git a/blockchains/solana/assets/Aqs5ydqKXEK2cjotDXxHmk8N9PknqQ5q4ZED4ymY1eeh/info.json b/blockchains/solana/assets/Aqs5ydqKXEK2cjotDXxHmk8N9PknqQ5q4ZED4ymY1eeh/info.json new file mode 100644 index 0000000000000..6a82c0b3a28e7 --- /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 0000000000000..0326408b95ab9 Binary files /dev/null and b/blockchains/solana/assets/Aqs5ydqKXEK2cjotDXxHmk8N9PknqQ5q4ZED4ymY1eeh/logo.png differ diff --git a/blockchains/solana/assets/AuGz22orMknxQHTVGwAu7e3dJikTJKgcjFwMNDikEKmF/info.json b/blockchains/solana/assets/AuGz22orMknxQHTVGwAu7e3dJikTJKgcjFwMNDikEKmF/info.json new file mode 100644 index 0000000000000..4381bc75c3749 --- /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 0000000000000..25e802cdb09cf Binary files /dev/null and b/blockchains/solana/assets/AuGz22orMknxQHTVGwAu7e3dJikTJKgcjFwMNDikEKmF/logo.png differ diff --git a/blockchains/solana/assets/AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom/info.json b/blockchains/solana/assets/AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom/info.json new file mode 100644 index 0000000000000..c94fe8f165607 --- /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 0000000000000..0360ee6e83846 Binary files /dev/null and b/blockchains/solana/assets/AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom/logo.png differ diff --git a/blockchains/solana/assets/B2wfeYz5VtBnQVrX4M8F6FeDrprVrzKPws5qg1in8bzR/info.json b/blockchains/solana/assets/B2wfeYz5VtBnQVrX4M8F6FeDrprVrzKPws5qg1in8bzR/info.json new file mode 100644 index 0000000000000..325cbfa202477 --- /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 0000000000000..9e63d73503a5d Binary files /dev/null and b/blockchains/solana/assets/B2wfeYz5VtBnQVrX4M8F6FeDrprVrzKPws5qg1in8bzR/logo.png differ diff --git a/blockchains/solana/assets/BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U/info.json b/blockchains/solana/assets/BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U/info.json new file mode 100644 index 0000000000000..f8e586c0a6a04 --- /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 0000000000000..bf1b5d855c3d2 Binary files /dev/null and b/blockchains/solana/assets/BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U/logo.png differ diff --git a/blockchains/solana/assets/BLvmrccP4g1B6SpiVvmQrLUDya1nZ4B2D1nm9jzKF7sz/info.json b/blockchains/solana/assets/BLvmrccP4g1B6SpiVvmQrLUDya1nZ4B2D1nm9jzKF7sz/info.json new file mode 100644 index 0000000000000..2d68ffef89dc9 --- /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 0000000000000..2ac49ed32119a Binary files /dev/null and b/blockchains/solana/assets/BLvmrccP4g1B6SpiVvmQrLUDya1nZ4B2D1nm9jzKF7sz/logo.png differ diff --git a/blockchains/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/info.json b/blockchains/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/info.json new file mode 100644 index 0000000000000..9e54920d13762 --- /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 0000000000000..86698aee22ade Binary files /dev/null and b/blockchains/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/logo.png differ diff --git a/blockchains/solana/assets/Bzq68gAVedKqQkQbsM28yQ4LYpc2VComDUD9wJBywdTi/info.json b/blockchains/solana/assets/Bzq68gAVedKqQkQbsM28yQ4LYpc2VComDUD9wJBywdTi/info.json new file mode 100644 index 0000000000000..1ae96fe698468 --- /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 0000000000000..21ab65ad01b1d Binary files /dev/null and b/blockchains/solana/assets/Bzq68gAVedKqQkQbsM28yQ4LYpc2VComDUD9wJBywdTi/logo.png differ diff --git a/blockchains/solana/assets/C6oFsE8nXRDThzrMEQ5SxaNFGKoyyfWDDVPw37JKvPTe/info.json b/blockchains/solana/assets/C6oFsE8nXRDThzrMEQ5SxaNFGKoyyfWDDVPw37JKvPTe/info.json new file mode 100644 index 0000000000000..c5be298762909 --- /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 0000000000000..c7e1e770bd363 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 0000000000000..95464524e336f --- /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 0000000000000..77ae2564d1308 Binary files /dev/null and b/blockchains/solana/assets/C7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h/logo.png differ diff --git a/blockchains/solana/assets/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks/info.json b/blockchains/solana/assets/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks/info.json new file mode 100644 index 0000000000000..bad799c7bd5af --- /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": "twitter", + "url": "https://twitter.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 0000000000000..11b65fe83918c Binary files /dev/null and b/blockchains/solana/assets/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks/logo.png differ diff --git a/blockchains/solana/assets/CLQsDGoGibdNPnVCFp8BAsN2unvyvb41Jd5USYwAnzAg/info.json b/blockchains/solana/assets/CLQsDGoGibdNPnVCFp8BAsN2unvyvb41Jd5USYwAnzAg/info.json new file mode 100644 index 0000000000000..089cd96239e3a --- /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 0000000000000..78e1e3af3b77c Binary files /dev/null and b/blockchains/solana/assets/CLQsDGoGibdNPnVCFp8BAsN2unvyvb41Jd5USYwAnzAg/logo.png differ diff --git a/blockchains/solana/assets/CaGa7pddFXS65Gznqwp42kBhkJQdceoFVT7AQYo8Jr8Q/info.json b/blockchains/solana/assets/CaGa7pddFXS65Gznqwp42kBhkJQdceoFVT7AQYo8Jr8Q/info.json new file mode 100644 index 0000000000000..ced547cf43d6e --- /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 0000000000000..1911b24c6b0a7 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 0000000000000..e3b6a8aeb3a9e --- /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 0000000000000..6fa264039f9dd Binary files /dev/null and b/blockchains/solana/assets/CbNYA9n3927uXUukee2Hf4tm3xxkffJPPZvGazc2EAH1/logo.png differ diff --git a/blockchains/solana/assets/ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj/info.json b/blockchains/solana/assets/ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj/info.json new file mode 100644 index 0000000000000..f54be0567ad3c --- /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 0000000000000..1057abafc2a9b Binary files /dev/null and b/blockchains/solana/assets/ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj/logo.png differ diff --git a/blockchains/solana/assets/CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z/info.json b/blockchains/solana/assets/CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z/info.json new file mode 100644 index 0000000000000..9301b2c8581b6 --- /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 0000000000000..5f4a1d03d126c Binary files /dev/null and b/blockchains/solana/assets/CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z/logo.png differ diff --git a/blockchains/solana/assets/CobcsUrt3p91FwvULYKorQejgsm5HoQdv5T8RUZ6PnLA/info.json b/blockchains/solana/assets/CobcsUrt3p91FwvULYKorQejgsm5HoQdv5T8RUZ6PnLA/info.json new file mode 100644 index 0000000000000..ac7463cab7a53 --- /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 0000000000000..28c3327bc1d30 Binary files /dev/null and b/blockchains/solana/assets/CobcsUrt3p91FwvULYKorQejgsm5HoQdv5T8RUZ6PnLA/logo.png differ diff --git a/blockchains/solana/assets/CriXdFS9iRAYbGEQiTcUqbWwG9RBmYt5B6LwTnoJ61Sm/info.json b/blockchains/solana/assets/CriXdFS9iRAYbGEQiTcUqbWwG9RBmYt5B6LwTnoJ61Sm/info.json new file mode 100644 index 0000000000000..7995302733136 --- /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 0000000000000..6665b92f26b1e Binary files /dev/null and b/blockchains/solana/assets/CriXdFS9iRAYbGEQiTcUqbWwG9RBmYt5B6LwTnoJ61Sm/logo.png differ diff --git a/blockchains/solana/assets/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K/info.json b/blockchains/solana/assets/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K/info.json new file mode 100644 index 0000000000000..849d66922acc9 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..dd5c56ded3a10 Binary files /dev/null and b/blockchains/solana/assets/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K/logo.png differ diff --git a/blockchains/solana/assets/D559HwgjYGDYsXpmFUKxhFTEwutvS9sya1kXiyCVogCV/info.json b/blockchains/solana/assets/D559HwgjYGDYsXpmFUKxhFTEwutvS9sya1kXiyCVogCV/info.json new file mode 100644 index 0000000000000..32f59f91c4140 --- /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 0000000000000..7c381270386a8 Binary files /dev/null and b/blockchains/solana/assets/D559HwgjYGDYsXpmFUKxhFTEwutvS9sya1kXiyCVogCV/logo.png differ diff --git a/blockchains/solana/assets/DPgNKZJAG2w1S6vfYHDBT62R4qrWWH5f45CnxtbQduZE/info.json b/blockchains/solana/assets/DPgNKZJAG2w1S6vfYHDBT62R4qrWWH5f45CnxtbQduZE/info.json new file mode 100644 index 0000000000000..7dd6ed5f16f3d --- /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 0000000000000..d97dfb3f2a1f5 Binary files /dev/null and b/blockchains/solana/assets/DPgNKZJAG2w1S6vfYHDBT62R4qrWWH5f45CnxtbQduZE/logo.png differ diff --git a/blockchains/solana/assets/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/info.json b/blockchains/solana/assets/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/info.json new file mode 100644 index 0000000000000..70cc562f242ad --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d56041397f1e3 Binary files /dev/null and b/blockchains/solana/assets/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/logo.png differ diff --git a/blockchains/solana/assets/DiJut4U3CU8b3bRgwfyqtJMJ4wjzJHaX6hudamjH46Km/info.json b/blockchains/solana/assets/DiJut4U3CU8b3bRgwfyqtJMJ4wjzJHaX6hudamjH46Km/info.json new file mode 100644 index 0000000000000..36a234f9c8629 --- /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 0000000000000..98e407eb1b226 Binary files /dev/null and b/blockchains/solana/assets/DiJut4U3CU8b3bRgwfyqtJMJ4wjzJHaX6hudamjH46Km/logo.png differ diff --git a/blockchains/solana/assets/DkbE8U4gSRuGHcVMA1LwyZPYUjYbfEbjW8DMR3iSXBzr/info.json b/blockchains/solana/assets/DkbE8U4gSRuGHcVMA1LwyZPYUjYbfEbjW8DMR3iSXBzr/info.json new file mode 100644 index 0000000000000..1720f4a0a18a1 --- /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 0000000000000..5dd53038c3d1c Binary files /dev/null and b/blockchains/solana/assets/DkbE8U4gSRuGHcVMA1LwyZPYUjYbfEbjW8DMR3iSXBzr/logo.png differ diff --git a/blockchains/solana/assets/Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1/info.json b/blockchains/solana/assets/Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1/info.json new file mode 100644 index 0000000000000..f67ace0c484d3 --- /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 0000000000000..46b9968e18279 Binary files /dev/null and b/blockchains/solana/assets/Dn4noZ5jgGfkntzcQSUZ8czkreiZ1ForXYoV2H8Dm7S1/logo.png differ diff --git a/blockchains/solana/assets/DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA/info.json b/blockchains/solana/assets/DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA/info.json new file mode 100644 index 0000000000000..70112742279e2 --- /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 0000000000000..ae6f856aed4eb Binary files /dev/null and b/blockchains/solana/assets/DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA/logo.png differ diff --git a/blockchains/solana/assets/E2VmbootbVCBkMNNxKQgCLMS1X3NoGMaYAsufaAsf7M/info.json b/blockchains/solana/assets/E2VmbootbVCBkMNNxKQgCLMS1X3NoGMaYAsufaAsf7M/info.json new file mode 100644 index 0000000000000..ad8547c00f502 --- /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 0000000000000..4e3f74d233943 Binary files /dev/null and b/blockchains/solana/assets/E2VmbootbVCBkMNNxKQgCLMS1X3NoGMaYAsufaAsf7M/logo.png differ diff --git a/blockchains/solana/assets/E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy/info.json b/blockchains/solana/assets/E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy/info.json new file mode 100644 index 0000000000000..851b7f6b784b8 --- /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 0000000000000..6a4f498ca1b25 Binary files /dev/null and b/blockchains/solana/assets/E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy/logo.png differ diff --git a/blockchains/solana/assets/EDVVEYW4fPJ6vKw5LZXRGUSPzxoHrv6eWvTqhCr8oShs/info.json b/blockchains/solana/assets/EDVVEYW4fPJ6vKw5LZXRGUSPzxoHrv6eWvTqhCr8oShs/info.json new file mode 100644 index 0000000000000..ca359b0c73896 --- /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 0000000000000..3eb53daf92fd9 Binary files /dev/null and b/blockchains/solana/assets/EDVVEYW4fPJ6vKw5LZXRGUSPzxoHrv6eWvTqhCr8oShs/logo.png differ diff --git a/blockchains/solana/assets/EHKQvJGu48ydKA4d3RivrkNyTJTkSdoS32UafxSX1yak/info.json b/blockchains/solana/assets/EHKQvJGu48ydKA4d3RivrkNyTJTkSdoS32UafxSX1yak/info.json new file mode 100644 index 0000000000000..b1362c8052ba8 --- /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 0000000000000..c1bf2227af016 Binary files /dev/null and b/blockchains/solana/assets/EHKQvJGu48ydKA4d3RivrkNyTJTkSdoS32UafxSX1yak/logo.png differ diff --git a/blockchains/solana/assets/EPeUFDgHRxs9xxEPVaL6kfGQvCon7jmAWKVUHuux1Tpz/info.json b/blockchains/solana/assets/EPeUFDgHRxs9xxEPVaL6kfGQvCon7jmAWKVUHuux1Tpz/info.json new file mode 100644 index 0000000000000..7d3f082840539 --- /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 0000000000000..331a781cc5264 Binary files /dev/null and b/blockchains/solana/assets/EPeUFDgHRxs9xxEPVaL6kfGQvCon7jmAWKVUHuux1Tpz/logo.png differ diff --git a/blockchains/solana/assets/EXExWvT6VyYxEjFzF5BrUxt5GZMPVZnd48y3iWrRefMq/info.json b/blockchains/solana/assets/EXExWvT6VyYxEjFzF5BrUxt5GZMPVZnd48y3iWrRefMq/info.json new file mode 100644 index 0000000000000..d958e48d43e71 --- /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 0000000000000..38c455c548eb9 Binary files /dev/null and b/blockchains/solana/assets/EXExWvT6VyYxEjFzF5BrUxt5GZMPVZnd48y3iWrRefMq/logo.png differ diff --git a/blockchains/solana/assets/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az/info.json b/blockchains/solana/assets/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az/info.json new file mode 100644 index 0000000000000..a682d577eece1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..b2165b22a4f7f Binary files /dev/null and b/blockchains/solana/assets/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az/logo.png differ diff --git a/blockchains/solana/assets/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/info.json b/blockchains/solana/assets/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/info.json new file mode 100644 index 0000000000000..d882512756557 --- /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 0000000000000..6c711d8a55837 Binary files /dev/null and b/blockchains/solana/assets/EjmyN6qEC1Tf1JxiG1ae7UTJhUxSwk1TCWNWqxWV4J6o/logo.png differ diff --git a/blockchains/solana/assets/EzZp7LRN1xwu3QsB2RJRrWwEGjJGsuWzuMCeQDB3NSPK/info.json b/blockchains/solana/assets/EzZp7LRN1xwu3QsB2RJRrWwEGjJGsuWzuMCeQDB3NSPK/info.json new file mode 100644 index 0000000000000..08f86e3542cdf --- /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 0000000000000..6668dff3a270f 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 0000000000000..4907299c3da41 --- /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 0000000000000..a31cef5e53375 Binary files /dev/null and b/blockchains/solana/assets/EzfgjvkSwthhgHaceR3LnKXUoRkP6NUhfghdaHAj1tUv/logo.png differ diff --git a/blockchains/solana/assets/F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W/info.json b/blockchains/solana/assets/F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W/info.json new file mode 100644 index 0000000000000..1886ff27f311a --- /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 0000000000000..2a885151a2b72 Binary files /dev/null and b/blockchains/solana/assets/F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W/logo.png differ diff --git a/blockchains/solana/assets/FCqfQSujuPxy6V42UvafBhsysWtEq1vhjfMN1PUbgaxA/info.json b/blockchains/solana/assets/FCqfQSujuPxy6V42UvafBhsysWtEq1vhjfMN1PUbgaxA/info.json new file mode 100644 index 0000000000000..36d182c6f093b --- /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 0000000000000..8ec55937f4dba Binary files /dev/null and b/blockchains/solana/assets/FCqfQSujuPxy6V42UvafBhsysWtEq1vhjfMN1PUbgaxA/logo.png differ diff --git a/blockchains/solana/assets/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe/info.json b/blockchains/solana/assets/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe/info.json new file mode 100644 index 0000000000000..c15574850090c --- /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": "twitter", + "url": "https://twitter.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 0000000000000..fd3dc61c2138f Binary files /dev/null and b/blockchains/solana/assets/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe/logo.png differ diff --git a/blockchains/solana/assets/FR87nWEUxVgerFGhZM8Y4AggKGLnaXswr1Pd8wZ4kZcp/info.json b/blockchains/solana/assets/FR87nWEUxVgerFGhZM8Y4AggKGLnaXswr1Pd8wZ4kZcp/info.json new file mode 100644 index 0000000000000..f2ee3be745c2a --- /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 0000000000000..0e393dd35e768 Binary files /dev/null and b/blockchains/solana/assets/FR87nWEUxVgerFGhZM8Y4AggKGLnaXswr1Pd8wZ4kZcp/logo.png differ diff --git a/blockchains/solana/assets/FTtXEUosNn6EKG2SQtfbGuYB4rBttreQQcoWn1YDsuTq/info.json b/blockchains/solana/assets/FTtXEUosNn6EKG2SQtfbGuYB4rBttreQQcoWn1YDsuTq/info.json new file mode 100644 index 0000000000000..4b8fae5b4f27f --- /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 0000000000000..2f7a8202dceb0 Binary files /dev/null and b/blockchains/solana/assets/FTtXEUosNn6EKG2SQtfbGuYB4rBttreQQcoWn1YDsuTq/logo.png differ diff --git a/blockchains/solana/assets/FUGsN8H74WjRBBMfQWcf9Kk32gebA9VnNaGxqwcVvUW7/info.json b/blockchains/solana/assets/FUGsN8H74WjRBBMfQWcf9Kk32gebA9VnNaGxqwcVvUW7/info.json new file mode 100644 index 0000000000000..f4c30f1a091d1 --- /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 0000000000000..0378951680fac Binary files /dev/null and b/blockchains/solana/assets/FUGsN8H74WjRBBMfQWcf9Kk32gebA9VnNaGxqwcVvUW7/logo.png differ diff --git a/blockchains/solana/assets/GJa1VeEYLTRoHbaeqcxfzHmjGCGtZGF3CUqxv9znZZAY/info.json b/blockchains/solana/assets/GJa1VeEYLTRoHbaeqcxfzHmjGCGtZGF3CUqxv9znZZAY/info.json new file mode 100644 index 0000000000000..65770c5aa3231 --- /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 0000000000000..252e63d7de36a Binary files /dev/null and b/blockchains/solana/assets/GJa1VeEYLTRoHbaeqcxfzHmjGCGtZGF3CUqxv9znZZAY/logo.png differ diff --git a/blockchains/solana/assets/GWdkYFnXnSJAsCBvmsqFLiPPe2tpvXynZcJdxf11Fu3U/info.json b/blockchains/solana/assets/GWdkYFnXnSJAsCBvmsqFLiPPe2tpvXynZcJdxf11Fu3U/info.json new file mode 100644 index 0000000000000..d31208bdb7e05 --- /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 0000000000000..75379631047c7 Binary files /dev/null and b/blockchains/solana/assets/GWdkYFnXnSJAsCBvmsqFLiPPe2tpvXynZcJdxf11Fu3U/logo.png differ diff --git a/blockchains/solana/assets/Gq2norJ1kBemBp3mPfkgAUMhMMmnFmY4zEyi26tRcxFB/info.json b/blockchains/solana/assets/Gq2norJ1kBemBp3mPfkgAUMhMMmnFmY4zEyi26tRcxFB/info.json new file mode 100644 index 0000000000000..294df161c8ede --- /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 0000000000000..2ccabc8ec5bab Binary files /dev/null and b/blockchains/solana/assets/Gq2norJ1kBemBp3mPfkgAUMhMMmnFmY4zEyi26tRcxFB/logo.png differ diff --git a/blockchains/solana/assets/Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG/info.json b/blockchains/solana/assets/Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG/info.json new file mode 100644 index 0000000000000..d48eef3d0c5db --- /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 0000000000000..60c97897b870c Binary files /dev/null and b/blockchains/solana/assets/Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG/logo.png differ diff --git a/blockchains/solana/assets/H2mf9QNdU2Niq6QR7367Ua2trBsvscLyX5bz7R3Pw5sE/info.json b/blockchains/solana/assets/H2mf9QNdU2Niq6QR7367Ua2trBsvscLyX5bz7R3Pw5sE/info.json new file mode 100644 index 0000000000000..7c296ee4e3c25 --- /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 0000000000000..423a3c7117cf7 Binary files /dev/null and b/blockchains/solana/assets/H2mf9QNdU2Niq6QR7367Ua2trBsvscLyX5bz7R3Pw5sE/logo.png differ diff --git a/blockchains/solana/assets/HCTVFTzHL21a1dPzKxAUeWwqbE8QMUyvgChFDL4XYoi1/info.json b/blockchains/solana/assets/HCTVFTzHL21a1dPzKxAUeWwqbE8QMUyvgChFDL4XYoi1/info.json new file mode 100644 index 0000000000000..3b5e9a682668a --- /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 0000000000000..86e6a1342f652 Binary files /dev/null and b/blockchains/solana/assets/HCTVFTzHL21a1dPzKxAUeWwqbE8QMUyvgChFDL4XYoi1/logo.png differ diff --git a/blockchains/solana/assets/HGsLG4PnZ28L8A4R5nPqKgZd86zUUdmfnkTRnuFJ5dAX/info.json b/blockchains/solana/assets/HGsLG4PnZ28L8A4R5nPqKgZd86zUUdmfnkTRnuFJ5dAX/info.json new file mode 100644 index 0000000000000..e9dbc35733e3a --- /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 0000000000000..a18c32255cd22 Binary files /dev/null and b/blockchains/solana/assets/HGsLG4PnZ28L8A4R5nPqKgZd86zUUdmfnkTRnuFJ5dAX/logo.png differ diff --git a/blockchains/solana/assets/HRQke5DKdDo3jV7wnomyiM8AA3EzkVnxMDdo2FQ5XUe1/info.json b/blockchains/solana/assets/HRQke5DKdDo3jV7wnomyiM8AA3EzkVnxMDdo2FQ5XUe1/info.json new file mode 100644 index 0000000000000..b5d438fa2386f --- /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 0000000000000..87719f12932c8 Binary files /dev/null and b/blockchains/solana/assets/HRQke5DKdDo3jV7wnomyiM8AA3EzkVnxMDdo2FQ5XUe1/logo.png differ diff --git a/blockchains/solana/assets/HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx/info.json b/blockchains/solana/assets/HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx/info.json new file mode 100644 index 0000000000000..1c3430acdf5b3 --- /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 0000000000000..e8abef5e4ca5b Binary files /dev/null and b/blockchains/solana/assets/HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx/logo.png differ diff --git a/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png b/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png index 8e97855518bfd..276a83baae8dd 100644 Binary files a/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png and b/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png differ diff --git a/blockchains/solana/assets/HZRCwxP2Vq9PCpPXooayhJ2bxTpo5xfpQrwB1svh332p/info.json b/blockchains/solana/assets/HZRCwxP2Vq9PCpPXooayhJ2bxTpo5xfpQrwB1svh332p/info.json new file mode 100644 index 0000000000000..46a73a2355f96 --- /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 0000000000000..cc8b90ca87f4d Binary files /dev/null and b/blockchains/solana/assets/HZRCwxP2Vq9PCpPXooayhJ2bxTpo5xfpQrwB1svh332p/logo.png differ diff --git a/blockchains/solana/assets/HihxL2iM6L6P1oqoSeiixdJ3PhPYNxvSKH9A2dDqLVDH/info.json b/blockchains/solana/assets/HihxL2iM6L6P1oqoSeiixdJ3PhPYNxvSKH9A2dDqLVDH/info.json new file mode 100644 index 0000000000000..99c4a6e283590 --- /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 0000000000000..ba77bd30271dc Binary files /dev/null and b/blockchains/solana/assets/HihxL2iM6L6P1oqoSeiixdJ3PhPYNxvSKH9A2dDqLVDH/logo.png differ diff --git a/blockchains/solana/assets/HxhWkVpk5NS4Ltg5nij2G671CKXFRKPK8vy271Ub4uEK/info.json b/blockchains/solana/assets/HxhWkVpk5NS4Ltg5nij2G671CKXFRKPK8vy271Ub4uEK/info.json new file mode 100644 index 0000000000000..33b552611a652 --- /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 0000000000000..ea6f9700fc230 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 0000000000000..5da8c959909bc --- /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 0000000000000..d9761d4e602ef Binary files /dev/null and b/blockchains/solana/assets/HysWcbHiYY9888pHbaqhwLYZQeZrcQMXKQWRqS7zcPK5/logo.png differ diff --git a/blockchains/solana/assets/J8LKx7pr9Zxh9nMhhT7X3EBmj5RzuhFrHKyJAe2F2i9S/info.json b/blockchains/solana/assets/J8LKx7pr9Zxh9nMhhT7X3EBmj5RzuhFrHKyJAe2F2i9S/info.json new file mode 100644 index 0000000000000..187657b533c85 --- /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 0000000000000..cb6457e6b173d Binary files /dev/null and b/blockchains/solana/assets/J8LKx7pr9Zxh9nMhhT7X3EBmj5RzuhFrHKyJAe2F2i9S/logo.png differ diff --git a/blockchains/solana/assets/KgV1GvrHQmRBY8sHQQeUKwTm2r2h8t4C8qt12Cw1HVE/info.json b/blockchains/solana/assets/KgV1GvrHQmRBY8sHQQeUKwTm2r2h8t4C8qt12Cw1HVE/info.json new file mode 100644 index 0000000000000..599b64aca7d09 --- /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 0000000000000..5cfbd9abb2f7c Binary files /dev/null and b/blockchains/solana/assets/KgV1GvrHQmRBY8sHQQeUKwTm2r2h8t4C8qt12Cw1HVE/logo.png differ diff --git a/blockchains/solana/assets/S3SQfD6RheMXQ3EEYn1Z5sJsbtwfXdt7tSAVXPQFtYo/info.json b/blockchains/solana/assets/S3SQfD6RheMXQ3EEYn1Z5sJsbtwfXdt7tSAVXPQFtYo/info.json new file mode 100644 index 0000000000000..afc28199c3abe --- /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 0000000000000..32179bc3c3aad Binary files /dev/null and b/blockchains/solana/assets/S3SQfD6RheMXQ3EEYn1Z5sJsbtwfXdt7tSAVXPQFtYo/logo.png differ diff --git a/blockchains/solana/assets/Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1/info.json b/blockchains/solana/assets/Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1/info.json new file mode 100644 index 0000000000000..6e6be6e1476c1 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..5068657ed4d9c Binary files /dev/null and b/blockchains/solana/assets/Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1/logo.png differ diff --git a/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/info.json b/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/info.json index 62653189aba20..4aa16dfdb838c 100644 --- a/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/info.json +++ b/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/info.json @@ -3,9 +3,31 @@ "symbol": "KIN", "type": "SPL", "decimals": 5, - "description": "Kin is money for the digital world. It is used to generate value through a shared, decentralized cryptocurrency in a digital ecosystem of apps and their users.", - "website": "https://kin.org/", + "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" -} \ No newline at end of file + "id": "kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6", + "links": [ + { + "name": "blog", + "url": "https://kin.org/news" + }, + { + "name": "twitter", + "url": "https://twitter.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" + } + ] +} diff --git a/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/logo.png b/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/logo.png index 7d2983f49f17a..7a8a6eab1deeb 100644 Binary files a/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/logo.png and b/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/logo.png differ diff --git a/blockchains/solana/assets/nRtfwU9G82CSHhHGJNxFhtn7FLvWP2rqvQvje1WtL69/info.json b/blockchains/solana/assets/nRtfwU9G82CSHhHGJNxFhtn7FLvWP2rqvQvje1WtL69/info.json new file mode 100644 index 0000000000000..bd315f347768e --- /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 0000000000000..2cad0a2f225ea Binary files /dev/null and b/blockchains/solana/assets/nRtfwU9G82CSHhHGJNxFhtn7FLvWP2rqvQvje1WtL69/logo.png differ diff --git a/blockchains/solana/assets/xnorPhAzWXUczCP3KjU5yDxmKKZi5cSbxytQ1LgE3kG/info.json b/blockchains/solana/assets/xnorPhAzWXUczCP3KjU5yDxmKKZi5cSbxytQ1LgE3kG/info.json new file mode 100644 index 0000000000000..0ba223a281695 --- /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 0000000000000..5657a6ff93b8a Binary files /dev/null and b/blockchains/solana/assets/xnorPhAzWXUczCP3KjU5yDxmKKZi5cSbxytQ1LgE3kG/logo.png differ diff --git a/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/info.json b/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/info.json new file mode 100644 index 0000000000000..bedce8f8cce51 --- /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": "active", + "id": "zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/logo.png b/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/logo.png new file mode 100644 index 0000000000000..2a6c1f2c39e96 Binary files /dev/null and b/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/logo.png differ diff --git a/blockchains/solana/info/info.json b/blockchains/solana/info/info.json index 7de24d6bea9f4..7a7ebbef00ac9 100644 --- a/blockchains/solana/info/info.json +++ b/blockchains/solana/info/info.json @@ -8,6 +8,9 @@ "type": "coin", "decimals": 9, "status": "active", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", diff --git a/blockchains/solana/validators/assets/1234LB7uvDC23rdCQoK8C3jNwnovUNyeKxz8wC3dghJ5/logo.png b/blockchains/solana/validators/assets/1234LB7uvDC23rdCQoK8C3jNwnovUNyeKxz8wC3dghJ5/logo.png new file mode 100644 index 0000000000000..ed7f2ea12e559 Binary files /dev/null and b/blockchains/solana/validators/assets/1234LB7uvDC23rdCQoK8C3jNwnovUNyeKxz8wC3dghJ5/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 0000000000000..70ee36d1bc856 Binary files /dev/null and b/blockchains/solana/validators/assets/2Y2opv8Kq8zFATg6ipqb2AjgCf18tkv1CLMLXQGif2NH/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 0000000000000..2bd3a1e2d4571 Binary files /dev/null and b/blockchains/solana/validators/assets/6F5xdRXh2W3B2vhte12VG79JVUkUSLYrHydGX1SAadfZ/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 0000000000000..d263de358fbf2 Binary files /dev/null and b/blockchains/solana/validators/assets/6hTLQ5HSdWcpZkbXmZxXaGjCgTh7zh8UeWKWKgGE1BPp/logo.png differ diff --git a/blockchains/solana/validators/assets/9QU2QSxhb24FUX3Tu2FpczXjpK3VYrvRudywSZaM29mF/logo.png b/blockchains/solana/validators/assets/9QU2QSxhb24FUX3Tu2FpczXjpK3VYrvRudywSZaM29mF/logo.png index c76428450a1c7..4d54781ca00c3 100644 Binary files a/blockchains/solana/validators/assets/9QU2QSxhb24FUX3Tu2FpczXjpK3VYrvRudywSZaM29mF/logo.png and b/blockchains/solana/validators/assets/9QU2QSxhb24FUX3Tu2FpczXjpK3VYrvRudywSZaM29mF/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 0000000000000..6bc191071623d Binary files /dev/null and b/blockchains/solana/validators/assets/AS3nKBQfKs8fJ8ncyHrdvo4FDT6S8HMRhD75JjCcyr1t/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 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/solana/validators/assets/BmMVRAVef2qmJ1tJpG3JwRUtnfEiTbvDw9ZeFEi4wE7D/logo.png differ diff --git a/blockchains/solana/validators/assets/CertusDeBmqN8ZawdkxK5kFGMwBXdudvWHYwtNgNhvLu/logo.png b/blockchains/solana/validators/assets/CertusDeBmqN8ZawdkxK5kFGMwBXdudvWHYwtNgNhvLu/logo.png index 1cd092486633b..52afb073a4dca 100644 Binary files a/blockchains/solana/validators/assets/CertusDeBmqN8ZawdkxK5kFGMwBXdudvWHYwtNgNhvLu/logo.png 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 index 91cfabebe2f2d..7d1021cca7488 100644 Binary files a/blockchains/solana/validators/assets/Chorus6Kis8tFHA7AowrPMcRJk3LbApHTYpgSNXzY5KE/logo.png 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 0000000000000..146d4e4e0a20d 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 0000000000000..95674f5ffbf9a Binary files /dev/null and b/blockchains/solana/validators/assets/D1J7k7WouxgwzCfPN5qnW7TSmCTNqgNxWhjAxq62UK8U/logo.png differ diff --git a/blockchains/solana/validators/assets/D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz/logo.png b/blockchains/solana/validators/assets/D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz/logo.png new file mode 100644 index 0000000000000..cbc90da983488 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 0000000000000..71ecba0f965b2 Binary files /dev/null and b/blockchains/solana/validators/assets/DP3iT6AXJxWsn5pR1ik13vchaTeeyr3fqXFTeysxrXtv/logo.png differ diff --git a/blockchains/solana/validators/assets/DumiCKHVqoCQKD8roLApzR5Fit8qGV5fVQsJV9sTZk4a/logo.png b/blockchains/solana/validators/assets/DumiCKHVqoCQKD8roLApzR5Fit8qGV5fVQsJV9sTZk4a/logo.png index 7cbbcbec3b793..cb7a4941b3d11 100644 Binary files a/blockchains/solana/validators/assets/DumiCKHVqoCQKD8roLApzR5Fit8qGV5fVQsJV9sTZk4a/logo.png 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 0000000000000..592073ac99758 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 index 3c29ee005d51c..0888af01c5da5 100644 Binary files a/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png and b/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png differ diff --git a/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png b/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png differ diff --git a/blockchains/solana/validators/assets/PUmpKiNnSVAZ3w4KaFX6jKSjXUNHFShGkXbERo54xjb/logo.png b/blockchains/solana/validators/assets/PUmpKiNnSVAZ3w4KaFX6jKSjXUNHFShGkXbERo54xjb/logo.png new file mode 100644 index 0000000000000..ac09c895c929f Binary files /dev/null and b/blockchains/solana/validators/assets/PUmpKiNnSVAZ3w4KaFX6jKSjXUNHFShGkXbERo54xjb/logo.png differ diff --git a/blockchains/solana/validators/assets/beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar/logo.png b/blockchains/solana/validators/assets/beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar/logo.png index 5dac81b6035a1..cba5da9120c03 100644 Binary files a/blockchains/solana/validators/assets/beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar/logo.png and b/blockchains/solana/validators/assets/beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar/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 0000000000000..5655e49b629ab 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 index eb95767af97e5..903afea7c3215 100644 --- a/blockchains/solana/validators/list.json +++ b/blockchains/solana/validators/list.json @@ -1,87 +1,63 @@ [ { - "id": "2het6nBRLq9LLZER8fqUEk7j5pbLxq2mVGqSse2nS3tf", - "name": "Maggie's Crypto Farm", - "description": "Making the blocks, all day and all night.", - "website": "https://mcf.rocks/" + "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": "3r5ZXC1yFqMmk8VwDdUJbEdPmZ8KZvEkzd5ThEYRetTk", - "name": "Vnode", - "description": "We are the staking service provider for blockchain projects.", - "website": "" + "id": "AS3nKBQfKs8fJ8ncyHrdvo4FDT6S8HMRhD75JjCcyr1t", + "name": "Overclock", + "description": "Dedicated members of the Solana ecosystem running a high performance, secure validator operation.", + "website": "https://www.overclock.one/" }, { - "id": "49DJjUX3cwFvaZD5rCAwubiz7qdRWDez9xmB381XdHru", - "name": "Staker Space", - "description": "Secure Validating Services", - "website": "https://staker.space" - }, - { - "id": "4PsiLMyoUQ7QRn1FFiFCvej4hsUTFzfvJnyN4bj1tmSN", - "name": "Stakin", - "description": "Your Trusted Crypto Rewards", - "website": "https://stakin.com/" - }, - { - "id": "51JBzSTU5rAM8gLAVQKgp4WoZerQcSqWC7BitBzgUNAm", - "name": "Staked", - "description": "Staked operates highly reliable and secure staking infrastructure for 20+ PoS protocols on behalf of the leading investors in the market.", - "website": "https://staked.us" - }, - { - "id": "6UDU4Z9TTbYy8gcRKBd7RX3Lm2qMsSR4PMuzoyYPzLma", - "name": "dcipher", - "description": "dCipher is a company that has the purpose to combine emerging technologies like Blockchain, IoT and Artificial Intelligence.", - "website": "https://dcipher.io" - }, - { - "id": "76nwV8zz8tLz97SBRXH6uwHvgHXtqJDLQfF66jZhQ857", - "name": "Forbole Limited", - "description": "We are a pioneer in blockchain technology and UX solution. We provide enterprise-level network infrastructure and software development.", - "website": "https://forbole.com" + "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": "7Hs9z4qsGCbQE9cy2aqgsvWupeZZGiKJgeb1eG4ZKYUH", - "name": "Kytzu", - "description": "Tendermint tech consultant and developer", - "website": "http://kytzu.com/" + "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": "7PmWxxiTneGteGxEYvzj5pGDVMQ4nuN9DfUypEXmaA8o", - "name": "Syncnode SRL", - "description": "Syncnode is a software development and cyber security company with global presence and headquarters in Switzerland and Romania.", - "website": "https://wallet.syncnode.ro/" + "id": "D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz", + "name": "AutoStake ⚡️ 0% fee forever", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund 🛡️", + "website": "https://autostake.com" }, { - "id": "7VGU4ZwR1e1AFekqbqv2gvjeg47e1PwMPm4BfLt6rxNk", - "name": "stake.fish", - "description": "We are the leading staking service provider for blockchain projects. Join our community to stake and earn rewards. We know staking.", - "website": "https://stake.fish/" + "id": "CertusDeBmqN8ZawdkxK5kFGMwBXdudvWHYwtNgNhvLu", + "name": "Jump Crypto", + "description": "Jump Crypto is building toward the next frontier in crypto infrastructure.", + "website": "https://jumpcrypto.com/" }, { - "id": "9GJmEHGom9eWo4np4L5vC6b6ri1Df2xN8KFoWixvD1Bs", - "name": "BL", - "description": "", - "website": "" + "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": "9iEFfC6qCU6DBTWxL84YQdpNmpZ9yBBu4sW62yeiEVKe", - "name": "Izo Data Network", - "description": "If we could describe the business relationship we have with our clients in one word, it would be TRUST.", - "website": "http://www.izo.ro/" + "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": "9QU2QSxhb24FUX3Tu2FpczXjpK3VYrvRudywSZaM29mF", - "name": "Everstake", - "description": "Everstake is a team of seasoned developers, financial experts and blockchain enthusiasts. We run secure and reliable nodes for PoS protocols", - "website": "https://everstake.one" + "id": "D3DfFvmLBKkX9JJNEpJRXpM1pYTVPQ5dpPQRc9F49xk4", + "name": "Easy 2 Stake", + "description": "Professional PoS staking services.", + "website": "https://easy2stake.com/" }, { - "id": "9sWYTuuR4s12Q4SuSfo5CfWaFggQwA6Z8pf8dWowN5rk", - "name": "Ubik Capital", - "description": "Ubik Capital's team priority is to provide a highly resilient and secure validator for the Solana community.", - "website": "https://ubik.capital/" + "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", @@ -90,153 +66,81 @@ "website": "https://stake.systems" }, { - "id": "9v5gci7uDiaGKRmQ2dn6WJMB94YqFaVFBTiFzBzNhyaw", - "name": "Inotel", - "description": "", - "website": "" - }, - { - "id": "AGXZemZbyZjz5NBhufcob2pf8AXnr9HaGFUGNCfooWrB", - "name": "RockX", - "description": "RockX is a professional digital asset platform that aims to bring crypto investing to the mainstream in the smartest way.", - "website": "https://rockx.com/" - }, - { - "id": "ateamaZDqNWDztxnVKZhRsp4ac53KvT1rVKyU5LnL6o", - "name": "Node A-Team", - "description": "", - "website": "https://nodeateam.com/" - }, - { - "id": "beefKGBWeSpHzYBHZXwp5So7wdQGX6mu4ZHCsH3uTar", - "name": "Bison Trails", - "description": "We provide secure and reliable enterprise-grade infrastructure with multi-cloud / region distribution and a 99% node uptime guarantee", - "website": "https://bisontrails.co/" - }, - { - "id": "BH7asDZbKkTmT3UWiNfmMVRgQEEpXoVThGPmQfgWwDhg", - "name": "01Node", - "description": "01node | Professional Staking Services for Cosmos, Iris, Terra, Solana, Kava, Polkadot, Skale", - "website": "https://01node.com" - }, - { - "id": "BxFf75Vtzro2Hy3coFHKxFMZo5au8W7J8BmLC3gCMotU", - "name": "Chainode", - "description": "Chainode Tech is your reliable partner for distributed ledger technology (DLT) validation services and blockchain consultancy.", - "website": "https://chainode.tech/" - }, - { - "id": "CAf8jfgqhia5VNrEF4A7Y9VLD3numMq9DVSceq7cPhNY", - "name": "Chainflow", - "description": "Chainflow's a small, independent, capable & dedicated validator operator, started in 2017 by @cjremus, working to keep stake decentralized.", - "website": "https://chainflow.io/staking" - }, - { - "id": "CcaHc2L43ZWjwCHART3oZoJvHLAe9hzT2DJNUpBzoTN1", - "name": "Figment Networks", - "description": "", - "website": "https://figment.network/" - }, - { - "id": "CertusDeBmqN8ZawdkxK5kFGMwBXdudvWHYwtNgNhvLu", - "name": "Certus One", - "description": "", - "website": "https://certus.one" - }, - { - "id": "Chorus6Kis8tFHA7AowrPMcRJk3LbApHTYpgSNXzY5KE", - "name": "Chorus One", - "description": "Secure Solana and shape its future by delegating to Chorus One, a leading provider of validation infrastructure and staking services.", - "website": "https://chorus.one" - }, - { - "id": "CRzMxdyS56N2vkb55X5q155sSdVkjZhiFedWcbscCf7K", - "name": "HashQuark", - "description": "HashQuark is a new generation Proof-of-Stake pool focused on POS, DPOS and other public chains.", - "website": "https://hashquark.io/" - }, - { - "id": "D3DfFvmLBKkX9JJNEpJRXpM1pYTVPQ5dpPQRc9F49xk4", - "name": "Easy 2 Stake", - "description": "Professional PoS staking services.", - "website": "https://easy2stake.com/" - }, - { - "id": "DQ7D6ZRtKbBSxCcAunEkoTzQhCBKLPdzTjPRRnM6wo1f", - "name": "Stakewolf", - "description": "", - "website": "" + "id": "4PsiLMyoUQ7QRn1FFiFCvej4hsUTFzfvJnyN4bj1tmSN", + "name": "Stakin", + "description": "Your Trusted Crypto Rewards", + "website": "https://stakin.com/" }, { - "id": "DumiCKHVqoCQKD8roLApzR5Fit8qGV5fVQsJV9sTZk4a", - "name": "Staking Facilities", - "description": "Staking Facilities is a Munich-based staking service provider, who operates institutional-grade, custom built validator architecture.", - "website": "https://stakingfacilities.com/" + "id": "CogentC52e7kktFfWHwsqSmr8LiS1yAtfqhHcftCPcBJ", + "name": "Cogent Crypto", + "description": "Highest APY Validator", + "website": "https://CogentCrypto.io/" }, { - "id": "edu1fZt5i82cFm6ujUoyXLMdujWxZyWYC8fkydWHRNT", - "name": "Solstaking", - "description": "Specialized in Solana Staking", - "website": "https://solstaking.com/" + "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": "FKsC411dik9ktS6xPADxs4Fk2SCENvAiuccQHLAPndvk", - "name": "P2P.ORG - P2P Validator", - "description": "Secure Non-Custodial Staking", - "website": "https://p2p.org/" + "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": "GB44NXtM7zGm6QnzQjzHZcRKSswkJbox8aJsKiXGbFJr", - "name": "Rustiq Technology", - "description": "", - "website": "" + "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": "GhKEDkvGkf2kceG45ppzqnPD6BPXi1PyW1xGNWJdh5QW", - "name": "Stefan Condurachi", - "description": "I build & design intuitive blockchain tools.", - "website": "http://stefancondurachi.com/" + "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": "GMpKrAwQ9oa4sJqEYQezLr8Z2TUAU72tXD4iMyfoJjbh", - "name": "Moonlet", - "description": "Moonlet operates nodes for next-generation blockchain networks and is committed to support the decentralisation movement forward.", - "website": "https://moonlet.xyz/" + "id": "1234LB7uvDC23rdCQoK8C3jNwnovUNyeKxz8wC3dghJ5", + "name": "BlueLotus 👩‍💻", + "description": "Reliable & Secure Solana Validator", + "website": "https://www.bluelotus.one/" }, { - "id": "GvZEwtCHZ7YtCkQCaLRVEXsyVvQkRDhJhQgB6akPme1e", - "name": "melea", - "description": "Secure and trusted Validator, Protection against DDoS attacks and high availability-. Validating since 2017", - "website": "https://meleatrust.com" + "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": "H3GhqPMwvGLdxWg3QJGjXDSkFSJCsFk3Wx9XBTdYZykc", - "name": "DokiaCapital", - "description": "We operate an enterprise-grade infrastructure that is robust and secure. Downtime is not an option for us. Stake now and manage your reward.", - "website": "https://staking.dokia.cloud/" + "id": "juicQdAnksqZ5Yb8NQwCLjLWhykvXGktxnQCDvMe6Nx", + "name": "Juicy Stake", + "description": "The ultimate Juicy Stake validator by @knox_trades", + "website": "https://juicystake.io" }, { - "id": "LunaFpQkZsZVJL2P2BUqNDJqyVYqrw9buQnjQtMLXdK", - "name": "LunaNova Technologies", - "description": "Experienced team runs Solana-optimised, monitored hardware in top-tier UK datacentres - uptime guaranteed - 10% of our profits to charity", - "website": "https://lunanova.tech/" + "id": "6F5xdRXh2W3B2vhte12VG79JVUkUSLYrHydGX1SAadfZ", + "name": "Allnodes.com ⚡️ 0% fee", + "description": "eliable non-custodial Validator run by the industry leader - Allnodes.", + "website": "https://www.allnodes.com/sol/staking" }, { - "id": "SFund7s2YPS7iCu7W2TobbuQEpVEAv9ZU7zHKiN1Gow", - "name": "Staking Fund", - "description": "", - "website": "https://staking.fund" + "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": "D3DfFvmLBKkX9JJNEpJRXpM1pYTVPQ5dpPQRc9F49xk4", - "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": "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": "EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F", - "name": "Genesis Lab", - "description": "Genesis Lab is a validation nodes operator in PoS networks and blockchain-focused software development company", - "website": "https://genesislab.net" + "id": "FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" } -] \ No newline at end of file +] diff --git a/blockchains/sommelier/info/info.json b/blockchains/sommelier/info/info.json new file mode 100644 index 0000000000000..0692fa8826665 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..6e6eb7f239b80 Binary files /dev/null and b/blockchains/sommelier/info/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper15urq2dtp9qce4fyc85m6upwm9xul30499el64g/logo.png b/blockchains/sommelier/validators/assets/sommvaloper15urq2dtp9qce4fyc85m6upwm9xul30499el64g/logo.png new file mode 100644 index 0000000000000..83225b3167144 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper15urq2dtp9qce4fyc85m6upwm9xul30499el64g/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1a583xjv6ylrdfzm3udk6jnj4xy28k2wge0eazz/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1a583xjv6ylrdfzm3udk6jnj4xy28k2wge0eazz/logo.png new file mode 100644 index 0000000000000..18b82452aaf26 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1a583xjv6ylrdfzm3udk6jnj4xy28k2wge0eazz/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3/logo.png new file mode 100644 index 0000000000000..552a01c6cb622 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1pedd3sk0qhwc3yr6zh036gcwc0d6yhuntw9lcw/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1pedd3sk0qhwc3yr6zh036gcwc0d6yhuntw9lcw/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1pedd3sk0qhwc3yr6zh036gcwc0d6yhuntw9lcw/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1tl6jl7ecqwvgagsc4w46n9nm470cwjyg24hlw3/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1tl6jl7ecqwvgagsc4w46n9nm470cwjyg24hlw3/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1tl6jl7ecqwvgagsc4w46n9nm470cwjyg24hlw3/logo.png differ diff --git a/blockchains/sommelier/validators/list.json b/blockchains/sommelier/validators/list.json new file mode 100644 index 0000000000000..7ee9247f279b3 --- /dev/null +++ b/blockchains/sommelier/validators/list.json @@ -0,0 +1,32 @@ +[ + { + "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": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "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/" + } +] diff --git a/blockchains/stargaze/info/info.json b/blockchains/stargaze/info/info.json new file mode 100644 index 0000000000000..0d36e4dba992f --- /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": "twitter", + "url": "https://twitter.com/StargazeZone" + } + ], + "tags": [ + "staking-native" + ] +} diff --git a/blockchains/stargaze/info/logo.png b/blockchains/stargaze/info/logo.png new file mode 100644 index 0000000000000..bae9f21d47718 Binary files /dev/null and b/blockchains/stargaze/info/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper13htkxk8nw6qwhfdugllp8ldtgt5nm80xf679h5/logo.png b/blockchains/stargaze/validators/assets/starsvaloper13htkxk8nw6qwhfdugllp8ldtgt5nm80xf679h5/logo.png new file mode 100644 index 0000000000000..2b7d58fdbd8b2 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper13htkxk8nw6qwhfdugllp8ldtgt5nm80xf679h5/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper18wkkhsrsw7gwl3z9gn6e25ag3sn0crzp89el6n/logo.png b/blockchains/stargaze/validators/assets/starsvaloper18wkkhsrsw7gwl3z9gn6e25ag3sn0crzp89el6n/logo.png new file mode 100644 index 0000000000000..d9182668938b8 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper18wkkhsrsw7gwl3z9gn6e25ag3sn0crzp89el6n/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1fhznrvfyv25f27se8pqw79ytfcwh45j0ppy6lz/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1fhznrvfyv25f27se8pqw79ytfcwh45j0ppy6lz/logo.png new file mode 100644 index 0000000000000..6969356556add Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1fhznrvfyv25f27se8pqw79ytfcwh45j0ppy6lz/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p60w86a/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p60w86a/logo.png new file mode 100644 index 0000000000000..a815dfcdc85c8 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p60w86a/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1gz645mefvu5emd0llpfjchqqpyuxt0xxq34per/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1gz645mefvu5emd0llpfjchqqpyuxt0xxq34per/logo.png new file mode 100644 index 0000000000000..5f4e450704b06 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1gz645mefvu5emd0llpfjchqqpyuxt0xxq34per/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1mz2qks48v486d9m8wp4l9fxm2e9l0e0kzk79m5/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1mz2qks48v486d9m8wp4l9fxm2e9l0e0kzk79m5/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1mz2qks48v486d9m8wp4l9fxm2e9l0e0kzk79m5/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qlh8sg9/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qlh8sg9/logo.png new file mode 100644 index 0000000000000..e53d0580b5a99 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qlh8sg9/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1swer6tl0s59g82xnq5gmgsdueld79wpw8vptlu/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1swer6tl0s59g82xnq5gmgsdueld79wpw8vptlu/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1swer6tl0s59g82xnq5gmgsdueld79wpw8vptlu/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1ulvgmlttxhrnmegu57sj0n2qc7xvtrn9245jtu/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1ulvgmlttxhrnmegu57sj0n2qc7xvtrn9245jtu/logo.png new file mode 100644 index 0000000000000..91529a7d386f0 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1ulvgmlttxhrnmegu57sj0n2qc7xvtrn9245jtu/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1wvh8n82r4alqhxs45m8jtf536sqc5nzzgfzs7x/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1wvh8n82r4alqhxs45m8jtf536sqc5nzzgfzs7x/logo.png new file mode 100644 index 0000000000000..05e24c5c9fa3f Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1wvh8n82r4alqhxs45m8jtf536sqc5nzzgfzs7x/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1y3cxrze7kmktj93atd42g9rffyg823g0qjqelc/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1y3cxrze7kmktj93atd42g9rffyg823g0qjqelc/logo.png new file mode 100644 index 0000000000000..1b71ae0a3a343 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1y3cxrze7kmktj93atd42g9rffyg823g0qjqelc/logo.png differ diff --git a/blockchains/stargaze/validators/list.json b/blockchains/stargaze/validators/list.json new file mode 100644 index 0000000000000..8a07987fd1b5e --- /dev/null +++ b/blockchains/stargaze/validators/list.json @@ -0,0 +1,74 @@ +[ + { + "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": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "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://twitter.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" + } +] diff --git a/blockchains/stellar/assets/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN/info.json b/blockchains/stellar/assets/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN/info.json new file mode 100644 index 0000000000000..b26d962748ee6 --- /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": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/stellar/assets/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN/logo.png b/blockchains/stellar/assets/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN/logo.png new file mode 100644 index 0000000000000..e3d5a3f65634c Binary files /dev/null and b/blockchains/stellar/assets/USDC-GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN/logo.png differ diff --git a/blockchains/stratis/info/info.json b/blockchains/stratis/info/info.json new file mode 100644 index 0000000000000..b415b96999662 --- /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": "twitter", + "url": "https://twitter.com/stratisplatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/stratis/info/logo.png b/blockchains/stratis/info/logo.png new file mode 100644 index 0000000000000..00a41b1a8f18e Binary files /dev/null and b/blockchains/stratis/info/logo.png differ diff --git a/blockchains/stride/assets/staevmos/info.json b/blockchains/stride/assets/staevmos/info.json new file mode 100644 index 0000000000000..e0bb8d56a7cb1 --- /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 0000000000000..14110f594c412 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 0000000000000..37d1967c74e2d --- /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 0000000000000..23d57dbfa8fa1 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 0000000000000..4cc88944c0ec0 --- /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 0000000000000..a9ce5b2297562 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 0000000000000..313db9affb3c3 --- /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 0000000000000..dad76df8989b0 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 0000000000000..c60fe8a357587 --- /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 0000000000000..aefd71b972a8e 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 0000000000000..bb5a4e779bfe5 --- /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 0000000000000..b0f32fb97ef60 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 0000000000000..4ab67048dc976 --- /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 0000000000000..29cf9c0c583b4 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 0000000000000..3785ebcc801ec --- /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 0000000000000..4464f89f1688a 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 0000000000000..cd9a003a99c02 --- /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": "twitter", + "url": "https://twitter.com/stride_zone" + } + ] +} diff --git a/blockchains/stride/info/logo.png b/blockchains/stride/info/logo.png new file mode 100644 index 0000000000000..e75a2ec56fdcb Binary files /dev/null and b/blockchains/stride/info/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 0000000000000..831b62a584366 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1624f0qe76yhnwvlwp3ury2r2xh6cqemmpts8ge/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper17axr56uvurzt9dzjl6zplk4qwjkmxgmmqmthwv/logo.png b/blockchains/stride/validators/assets/stridevaloper17axr56uvurzt9dzjl6zplk4qwjkmxgmmqmthwv/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper17axr56uvurzt9dzjl6zplk4qwjkmxgmmqmthwv/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper19nktvlnhd7j2tsyt97jyfnv3kdemx8cqx25ng7/logo.png b/blockchains/stride/validators/assets/stridevaloper19nktvlnhd7j2tsyt97jyfnv3kdemx8cqx25ng7/logo.png new file mode 100644 index 0000000000000..f30b2458178da 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 0000000000000..cbc90da983488 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 0000000000000..ef1e1911316fc 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 0000000000000..0e32dd66a10d5 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 0000000000000..0210d0e6e879d 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 0000000000000..8f6bd2d3b789f 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 0000000000000..6676e07e645cc 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 0000000000000..74e85f6c4943f 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 0000000000000..aab2312d1572e 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 0000000000000..0048540e96fdc 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 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1xgvc86nkv03z7rgyx9t8t66kfz7y9tgpewkww2/logo.png differ diff --git a/blockchains/stride/validators/list.json b/blockchains/stride/validators/list.json new file mode 100644 index 0000000000000..03a07b71ca94e --- /dev/null +++ b/blockchains/stride/validators/list.json @@ -0,0 +1,80 @@ +[ + { + "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": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "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" + } +] 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 0000000000000..e3bad598f0ab0 --- /dev/null +++ b/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/info.json @@ -0,0 +1,37 @@ +{ + "name": "USD Coin", + "symbol": "USDC", + "type": "SUI", + "decimals": 6, + "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", + "website": "https://www.centre.io", + "explorer": "https://explorer.sui.io/address/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN", + "research": "https://research.binance.com/en/projects/usd-coin", + "status": "active", + "id": "0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN", + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ 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 0000000000000..8047edf737f31 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 0000000000000..7a8183cc44c09 --- /dev/null +++ b/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tether USD", + "symbol": "USDT", + "type": "SUI", + "decimals": 6, + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "website": "https://tether.to", + "explorer": "https://explorer.sui.io/address/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN", + "status": "active", + "id": "0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ 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 0000000000000..98f440a376454 Binary files /dev/null and b/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/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 0000000000000..8440ed6311961 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..90b0d10acc2f6 Binary files /dev/null and b/blockchains/sui/assets/0xebbf537bc3686be32fe22b498b42715641bbb209267be72236a352e0444cc5df::sui_pepe::SUI_PEPE/logo.png differ diff --git a/blockchains/sui/info/info.json b/blockchains/sui/info/info.json new file mode 100644 index 0000000000000..451b6588d1b83 --- /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": "twitter", + "url": "https://twitter.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/" + } + ] +} diff --git a/blockchains/sui/info/logo.png b/blockchains/sui/info/logo.png new file mode 100644 index 0000000000000..2b876f1c5d4d4 Binary files /dev/null and b/blockchains/sui/info/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 0000000000000..22f9793543269 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 0000000000000..1db1d333a4b10 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 0000000000000..01498ceed7241 Binary files /dev/null and b/blockchains/sui/validators/assets/0x4fffd0005522be4bc029724c7f0f6ed7093a6bf3a09b90e62f61dc15181e1a3e/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 0000000000000..02bd65ee5f9b3 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 0000000000000..0a827d6b58736 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 0000000000000..203f6d45c993d 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 0000000000000..1020527149890 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 0000000000000..1914e999c9f0a 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 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/sui/validators/assets/0x9b8b11c9b2336d35f2db8d5318ff32de51b85857f0e53a5c31242cf3797f4be4/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 0000000000000..9c65c6d2163ae 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 0000000000000..5e96ae80cbd5f 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 0000000000000..27f6365a734ed 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 0000000000000..3e1bb03c6c058 --- /dev/null +++ b/blockchains/sui/validators/list.json @@ -0,0 +1,74 @@ +[ + { + "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" + } +] diff --git a/blockchains/syscoin/info/info.json b/blockchains/syscoin/info/info.json new file mode 100644 index 0000000000000..3d5b8688661ee --- /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": "twitter", + "url": "https://twitter.com/syscoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/syscoin/info/logo.png b/blockchains/syscoin/info/logo.png new file mode 100644 index 0000000000000..c10e6dbcfb9b1 Binary files /dev/null and b/blockchains/syscoin/info/logo.png differ diff --git a/blockchains/teritori/info/info.json b/blockchains/teritori/info/info.json new file mode 100644 index 0000000000000..7d640de40ae76 --- /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://rpc-teritori.whispernode.com/", + "denom": "utori", + "lcd_url": "https://rest-teritori.carbonzero.zone/", + "hrp": "tori", + "fee_rate": "0.25", + "links": [ + { + "name": "medium", + "url": "https://medium.com/teritori" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/teritori/" + }, + { + "name": "twitter", + "url": "https://twitter.com/TeritoriNetwork" + } + ] +} diff --git a/blockchains/teritori/info/logo.png b/blockchains/teritori/info/logo.png new file mode 100644 index 0000000000000..63fedfa892573 Binary files /dev/null and b/blockchains/teritori/info/logo.png differ diff --git a/blockchains/teritori/validators/assets/torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h/logo.png b/blockchains/teritori/validators/assets/torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/teritori/validators/assets/torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h/logo.png differ diff --git a/blockchains/teritori/validators/assets/torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq/logo.png b/blockchains/teritori/validators/assets/torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/teritori/validators/assets/torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq/logo.png differ diff --git a/blockchains/teritori/validators/list.json b/blockchains/teritori/validators/list.json new file mode 100644 index 0000000000000..147734b865e94 --- /dev/null +++ b/blockchains/teritori/validators/list.json @@ -0,0 +1,14 @@ +[ + { + "id": "torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h", + "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/terra/assets/terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym/info.json b/blockchains/terra/assets/terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym/info.json new file mode 100644 index 0000000000000..9a2e8b151a814 --- /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 0000000000000..bb40954f41856 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 0000000000000..1c1b4f45db294 --- /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 0000000000000..2eac49b213403 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 0000000000000..65fef1a5fe606 --- /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 0000000000000..2d99a939536c4 Binary files /dev/null and b/blockchains/terra/assets/terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r/logo.png differ diff --git a/blockchains/terra/assets/terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y/info.json b/blockchains/terra/assets/terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y/info.json new file mode 100644 index 0000000000000..294f15b76854b --- /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 0000000000000..87719f12932c8 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 0000000000000..13248b84c3d0d --- /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 0000000000000..20b80f3340234 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 0000000000000..03755111a6d3d --- /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 0000000000000..7a2e75fd77f1b 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 0000000000000..c44ee6d88bc02 --- /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 0000000000000..d603db0efae1f 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 0000000000000..fa65502f536f3 --- /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 0000000000000..331a781cc5264 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 0000000000000..ea39d228edb94 --- /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 0000000000000..46b9968e18279 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 0000000000000..772c90e5ebad5 --- /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 0000000000000..24a702d4390f2 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 0000000000000..bcb5a6d6d4d82 --- /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 0000000000000..1057abafc2a9b 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 0000000000000..202bb3eab3ca9 --- /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 0000000000000..94f79d706b71c 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 0000000000000..c9d0f169d483a --- /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 0000000000000..60c97897b870c 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 0000000000000..6adb612a680ce --- /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 0000000000000..c9ca83078881a 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 0000000000000..c7e645e017d64 --- /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 0000000000000..9e63d73503a5d 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 0000000000000..f873cf654c626 --- /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 0000000000000..0378951680fac 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 0000000000000..3d22933dda309 --- /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 0000000000000..d52df831af1f9 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 0000000000000..bde5fec14b404 --- /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 0000000000000..5cfbd9abb2f7c 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 0000000000000..7447f4781dc24 --- /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 0000000000000..cd42f7185e707 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 0000000000000..71265680ee9e3 --- /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 0000000000000..5f4a1d03d126c 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 0000000000000..b4a3e5b4ee58b --- /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 0000000000000..cc8b90ca87f4d 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 0000000000000..90a7b57a85de9 --- /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 0000000000000..4e3f74d233943 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 0000000000000..c2dbb2f8aad7b --- /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 0000000000000..89db97dd2ba01 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 0000000000000..2b389eb118cc6 --- /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 0000000000000..c06d51fcc9aa4 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 0000000000000..717a33a8235f3 --- /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 0000000000000..ed00e43fcfe9b 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 0000000000000..f8c9f37f841ee --- /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 0000000000000..f448cdfef620e 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 0000000000000..47b62fc1fdee2 --- /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 0000000000000..b6c0173045c7a 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 0000000000000..fc3e539936765 --- /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 0000000000000..8cd9b22a7f253 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 0000000000000..a74cbdc24548c --- /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 0000000000000..58b66f7e91e64 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 0000000000000..f9dbf07c98570 --- /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 0000000000000..9b94a46ec9eea 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 0000000000000..d2944c9dd9298 --- /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 0000000000000..498219815a122 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 0000000000000..289a8d4f1f489 --- /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 0000000000000..423a3c7117cf7 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 0000000000000..a35efc6f05b50 --- /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 0000000000000..66cd242149010 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 0000000000000..665daa6f80110 --- /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 0000000000000..cb6457e6b173d 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 0000000000000..8421d71b3a13b --- /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 0000000000000..8ec55937f4dba 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 0000000000000..ea12733922a6d --- /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 0000000000000..6c711d8a55837 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 index 5112bb0f866cf..cbfa3123bb8d1 100644 --- a/blockchains/terra/assets/ukrw/info.json +++ b/blockchains/terra/assets/ukrw/info.json @@ -1,10 +1,10 @@ { - "name": "TerraKRW", + "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": "KRT", + "symbol": "KRTC", "decimals": 6, "status": "active", "id": "ukrw", diff --git a/blockchains/terra/assets/ukrw/logo.png b/blockchains/terra/assets/ukrw/logo.png index 3cbb508e12901..622d4a2eb2914 100644 Binary files a/blockchains/terra/assets/ukrw/logo.png 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 index 6352461a03b8b..099aa2fe33f80 100644 --- a/blockchains/terra/assets/umnt/info.json +++ b/blockchains/terra/assets/umnt/info.json @@ -1,10 +1,10 @@ { - "name": "TerraUMNT", + "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": "UMNT", + "symbol": "UMNTC", "decimals": 6, "status": "active", "id": "umnt", diff --git a/blockchains/terra/assets/umnt/logo.png b/blockchains/terra/assets/umnt/logo.png index afc4a05da560b..7a44afe5f6f48 100644 Binary files a/blockchains/terra/assets/umnt/logo.png 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 index 757c8d3b3b0cc..0083d13864c8a 100644 --- a/blockchains/terra/assets/usdr/info.json +++ b/blockchains/terra/assets/usdr/info.json @@ -1,10 +1,10 @@ { - "name": "TerraSDT", + "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": "SDT", + "symbol": "SDTC", "decimals": 6, "status": "active", "id": "usdr", diff --git a/blockchains/terra/assets/usdr/logo.png b/blockchains/terra/assets/usdr/logo.png index 4c3fbe91a77cf..dbf5e23a8f974 100644 Binary files a/blockchains/terra/assets/usdr/logo.png 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 index 1aa90b795f108..41fb32e60360e 100644 --- a/blockchains/terra/assets/uusd/info.json +++ b/blockchains/terra/assets/uusd/info.json @@ -1,10 +1,10 @@ { - "name": "TerraUSD", + "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": "UST", + "symbol": "USTC", "decimals": 6, "status": "active", "id": "uusd", diff --git a/blockchains/terra/assets/uusd/logo.png b/blockchains/terra/assets/uusd/logo.png index 5cd55c471950d..b5de7830c06f0 100644 Binary files a/blockchains/terra/assets/uusd/logo.png and b/blockchains/terra/assets/uusd/logo.png differ diff --git a/blockchains/terra/info/info.json b/blockchains/terra/info/info.json index 1d64bfe250b90..c83e0916a4464 100644 --- a/blockchains/terra/info/info.json +++ b/blockchains/terra/info/info.json @@ -1,13 +1,16 @@ { - "name": "Terra", + "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": "LUNA", + "symbol": "LUNC", "type": "coin", "decimals": 6, "status": "active", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", @@ -22,4 +25,4 @@ "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 index 0706cbb895b6d..8ff4ba43bb294 100644 Binary files a/blockchains/terra/info/logo.png and b/blockchains/terra/info/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 0000000000000..0f6305d87f6e5 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 0000000000000..2bd3a1e2d4571 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper120ppepaj2lh5vreadx42wnjjznh55vvktp78wk/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 0000000000000..434f53ccac24a 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 0000000000000..8247888dd198d 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 0000000000000..7377f61b2a549 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 0000000000000..af4630e029a19 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 0000000000000..80d398ff24f87 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper16e0s5t7q69elnlchrupryw3h7vu8zk23pe5wh8/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82/logo.png b/blockchains/terra/validators/assets/terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82/logo.png new file mode 100644 index 0000000000000..472936ed16f00 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1der0lqp4grpnmpuefhwlj72fzccqmhmwgjh6ys/logo.png b/blockchains/terra/validators/assets/terravaloper1der0lqp4grpnmpuefhwlj72fzccqmhmwgjh6ys/logo.png new file mode 100644 index 0000000000000..51a327ab316c7 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 0000000000000..cbc90da983488 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 0000000000000..70ee36d1bc856 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1fuk24ujq5e7zrj7st2m4wvgczdfchhzm5f2ml0/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx/logo.png b/blockchains/terra/validators/assets/terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx/logo.png deleted file mode 100644 index 3c29ee005d51c..0000000000000 Binary files a/blockchains/terra/validators/assets/terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx/logo.png and /dev/null differ diff --git a/blockchains/terra/validators/assets/terravaloper1pu8lpz64erz47eemtkhq9wzwu9st9ehywnlw4q/logo.png b/blockchains/terra/validators/assets/terravaloper1pu8lpz64erz47eemtkhq9wzwu9st9ehywnlw4q/logo.png new file mode 100644 index 0000000000000..ea2ccf3b39696 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 0000000000000..5fbc40e487146 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1qrgwphlf9c64m5ys6pzsvy055ud03e4kr7sq8u/logo.png differ diff --git a/blockchains/terra/validators/list.json b/blockchains/terra/validators/list.json index 6e78138bbf073..69e90d1f422c3 100644 --- a/blockchains/terra/validators/list.json +++ b/blockchains/terra/validators/list.json @@ -23,12 +23,6 @@ "description": "Validators of today, Auditors of tomorrow", "website": "https://audit.one/" }, - { - "id": "terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx", - "name": "Genesis Lab", - "description": "Genesis Lab is a validation nodes operator in PoS networks and blockchain-focused software development company", - "website": "https://genesislab.net" - }, { "id": "terravaloper1259cmu5zyklsdkmgstxhwqpe0utfe5hhyty0at", "name": "Orion.Money", @@ -64,5 +58,83 @@ "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": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "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://twitter.com/lunc_nymph" + }, + { + "id": "terravaloper14xjkj5rv72fgqz3h78l883rw0njwhmzce45006", + "name": "Classy's Sphere 🔮 | 0% Fees", + "description": "Community Validator run by Classy Crypto. 100% OF Our Commission WILL BE BURNED! Fund developers & help revitalize the chain. Auto-compound your rewards through https://restake.app/terra for greater yield & Stay Classy.", + "website": "https://twitter.com/ClassyCrypto_" + }, + { + "id": "terravaloper12r8929na0amxfj406zw7vk8jmd03fmzcj9r2gg", + "name": "danku_zone w/ DAIC", + "description": "The official validator node from danku_r (YouTube, Twitter, Medium) run by DAIC (https://t.me/validator_danku_DAIC)", + "website": "https://daic.capital/danku_zone" + }, + { + "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" } -] \ 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 0000000000000..1d64bfe250b90 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..d104f691609d3 Binary files /dev/null and b/blockchains/terrav2/info/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper1tfy452kxfcsa2353nenltade9esj7ffrc38gwn/logo.png b/blockchains/terrav2/validators/assets/terravaloper1tfy452kxfcsa2353nenltade9esj7ffrc38gwn/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper1tfy452kxfcsa2353nenltade9esj7ffrc38gwn/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz/logo.png b/blockchains/terrav2/validators/assets/terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz/logo.png differ diff --git a/blockchains/terrav2/validators/list.json b/blockchains/terrav2/validators/list.json new file mode 100644 index 0000000000000..6e4dad78779c6 --- /dev/null +++ b/blockchains/terrav2/validators/list.json @@ -0,0 +1,14 @@ +[ + { + "id": "terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz", + "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": "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" + } +] \ No newline at end of file diff --git a/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/info.json b/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/info.json new file mode 100644 index 0000000000000..67400282f2876 --- /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": "twitter", + "url": "https://twitter.com/QuipuSwap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/quipuswap-governance-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/logo.png b/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/logo.png new file mode 100644 index 0000000000000..f460a82ea7d16 Binary files /dev/null and b/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/logo.png differ diff --git a/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/info.json b/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/info.json new file mode 100644 index 0000000000000..7897c352bc677 --- /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": "twitter", + "url": "https://twitter.com/ethdotorg" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g" + }, + { + "name": "discord", + "url": "https://discord.com/invite/CetY6Y4" + } + ] +} \ No newline at end of file diff --git a/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/logo.png b/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/logo.png new file mode 100644 index 0000000000000..b5fb248e88a76 Binary files /dev/null and b/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/logo.png differ diff --git a/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/info.json b/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/info.json new file mode 100644 index 0000000000000..47b52d2d3cb16 --- /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": "twitter", + "url": "https://twitter.com/hicetnunc2000" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hic-et-nunc-dao/" + } + ] +} diff --git a/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/logo.png b/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/logo.png new file mode 100644 index 0000000000000..025371c336696 Binary files /dev/null and b/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/logo.png differ diff --git a/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/info.json b/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/info.json new file mode 100644 index 0000000000000..5972914be6d80 --- /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": "twitter", + "url": "https://twitter.com/usdtz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usdtez/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/logo.png b/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/logo.png new file mode 100644 index 0000000000000..36a805dcc9fde Binary files /dev/null and b/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/logo.png differ diff --git a/blockchains/tezos/validators/assets/tz1hAYfexyzPGG6RhZZMpDvAHifubsbb6kgn/logo.png b/blockchains/tezos/validators/assets/tz1hAYfexyzPGG6RhZZMpDvAHifubsbb6kgn/logo.png new file mode 100644 index 0000000000000..abcfc3298bba4 Binary files /dev/null and b/blockchains/tezos/validators/assets/tz1hAYfexyzPGG6RhZZMpDvAHifubsbb6kgn/logo.png differ diff --git a/blockchains/tezos/validators/list.json b/blockchains/tezos/validators/list.json index 41a05b7c62276..3aa3f290a506e 100644 --- a/blockchains/tezos/validators/list.json +++ b/blockchains/tezos/validators/list.json @@ -1,4 +1,18 @@ [ + { + "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", @@ -503,4 +517,4 @@ "minDelegation": 0 } } -] \ No newline at end of file +] diff --git a/blockchains/tftm/info/info.json b/blockchains/tftm/info/info.json new file mode 100644 index 0000000000000..e30c6b6d03d35 --- /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": "twitter", + "url": "https://twitter.com/FantomFDN" + }, + { + "name": "telegram", + "url": "https://t.me/Fantom_English" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/fantom/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantom/" + } + ] +} \ 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 0000000000000..4c55ec1d7621e Binary files /dev/null and b/blockchains/tftm/info/logo.png differ diff --git a/blockchains/thundertoken/assets/0x0212b1F75503413b01A98158434c4570FB6e808c/info.json b/blockchains/thundertoken/assets/0x0212b1F75503413b01A98158434c4570FB6e808c/info.json index 463e96b413c8b..a0c7377ef5dcb 100644 --- a/blockchains/thundertoken/assets/0x0212b1F75503413b01A98158434c4570FB6e808c/info.json +++ b/blockchains/thundertoken/assets/0x0212b1F75503413b01A98158434c4570FB6e808c/info.json @@ -11,11 +11,14 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/ThunderProtocol" + "url": "https://twitter.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 index 9a1bfc2bbfadf..991919957aec1 100644 Binary files a/blockchains/thundertoken/assets/0x0212b1F75503413b01A98158434c4570FB6e808c/logo.png and b/blockchains/thundertoken/assets/0x0212b1F75503413b01A98158434c4570FB6e808c/logo.png differ diff --git a/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/info.json b/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/info.json index 329fce056a776..dc49d23f16cb2 100644 --- a/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/info.json +++ b/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/info.json @@ -11,11 +11,14 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/ThunderProtocol" + "url": "https://twitter.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 index ad71507941e08..b176edcd95c9e 100644 Binary files a/blockchains/thundertoken/assets/0x18fB0A62f207A2a082cA60aA78F47a1af4985190/logo.png 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 index efc2d47f6f84c..7ee3f85bb9ba3 100644 --- a/blockchains/thundertoken/assets/0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e/info.json +++ b/blockchains/thundertoken/assets/0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e/info.json @@ -11,11 +11,14 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/ThunderProtocol" + "url": "https://twitter.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 index 34f7f037b80ba..a921e410267e7 100644 Binary files a/blockchains/thundertoken/assets/0x22e89898A04eaf43379BeB70bf4E38b1faf8A31e/logo.png 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 index 303d53cc1e7bb..f3b1bac3921b7 100644 --- a/blockchains/thundertoken/assets/0x2b31e3b88847f03c1335E99A0d1274A2c72059DE/info.json +++ b/blockchains/thundertoken/assets/0x2b31e3b88847f03c1335E99A0d1274A2c72059DE/info.json @@ -4,14 +4,14 @@ "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-DAI", + "symbol": "TT-SAI", "decimals": 18, "status": "active", "id": "0x2b31e3b88847f03c1335E99A0d1274A2c72059DE", "links": [ { "name": "twitter", - "url": "https://twitter.com/ThunderProtocol" + "url": "https://twitter.com/ThunderCoreLab" }, { "name": "discord", diff --git a/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/info.json b/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/info.json index 7732ac9e58171..c0537d1d0a97f 100644 --- a/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/info.json +++ b/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/info.json @@ -11,11 +11,14 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/ThunderProtocol" + "url": "https://twitter.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 index 2dd51a695d927..4381a61c9d9cf 100644 Binary files a/blockchains/thundertoken/assets/0x4f3C8E20942461e2c3Bdd8311AC57B0c222f2b82/logo.png 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 index 123567b225710..31135e85ba042 100644 --- a/blockchains/thundertoken/assets/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077/info.json +++ b/blockchains/thundertoken/assets/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077/info.json @@ -11,11 +11,14 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/ThunderProtocol" + "url": "https://twitter.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 index 1112d6c732b9a..12f97a570fbf0 100644 Binary files a/blockchains/thundertoken/assets/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077/logo.png and b/blockchains/thundertoken/assets/0x6576Bb918709906DcbFDCeae4bB1e6df7C8a1077/logo.png differ diff --git a/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/info.json b/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/info.json index e8855acabc959..868b99ddda016 100644 --- a/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/info.json +++ b/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/info.json @@ -11,11 +11,14 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/ThunderProtocol" + "url": "https://twitter.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 index a17554acaffad..173e21f0226f6 100644 Binary files a/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/logo.png and b/blockchains/thundertoken/assets/0x8EF1A1E0671Aa44852f4d87105eF482470bB3e69/logo.png differ diff --git a/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/info.json b/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/info.json index 238c23d1a5748..3f237990894fd 100644 --- a/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/info.json +++ b/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/info.json @@ -11,11 +11,14 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/ThunderProtocol" + "url": "https://twitter.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 index 929fbdc3f223f..f7f1d3b07465b 100644 Binary files a/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/logo.png and b/blockchains/thundertoken/assets/0xBEB0131D95AC3F03fd15894D0aDE5DBf7451d171/logo.png differ diff --git a/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/info.json b/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/info.json index 5b2c9bc466bdc..4fde767c264c5 100644 --- a/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/info.json +++ b/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/info.json @@ -11,11 +11,14 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/ThunderProtocol" + "url": "https://twitter.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 index 5c55ddf6c6e1b..934ae941a171a 100644 Binary files a/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/logo.png and b/blockchains/thundertoken/assets/0xFd6Ec3E37F112bD30BbD726E7b0E73000CC2B98d/logo.png differ diff --git a/blockchains/thundertoken/info/info.json b/blockchains/thundertoken/info/info.json index 2e55bf6485759..6a0cd7ce7a411 100644 --- a/blockchains/thundertoken/info/info.json +++ b/blockchains/thundertoken/info/info.json @@ -1,5 +1,5 @@ { - "name": "Thunder Token", + "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", @@ -15,7 +15,7 @@ }, { "name": "twitter", - "url": "https://twitter.com/ThunderProtocol" + "url": "https://twitter.com/ThunderCoreLab" }, { "name": "reddit", @@ -26,4 +26,4 @@ "url": "https://docs.thundercore.com/thunder-whitepaper.pdf" } ] -} \ No newline at end of file +} diff --git a/blockchains/thundertoken/info/logo.png b/blockchains/thundertoken/info/logo.png index e50f5c6ac60e8..c408c0f2a7f16 100644 Binary files a/blockchains/thundertoken/info/logo.png and b/blockchains/thundertoken/info/logo.png differ diff --git a/blockchains/tia/info/info.json b/blockchains/tia/info/info.json new file mode 100644 index 0000000000000..933091e0030fb --- /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": "twitter", + "url": "https://twitter.com/CelestiaOrg" + } + ] +} diff --git a/blockchains/tia/info/logo.png b/blockchains/tia/info/logo.png new file mode 100644 index 0000000000000..38a1dbc366c95 Binary files /dev/null and b/blockchains/tia/info/logo.png differ diff --git a/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/info.json b/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/info.json new file mode 100644 index 0000000000000..34006c5a75287 --- /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://scan.tomochain.com/address/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA", + "status": "active", + "id": "0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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" + ] +} diff --git a/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/logo.png b/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/logo.png new file mode 100644 index 0000000000000..004cabcc246fd Binary files /dev/null and b/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/logo.png differ diff --git a/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/info.json b/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/info.json new file mode 100644 index 0000000000000..819042695c3e7 --- /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://scan.tomochain.com/address/0x5080781e91237b6D7f026D5306b7233e26Cd6C16", + "status": "active", + "id": "0x5080781e91237b6D7f026D5306b7233e26Cd6C16", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MegaLTR" + }, + { + "name": "telegram", + "url": "https://t.me/megaltr_us" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/logo.png b/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/logo.png new file mode 100644 index 0000000000000..516ff8be7c197 Binary files /dev/null and b/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/logo.png differ diff --git a/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/info.json b/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/info.json new file mode 100644 index 0000000000000..d07a39e9f2508 --- /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://scan.tomochain.com/address/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532", + "status": "active", + "id": "0x567b1e373f7285e9a32f5eeB9305b6964B6a3532", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CommunityCFB" + }, + { + "name": "telegram", + "url": "https://t.me/CommunityCFB" + }, + { + "name": "whitepaper", + "url": "https://docs.google.com/document/d/1c_v7P5sHneSTP6pHUBsF_Es_IZgAxCTG/edit?usp=sharing" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/logo.png b/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/logo.png new file mode 100644 index 0000000000000..2a0fb19413dd0 Binary files /dev/null and b/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/logo.png differ diff --git a/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/info.json b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/info.json new file mode 100644 index 0000000000000..c9ce5091f788e --- /dev/null +++ b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO", + "name": "STON", + "type": "TON", + "symbol": "STON", + "decimals": 9, + "description": "STON is the utility token of the STON.fi DEX integrated into the core protocol mechanics. STON allows participation in protocol governance through long-term staking.", + "status": "active", + "explorer": "https://tonscan.org/address/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO", + "id": "EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO", + "website": "https://ston.fi/", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/logo.png b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/logo.png new file mode 100644 index 0000000000000..c9eb9c8508e67 Binary files /dev/null and b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/logo.png differ diff --git a/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/info.json b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/info.json new file mode 100644 index 0000000000000..8674cc72308ca --- /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": "TON", + "symbol": "oDAI", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR", + "id": "EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/logo.png b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/logo.png new file mode 100644 index 0000000000000..8471bd656dbc4 Binary files /dev/null and b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/logo.png differ diff --git a/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/info.json b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/info.json new file mode 100644 index 0000000000000..864ed7f308e42 --- /dev/null +++ b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn", + "name": "KISS Coin", + "type": "TON", + "symbol": "KISS", + "decimals": 9, + "description": "TON KISS project coin", + "status": "active", + "explorer": "https://tonscan.org/address/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn", + "id": "EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn", + "website": "https://t.me/KISS_Coin", + "links": [ + { + "name": "telegram", + "url": "https://t.me/KISSCoinChat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/logo.png b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/logo.png new file mode 100644 index 0000000000000..d6eeb355ceb80 Binary files /dev/null and b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/logo.png differ diff --git a/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/info.json b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/info.json new file mode 100644 index 0000000000000..bbde7d207707b --- /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": "TON", + "symbol": "oKSP", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L", + "id": "EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/logo.png b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/logo.png new file mode 100644 index 0000000000000..44986ce38ed77 Binary files /dev/null and b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/logo.png differ diff --git a/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/info.json b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/info.json new file mode 100644 index 0000000000000..2a3c5adc3e984 --- /dev/null +++ b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB", + "name": "Orbit Bridge Ton Wrapped BTC", + "type": "TON", + "symbol": "oWBTC", + "decimals": 8, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB", + "id": "EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/logo.png b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/logo.png new file mode 100644 index 0000000000000..ecda101d9220a Binary files /dev/null and b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/logo.png differ diff --git a/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/info.json b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/info.json new file mode 100644 index 0000000000000..b4bf0455c382f --- /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": "TON", + "symbol": "LOVE", + "decimals": 9, + "description": "The concept of the LOVE jetton is the Metaverse. Metaverse for virtual dating. Jetton based on the TON blockchain. Telegram channel - @loveholders, @loveholderschat, @loveholderseng, @loveengchat, loveholders.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR", + "id": "EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR", + "website": "https://loveholders.com/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/loveholderschat" + }, + { + "name": "telegram_news", + "url": "https://t.me/loveholderseng" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/logo.png b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/logo.png new file mode 100644 index 0000000000000..431a0c1e3dc90 Binary files /dev/null and b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/logo.png differ diff --git a/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/info.json b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/info.json new file mode 100644 index 0000000000000..2eab0179c4303 --- /dev/null +++ b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-", + "name": "Orbit Bridge Ton Ethereum", + "type": "TON", + "symbol": "oETH", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-", + "id": "EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/logo.png b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/logo.png new file mode 100644 index 0000000000000..c5cee244465c6 Binary files /dev/null and b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/logo.png differ diff --git a/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/info.json b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/info.json new file mode 100644 index 0000000000000..37a79e8bc068c --- /dev/null +++ b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs", + "name": "Stalin", + "type": "TON", + "symbol": "IVS", + "decimals": 9, + "description": "Look for Stalin inside yourself.", + "status": "active", + "explorer": "https://tonscan.org/address/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs", + "id": "EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs", + "website": "https://t.me/Stalin_IVS", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Stalin_chat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/logo.png b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/logo.png new file mode 100644 index 0000000000000..93f5bdd08f023 Binary files /dev/null and b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/logo.png differ diff --git a/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/info.json b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/info.json new file mode 100644 index 0000000000000..e9625f2155e8e --- /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": "TON", + "symbol": "oGXA", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad", + "id": "EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/logo.png b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/logo.png new file mode 100644 index 0000000000000..1fbb82754494a Binary files /dev/null and b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/logo.png differ diff --git a/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/info.json b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/info.json new file mode 100644 index 0000000000000..a8886ea6f77cd --- /dev/null +++ b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y", + "name": "Tegro", + "type": "TON", + "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": "twitter", + "url": "https://twitter.com/tgrtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/logo.png b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/logo.png new file mode 100644 index 0000000000000..27b09f47b50a6 Binary files /dev/null and b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/logo.png differ diff --git a/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/info.json b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/info.json new file mode 100644 index 0000000000000..14c488880d5eb --- /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": "TON", + "symbol": "TEC", + "decimals": 9, + "description": "Ton Earth universe coin on the Legendary Blockchain.", + "status": "active", + "explorer": "https://tonscan.org/address/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy", + "id": "EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy", + "website": "https://tonearth.com/" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/logo.png b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/logo.png new file mode 100644 index 0000000000000..a48bf77783d54 Binary files /dev/null and b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/logo.png differ diff --git a/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/info.json b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/info.json new file mode 100644 index 0000000000000..90bf2f74093c5 --- /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": "TON", + "symbol": "oORBS", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx", + "id": "EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/logo.png b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/logo.png new file mode 100644 index 0000000000000..80eb04ab97b76 Binary files /dev/null and b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/logo.png differ diff --git a/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/info.json b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/info.json new file mode 100644 index 0000000000000..3f056535bbf64 --- /dev/null +++ b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO", + "name": "ELKITON", + "type": "TON", + "symbol": "SNEG", + "decimals": 9, + "status": "active", + "description": "The ecosystem of the Christmas Tree", + "explorer": "https://tonscan.org/address/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO", + "id": "EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO", + "website": "https://getgems.io/collection/EQBlZxMOVRhZxqKYmjeaJALBjHGyMReU5L9xSFCB6BjnA_hM" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/logo.png b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/logo.png new file mode 100644 index 0000000000000..3d4f06ea31e3c Binary files /dev/null and b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/logo.png differ diff --git a/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/info.json b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/info.json new file mode 100644 index 0000000000000..eba0ef30859de --- /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": "TON", + "symbol": "jUSDC", + "decimals": 6, + "description": "USDC transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "status": "active", + "explorer": "https://tonscan.org/address/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728", + "id": "EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728", + "website": "https://bridge.ton.org/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/logo.png b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/logo.png new file mode 100644 index 0000000000000..daa81b4a3a3cf Binary files /dev/null and b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/logo.png differ diff --git a/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/info.json b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/info.json new file mode 100644 index 0000000000000..427c080c0891e --- /dev/null +++ b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp", + "name": "TonexCoin", + "type": "TON", + "symbol": "TNX", + "decimals": 9, + "description": "A tool to create the future", + "status": "active", + "explorer": "https://tonscan.org/address/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp", + "id": "EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp", + "website": "https://tonex.app/" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/logo.png b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/logo.png new file mode 100644 index 0000000000000..440231cc26ccf Binary files /dev/null and b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/logo.png differ diff --git a/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/info.json b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/info.json new file mode 100644 index 0000000000000..b9ec1eba0ca1c --- /dev/null +++ b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr", + "name": "FANTIK", + "type": "TON", + "symbol": "FANT", + "decimals": 9, + "description": "The candy wrapper", + "status": "active", + "explorer": "https://tonscan.org/address/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr", + "id": "EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr", + "website": "https://olbanec.shop", + "links": [ + { + "name": "telegram", + "url": "https://t.me/olbania_memeland" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/logo.png b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/logo.png new file mode 100644 index 0000000000000..13940d49f4a17 Binary files /dev/null and b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/logo.png differ diff --git a/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/info.json b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/info.json new file mode 100644 index 0000000000000..67e9ac5e4b6d2 --- /dev/null +++ b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B", + "name": "DHD Coin", + "type": "TON", + "symbol": "DHD", + "decimals": 9, + "description": "Low fee dick-to-dick electronic cash alternative to Toncoin", + "status": "active", + "explorer": "https://tonscan.org/address/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B", + "id": "EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B", + "website": "http://www.dhdgame.ru/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WayofDHD" + }, + { + "name": "telegram_news", + "url": "https://t.me/CoinDHD" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/logo.png b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/logo.png new file mode 100644 index 0000000000000..d40a01d666b81 Binary files /dev/null and b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/logo.png differ diff --git a/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/info.json b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/info.json new file mode 100644 index 0000000000000..beed98f3fa8f0 --- /dev/null +++ b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu", + "name": "Orbit Bridge Ton MOOI", + "type": "TON", + "symbol": "oMOOI", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu", + "id": "EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/logo.png b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/logo.png new file mode 100644 index 0000000000000..0e377dafdec0e Binary files /dev/null and b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/logo.png differ diff --git a/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/info.json b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/info.json new file mode 100644 index 0000000000000..f29e1f86d8edd --- /dev/null +++ b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc", + "name": "Orbit Bridge Ton GemHUB", + "type": "TON", + "symbol": "oGHUB", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc", + "id": "EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/logo.png b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/logo.png new file mode 100644 index 0000000000000..fbf97a9b6100a Binary files /dev/null and b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/logo.png differ diff --git a/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/info.json b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/info.json new file mode 100644 index 0000000000000..21f6dfb710805 --- /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": "TON", + "symbol": "KAI", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP", + "id": "EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/logo.png b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/logo.png new file mode 100644 index 0000000000000..f8cda8555b24d Binary files /dev/null and b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/logo.png differ diff --git a/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/info.json b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/info.json new file mode 100644 index 0000000000000..d37d6c946ee0d --- /dev/null +++ b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u", + "name": "FRAGMENT", + "type": "TON", + "symbol": "FRG", + "decimals": 9, + "description": "This token gives you the opportunity to be a member of Fragment Chat! @fragmentChat (https://t.me/fragmentChat)", + "status": "active", + "explorer": "https://tonscan.org/address/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u", + "id": "EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u", + "website": "https://ton.app/chats/frgchat", + "links": [ + { + "name": "telegram", + "url": "https://t.me/fragmentChat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/logo.png b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/logo.png new file mode 100644 index 0000000000000..8bab713c9a029 Binary files /dev/null and b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/logo.png differ diff --git a/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/info.json b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/info.json new file mode 100644 index 0000000000000..6b63a2d53ecf7 --- /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": "TON", + "symbol": "MEGA", + "decimals": 9, + "description": "Megaton Finance Token", + "status": "active", + "explorer": "https://tonscan.org/address/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf", + "id": "EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf", + "website": "https://megaton.fi/", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/logo.png b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/logo.png new file mode 100644 index 0000000000000..3cf611283b0c1 Binary files /dev/null and b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/logo.png differ diff --git a/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/info.json b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/info.json new file mode 100644 index 0000000000000..c410b292d4c88 --- /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": "TON", + "symbol": "HEDGE", + "decimals": 9, + "description": "The spirit of wall-street hedgehogs on a legendary blockchain", + "status": "active", + "explorer": "https://tonscan.org/address/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE", + "id": "EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE", + "website": "https://t.me/tonhedgecoin" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/logo.png b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/logo.png new file mode 100644 index 0000000000000..a0ebb65efe146 Binary files /dev/null and b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/logo.png differ diff --git a/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/info.json b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/info.json new file mode 100644 index 0000000000000..90e0efaf9c836 --- /dev/null +++ b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA", + "name": "Grabscape game token", + "type": "TON", + "symbol": "GRBS", + "decimals": 9, + "description": "The token was created for the game mechanics of the universe of the web3 Grabscape project", + "status": "active", + "explorer": "https://tonscan.org/address/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA", + "id": "EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA", + "website": "https://grabscape.io/" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/logo.png b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/logo.png new file mode 100644 index 0000000000000..962ff40608b1f Binary files /dev/null and b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/logo.png differ diff --git a/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/info.json b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/info.json new file mode 100644 index 0000000000000..2b432fd62b978 --- /dev/null +++ b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9", + "name": "Orbit Bridge Ton apM Coin", + "type": "TON", + "symbol": "oAPM", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9", + "id": "EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/logo.png b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/logo.png new file mode 100644 index 0000000000000..2c922532532fc Binary files /dev/null and b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/logo.png differ diff --git a/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/info.json b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/info.json new file mode 100644 index 0000000000000..003b6957a07c2 --- /dev/null +++ b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/info.json @@ -0,0 +1,26 @@ +{ + "address": "EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI", + "name": "Lavandos", + "type": "TON", + "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://t.me/lavetoken", + "links": [ + { + "name": "telegram", + "url": "https://t.me/laveteam" + }, + { + "name": "telegram_news", + "url": "https://t.me/lavefoundation" + }, + { + "name": "twitter", + "url": "https://twitter.com/lave_token" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/logo.png b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/logo.png new file mode 100644 index 0000000000000..7ae24f3f879d7 Binary files /dev/null and b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/logo.png differ diff --git a/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/info.json b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/info.json new file mode 100644 index 0000000000000..b785402df4069 --- /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": "TON", + "symbol": "KOTE", + "decimals": 9, + "description": "Kote Coin. It's the only one.", + "status": "active", + "explorer": "https://tonscan.org/address/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj", + "id": "EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj", + "website": "https://kotecoin.com/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/KoteCoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/KoteCoinRU" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/logo.png b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/logo.png new file mode 100644 index 0000000000000..d7f49e3ceb096 Binary files /dev/null and b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/logo.png differ diff --git a/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/info.json b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/info.json new file mode 100644 index 0000000000000..194ea6e736dec --- /dev/null +++ b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/info.json @@ -0,0 +1,29 @@ +{ + "address": "EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE", + "name": "Scaleton", + "type": "TON", + "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": "twitter", + "url": "https://twitter.com/ScaletonCo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/scaleton/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/logo.png b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/logo.png new file mode 100644 index 0000000000000..31e775994454a Binary files /dev/null and b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/logo.png differ diff --git a/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/info.json b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/info.json new file mode 100644 index 0000000000000..3334829e23f2b --- /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": "TON", + "symbol": "oMATIC", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX", + "id": "EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/logo.png b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/logo.png new file mode 100644 index 0000000000000..40cdc6a041b14 Binary files /dev/null and b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/logo.png differ diff --git a/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/info.json b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/info.json new file mode 100644 index 0000000000000..9c7d0383a8b54 --- /dev/null +++ b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J", + "name": "Wallet Exchanger", + "type": "TON", + "symbol": "WEX", + "decimals": 9, + "description": "Crypto exchanger token Wallet Exchanger, based on the blockchain The Open Network", + "status": "active", + "explorer": "https://tonscan.org/address/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J", + "id": "EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J", + "website": "https://t.me/WalletExplorerBot", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WalletExplorerNews" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/logo.png b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/logo.png new file mode 100644 index 0000000000000..2530203d0ec90 Binary files /dev/null and b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/logo.png differ diff --git a/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/info.json b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/info.json new file mode 100644 index 0000000000000..29ef43d750f91 --- /dev/null +++ b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA", + "name": "jUSDT", + "type": "TON", + "symbol": "jUSDT", + "decimals": 6, + "description": "USDT transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0xdAC17F958D2ee523a2206206994597C13D831ec7", + "status": "active", + "explorer": "https://tonscan.org/address/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA", + "id": "EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA", + "website": "https://bridge.ton.org/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/logo.png b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/logo.png new file mode 100644 index 0000000000000..d527902c3f229 Binary files /dev/null and b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/logo.png differ diff --git a/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/info.json b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/info.json new file mode 100644 index 0000000000000..507c52e37e7fe --- /dev/null +++ b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/info.json @@ -0,0 +1,30 @@ +{ + "address": "EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ", + "name": "KINGYTON", + "type": "TON", + "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": "twitter", + "url": "https://twitter.com/IKingyru" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/logo.png b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/logo.png new file mode 100644 index 0000000000000..439a80819c15e Binary files /dev/null and b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/logo.png differ diff --git a/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/info.json b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/info.json new file mode 100644 index 0000000000000..054d1575695f7 --- /dev/null +++ b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY", + "name": "ExCoin", + "type": "TON", + "symbol": "EXC", + "decimals": 0, + "description": "EXC is a financial service token in EXTON", + "status": "active", + "explorer": "https://tonscan.org/address/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY", + "id": "EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY", + "website": "https://t.me/exc_coin", + "links": [ + { + "name": "telegram", + "url": "https://t.me/EXTON_SWAP_BOT" + }, + { + "name": "telegram_news", + "url": "https://t.me/yakovlev_serj" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/logo.png b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/logo.png new file mode 100644 index 0000000000000..1dd358e16a027 Binary files /dev/null and b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/logo.png differ diff --git a/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/info.json b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/info.json new file mode 100644 index 0000000000000..69a68a4ab448e --- /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": "TON", + "symbol": "oUSDC", + "decimals": 6, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4", + "id": "EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/logo.png b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/logo.png new file mode 100644 index 0000000000000..956f9aa7a68af Binary files /dev/null and b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/logo.png differ diff --git a/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/info.json b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/info.json new file mode 100644 index 0000000000000..6cc8895b727d0 --- /dev/null +++ b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC", + "name": "Tenere", + "type": "TON", + "symbol": "Tnr", + "decimals": 9, + "description": "Audiatur et altera pars. Universal Altcoin on Ton. @teneretoken . chat: @tenerechat", + "status": "active", + "explorer": "https://tonscan.org/address/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC", + "id": "EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC", + "website": "https://t.me/teneretoken", + "links": [ + { + "name": "telegram", + "url": "https://t.me/tenerechat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/logo.png b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/logo.png new file mode 100644 index 0000000000000..462c3ec6762b1 Binary files /dev/null and b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/logo.png differ diff --git a/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/info.json b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/info.json new file mode 100644 index 0000000000000..4724fdfcbbfc1 --- /dev/null +++ b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz", + "name": "Find & Check", + "type": "TON", + "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": "twitter", + "url": "https://twitter.com/FCKFoundation" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/logo.png b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/logo.png new file mode 100644 index 0000000000000..52234341752cd Binary files /dev/null and b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/logo.png differ diff --git a/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/info.json b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/info.json new file mode 100644 index 0000000000000..f125d98d723fc --- /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": "TON", + "symbol": "MARS", + "decimals": 9, + "description": "Mars Coin. Game TONPlanets.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw", + "id": "EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw", + "website": "https://tonplanets.com", + "links": [ + { + "name": "telegram", + "url": "https://t.me/TONPlanets" + }, + { + "name": "telegram_news", + "url": "https://t.me/TONPlanetsBot" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/logo.png b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/logo.png new file mode 100644 index 0000000000000..e967fb23f1126 Binary files /dev/null and b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/logo.png differ diff --git a/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/info.json b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/info.json new file mode 100644 index 0000000000000..5cf7e1af9f0f3 --- /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": "TON", + "symbol": "oUSDT", + "decimals": 6, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi", + "id": "EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/logo.png b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/logo.png new file mode 100644 index 0000000000000..bb55902a38de0 Binary files /dev/null and b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/logo.png differ diff --git a/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/info.json b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/info.json new file mode 100644 index 0000000000000..030887cdb14f7 --- /dev/null +++ b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C", + "name": "Wrapped TON", + "type": "TON", + "symbol": "WTON", + "decimals": 9, + "description": "Wrapped TON Coin", + "status": "active", + "explorer": "https://tonscan.org/address/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C", + "id": "EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C", + "website": "https://megaton.fi/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/logo.png b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/logo.png new file mode 100644 index 0000000000000..f70cefde9e2c8 Binary files /dev/null and b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/logo.png differ diff --git a/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/info.json b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/info.json new file mode 100644 index 0000000000000..f7b9a26077977 --- /dev/null +++ b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV", + "name": "Ambra", + "type": "TON", + "symbol": "AMBR", + "decimals": 9, + "description": "The Whales Club Token", + "status": "active", + "explorer": "https://tonscan.org/address/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV", + "id": "EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV", + "website": "https://tonwhales.com/", + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/logo.png b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/logo.png new file mode 100644 index 0000000000000..176ee6a51b7d3 Binary files /dev/null and b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/logo.png differ diff --git a/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/info.json b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/info.json new file mode 100644 index 0000000000000..4ba4611921f3d --- /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": "TON", + "symbol": "oMESH", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5", + "id": "EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/logo.png b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/logo.png new file mode 100644 index 0000000000000..38699eab45211 Binary files /dev/null and b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/logo.png differ diff --git a/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/info.json b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/info.json new file mode 100644 index 0000000000000..f3cc0d96323a8 --- /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": "TON", + "symbol": "oWEMIX", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ", + "id": "EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/logo.png b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/logo.png new file mode 100644 index 0000000000000..b076f9345038c Binary files /dev/null and b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/logo.png differ diff --git a/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/info.json b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/info.json new file mode 100644 index 0000000000000..43ef2ed98ccdd --- /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": "TON", + "symbol": "CFT", + "decimals": 9, + "description": "Cock Fights Game Token", + "status": "active", + "explorer": "https://tonscan.org/address/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP", + "id": "EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/logo.png b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/logo.png new file mode 100644 index 0000000000000..b06b455fcc7e9 Binary files /dev/null and b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/logo.png differ diff --git a/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/info.json b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/info.json new file mode 100644 index 0000000000000..05983fec4f570 --- /dev/null +++ b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR", + "name": "Orbit Bridge Ton Azit", + "type": "TON", + "symbol": "oAZIT", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR", + "id": "EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/logo.png b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/logo.png new file mode 100644 index 0000000000000..84ee028f1ae56 Binary files /dev/null and b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/logo.png differ diff --git a/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/info.json b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/info.json new file mode 100644 index 0000000000000..12ba55af51175 --- /dev/null +++ b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI", + "name": "Crumb Coin", + "type": "TON", + "symbol": "CRUMB", + "decimals": 9, + "description": "Crumb Coin (CRUMB) is a token used in the BRAD x Totkit ecosystem", + "status": "active", + "explorer": "https://tonscan.org/address/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI", + "id": "EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI", + "website": "https://tonbrad.com", + "links": [ + { + "name": "telegram", + "url": "https://t.me/brad_nft_ton" + }, + { + "name": "telegram_news", + "url": "https://t.me/totkitnews" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/logo.png b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/logo.png new file mode 100644 index 0000000000000..f16bd0ec5cc82 Binary files /dev/null and b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/logo.png differ diff --git a/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/info.json b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/info.json new file mode 100644 index 0000000000000..5740fcc3c46f6 --- /dev/null +++ b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/info.json @@ -0,0 +1,21 @@ +{ + "address": "EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw", + "name": "Huebel Bolt", + "type": "TON", + "symbol": "BOLT", + "decimals": 9, + "description": "Official token of the Huebel Company", + "status": "active", + "explorer": "https://tonscan.org/address/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw", + "id": "EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw", + "website": "https://huebel.art/", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/huebel-bolt/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/logo.png b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/logo.png new file mode 100644 index 0000000000000..a0fe8fe2c7a1e Binary files /dev/null and b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/logo.png differ diff --git a/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/info.json b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/info.json new file mode 100644 index 0000000000000..a64cf6ddddc02 --- /dev/null +++ b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl", + "name": "Pioneer", + "type": "TON", + "symbol": "PIO", + "decimals": 9, + "description": "This jetton was given to the first people who arrived on Mars. Game TONPlanets.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl", + "id": "EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl", + "website": "https://tonplanets.com", + "links": [ + { + "name": "telegram", + "url": "https://t.me/TONPlanets" + }, + { + "name": "telegram_news", + "url": "https://t.me/TONPlanetsBot" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/logo.png b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/logo.png new file mode 100644 index 0000000000000..e18260b4afd1b Binary files /dev/null and b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/logo.png differ diff --git a/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/info.json b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/info.json new file mode 100644 index 0000000000000..37c4f16b6af78 --- /dev/null +++ b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh", + "name": "Orbit Bridge Ton Klaymeta Token", + "type": "TON", + "symbol": "META", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh", + "id": "EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/logo.png b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/logo.png new file mode 100644 index 0000000000000..e9a5e0b992565 Binary files /dev/null and b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/logo.png differ diff --git a/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/info.json b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/info.json new file mode 100644 index 0000000000000..9c936b82bc402 --- /dev/null +++ b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo", + "name": "Red Coin", + "type": "TON", + "symbol": "REDC", + "decimals": 9, + "description": "Red company Coin on the Legendary Blockchain.", + "status": "active", + "explorer": "https://tonscan.org/address/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo", + "id": "EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo", + "website": "https://redcompany.team/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/RedList_NFT" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/logo.png b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/logo.png new file mode 100644 index 0000000000000..9b526ddf9b304 Binary files /dev/null and b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/logo.png differ diff --git a/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/info.json b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/info.json new file mode 100644 index 0000000000000..3b29d5c9cbc44 --- /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": "TON", + "symbol": "oORC", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD", + "id": "EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/logo.png b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/logo.png new file mode 100644 index 0000000000000..55050504d6b5e Binary files /dev/null and b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/logo.png differ diff --git a/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/info.json b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/info.json new file mode 100644 index 0000000000000..06572b93f0c34 --- /dev/null +++ b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86", + "name": "Fanzee Token", + "type": "TON", + "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": "twitter", + "url": "https://twitter.com/fanzeelabs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/logo.png b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/logo.png new file mode 100644 index 0000000000000..ba207f79bf5b5 Binary files /dev/null and b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/logo.png differ diff --git a/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/info.json b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/info.json new file mode 100644 index 0000000000000..608949465fa34 --- /dev/null +++ b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/info.json @@ -0,0 +1,11 @@ +{ + "address": "EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv", + "name": "Pterodactyls", + "type": "TON", + "symbol": "PTERO", + "decimals": 9, + "description": "The best pterodactyls on the TON network", + "status": "active", + "explorer": "https://tonscan.org/address/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv", + "id": "EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/logo.png b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/logo.png new file mode 100644 index 0000000000000..1e8911af2fdc9 Binary files /dev/null and b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/logo.png differ diff --git a/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/info.json b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/info.json new file mode 100644 index 0000000000000..09a066fd09dd8 --- /dev/null +++ b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR", + "name": "Orbit Bridge Ton Klay", + "type": "TON", + "symbol": "oKLAY", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR", + "id": "EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/logo.png b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/logo.png new file mode 100644 index 0000000000000..4ec6c0bb9b931 Binary files /dev/null and b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/logo.png differ diff --git a/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/info.json b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/info.json new file mode 100644 index 0000000000000..a858106e105f3 --- /dev/null +++ b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5", + "name": "jWBTC", + "type": "TON", + "symbol": "jWBTC", + "decimals": 8, + "description": "WBTC transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599.", + "status": "active", + "explorer": "https://tonscan.org/address/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5", + "id": "EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5", + "website": "https://bridge.ton.org/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/logo.png b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/logo.png new file mode 100644 index 0000000000000..76b1167d5f198 Binary files /dev/null and b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/logo.png differ diff --git a/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/info.json b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/info.json new file mode 100644 index 0000000000000..220c395380674 --- /dev/null +++ b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B", + "name": "jDAI", + "type": "TON", + "symbol": "jDAI", + "decimals": 18, + "description": "DAI transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0x6B175474E89094C44Da98b954EedeAC495271d0F", + "status": "active", + "explorer": "https://tonscan.org/address/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B", + "id": "EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B", + "website": "https://bridge.ton.org/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/logo.png b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/logo.png new file mode 100644 index 0000000000000..979613ab41647 Binary files /dev/null and b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/logo.png differ diff --git a/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/info.json b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/info.json new file mode 100644 index 0000000000000..532f80cb65711 --- /dev/null +++ b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/info.json @@ -0,0 +1,11 @@ +{ + "address": "EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a", + "name": "Siberian TON", + "type": "TON", + "symbol": "SIBT", + "decimals": 9, + "description": "Private peer to peer jetton", + "status": "active", + "explorer": "https://tonscan.org/address/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a", + "id": "EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/logo.png b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/logo.png new file mode 100644 index 0000000000000..f4dc20489149a Binary files /dev/null and b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/logo.png differ diff --git a/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/info.json b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/info.json new file mode 100644 index 0000000000000..d89108c8bf12d --- /dev/null +++ b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX", + "name": "Orbit Bridge Ton WEMIX$", + "type": "TON", + "symbol": "oWEMIX$", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX", + "id": "EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/logo.png b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/logo.png new file mode 100644 index 0000000000000..b81c0324f9157 Binary files /dev/null and b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/logo.png differ diff --git a/blockchains/ton/info/info.json b/blockchains/ton/info/info.json index b08d33625ef8e..82a1c1ae03d31 100644 --- a/blockchains/ton/info/info.json +++ b/blockchains/ton/info/info.json @@ -1,20 +1,48 @@ { - "name": "Telegram Open Network", - "website": "https://telegram.org/", - "description": "The Telegram Open Network (TON) describes itself as a fast, secure and scalable blockchain and network project, reportedly capable of handling millions of transactions per second.", - "explorer": "https://test.ton.org/testnet/", - "symbol": "GRAM", + "name": "The Open Network", + "website": "https://ton.org", + "description": "The Open Network is a blockchain-based decentralized computer network. TON is designed to enable processing millions of transactions per second via infinite sharding paradigm. It allows building Web 3.0 empowered by decentralized storage and DNS, instant payments and decentralized services.", + "explorer": "https://tonscan.org/", + "symbol": "TON", "type": "coin", "decimals": 9, - "status": "abandoned", + "status": "active", "links": [ { "name": "github", - "url": "https://github.com/ton-blockchain/ton" + "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://test.ton.org/ton.pdf" + "url": "https://ton.org/whitepaper.pdf" + }, + { + "name": "twitter", + "url": "https://twitter.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 index a8ddc2bdfa343..0e6ebc02e7960 100644 Binary files a/blockchains/ton/info/logo.png and b/blockchains/ton/info/logo.png differ diff --git a/blockchains/tron/assets/TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9/info.json b/blockchains/tron/assets/TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9/info.json new file mode 100644 index 0000000000000..241670bcd41e4 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..e5d363edbb6bd Binary files /dev/null and b/blockchains/tron/assets/TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9/logo.png differ diff --git a/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png b/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png index 3146ee52ebbb3..b6f150d8a7d46 100644 Binary files a/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png and b/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png differ diff --git a/blockchains/tron/assets/TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4/info.json b/blockchains/tron/assets/TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4/info.json new file mode 100644 index 0000000000000..75dcf22c1c12c --- /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": "twitter", + "url": "https://twitter.com/remitt_bot" + }, + { + "name": "facebook", + "url": "https://facebook.com/Remitt-104461518999781" + }, + { + "name": "whitepaper", + "url": "https://remitt.ai" + } + ] +} diff --git a/blockchains/tron/assets/TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4/logo.png b/blockchains/tron/assets/TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4/logo.png new file mode 100644 index 0000000000000..7e26b56d837f0 Binary files /dev/null and b/blockchains/tron/assets/TFFxGGpVqxCDvo6upD3od5dFNtiRMv4Hc4/logo.png differ diff --git a/blockchains/tron/assets/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC/info.json b/blockchains/tron/assets/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC/info.json index 676d0a3bf6b49..94afcecde7857 100644 --- a/blockchains/tron/assets/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC/info.json +++ b/blockchains/tron/assets/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC/info.json @@ -6,7 +6,7 @@ "description": "First Ever Public Oracle System on TRON Network", "explorer": "https://tronscan.io/#/token20/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC", "type": "TRC20", - "status": "active", + "status": "abandoned", "id": "TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC", "links": [ { diff --git a/blockchains/tron/assets/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC/logo.png b/blockchains/tron/assets/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC/logo.png deleted file mode 100644 index 8639230bb223f..0000000000000 Binary files a/blockchains/tron/assets/TJvqNiWUN2v2NBG12UhfV7WSvReJkRP3VC/logo.png and /dev/null differ diff --git a/blockchains/tron/assets/TLLo3PU91yKPbwvSbuawvWKCzNX2JHYEE2/info.json b/blockchains/tron/assets/TLLo3PU91yKPbwvSbuawvWKCzNX2JHYEE2/info.json index b465f13b84815..f3fff4f9ddf90 100644 --- a/blockchains/tron/assets/TLLo3PU91yKPbwvSbuawvWKCzNX2JHYEE2/info.json +++ b/blockchains/tron/assets/TLLo3PU91yKPbwvSbuawvWKCzNX2JHYEE2/info.json @@ -6,6 +6,6 @@ "type": "TRC20", "symbol": "PAYN", "decimals": 8, - "status": "active", + "status": "abandoned", "id": "TLLo3PU91yKPbwvSbuawvWKCzNX2JHYEE2" } \ No newline at end of file diff --git a/blockchains/tron/assets/TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL/info.json b/blockchains/tron/assets/TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL/info.json index 9ff4da66be081..49d677773d5e3 100644 --- a/blockchains/tron/assets/TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL/info.json +++ b/blockchains/tron/assets/TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL/info.json @@ -6,6 +6,6 @@ "website": "https://zedxion.io/", "description": "Zedxion offers a comprehensive solution to the major problems faced by the traditional, fiat-driven monetary system. Building a crypto powered ecosystem comprising Zedxion Token.", "explorer": "https://tronscan.io/#/token20/TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL", - "status": "active", + "status": "abandoned", "id": "TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL" } \ No newline at end of file diff --git a/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/info.json b/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/info.json new file mode 100644 index 0000000000000..3385170144bdb --- /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": "twitter", + "url": "https://twitter.com/binance" + }, + { + "name": "telegram", + "url": "https://t.me/binanceexchange" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/logo.png b/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/logo.png new file mode 100644 index 0000000000000..5c7d8e7811cc9 Binary files /dev/null and b/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/logo.png differ diff --git a/blockchains/tron/assets/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn/info.json b/blockchains/tron/assets/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn/info.json new file mode 100644 index 0000000000000..201645df022f8 --- /dev/null +++ b/blockchains/tron/assets/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn/info.json @@ -0,0 +1,24 @@ +{ + "name": "Decentralized USD", + "symbol": "USDD", + "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": "twitter", + "url": "https://twitter.com/usddio" + }, + { + "name": "whitepaper", + "url": "https://usdd.io/USDD-en.pdf" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/tron/assets/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn/logo.png b/blockchains/tron/assets/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn/logo.png new file mode 100644 index 0000000000000..b17bf63fd3273 Binary files /dev/null and b/blockchains/tron/assets/TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn/logo.png differ diff --git a/blockchains/tron/assets/TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH/info.json b/blockchains/tron/assets/TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH/info.json new file mode 100644 index 0000000000000..431cabfd7ae73 --- /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": "twitter", + "url": "https://twitter.com/paynetcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/paynet-coin/" + }, + { + "name": "telegram", + "url": "https://t.me/PaynetcoinEN" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/tron/assets/TLLo3PU91yKPbwvSbuawvWKCzNX2JHYEE2/logo.png b/blockchains/tron/assets/TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH/logo.png similarity index 100% rename from blockchains/tron/assets/TLLo3PU91yKPbwvSbuawvWKCzNX2JHYEE2/logo.png rename to blockchains/tron/assets/TQYuR8FpmhMJK3ZpfoTgERjaZRywqMnFAH/logo.png diff --git a/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/info.json b/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/info.json new file mode 100644 index 0000000000000..8f5b3bf822bc1 --- /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": "twitter", + "url": "https://twitter.com/ZedxionC" + }, + { + "name": "telegram", + "url": "https://t.me/zedxion" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL/logo.png b/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/logo.png similarity index 100% rename from blockchains/tron/assets/TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL/logo.png rename to blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/logo.png diff --git a/blockchains/tron/tokenlist.json b/blockchains/tron/tokenlist.json new file mode 100644 index 0000000000000..39519f369a70a --- /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/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png b/blockchains/tron/validators/assets/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/tron/validators/assets/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png differ diff --git a/blockchains/tron/validators/assets/TMAqheVWMaNm15UJTNgasEVpJ7YHYiZVZ8/logo.png b/blockchains/tron/validators/assets/TMAqheVWMaNm15UJTNgasEVpJ7YHYiZVZ8/logo.png new file mode 100644 index 0000000000000..2bd3a1e2d4571 Binary files /dev/null and b/blockchains/tron/validators/assets/TMAqheVWMaNm15UJTNgasEVpJ7YHYiZVZ8/logo.png differ diff --git a/blockchains/tron/validators/list.json b/blockchains/tron/validators/list.json index 068fe0f69e599..ba10a31aaa24f 100644 --- a/blockchains/tron/validators/list.json +++ b/blockchains/tron/validators/list.json @@ -1,4 +1,13 @@ [ + { + "id": "TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com", + "payout": { + "commission": 100 + } + }, { "id": "TLyqzVGLV1srkB7dToTAEqgDSfPtXRJZYH", "name": "Binance", @@ -88,5 +97,14 @@ "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 0000000000000..49936c48bfa65 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..654575bd34eff Binary files /dev/null and b/blockchains/umee/info/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj/logo.png b/blockchains/umee/validators/assets/umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de/logo.png b/blockchains/umee/validators/assets/umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de/logo.png new file mode 100644 index 0000000000000..84f50066eb01e Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1cv2qlz78j5d8fs75lxnystu2lsprvt64yrgfap/logo.png b/blockchains/umee/validators/assets/umeevaloper1cv2qlz78j5d8fs75lxnystu2lsprvt64yrgfap/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1cv2qlz78j5d8fs75lxnystu2lsprvt64yrgfap/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf/logo.png b/blockchains/umee/validators/assets/umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0/logo.png b/blockchains/umee/validators/assets/umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0/logo.png new file mode 100644 index 0000000000000..f8a4c666adc9c Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj/logo.png b/blockchains/umee/validators/assets/umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj/logo.png new file mode 100644 index 0000000000000..6e18b1ce29080 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf/logo.png b/blockchains/umee/validators/assets/umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2/logo.png b/blockchains/umee/validators/assets/umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2/logo.png differ diff --git a/blockchains/umee/validators/list.json b/blockchains/umee/validators/list.json new file mode 100644 index 0000000000000..04ba09fb81018 --- /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": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "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 index efb7b8a50fd76..cbd434dcb7ebc 100644 --- a/blockchains/vechain/assets/0x0000000000000000000000000000456E65726779/info.json +++ b/blockchains/vechain/assets/0x0000000000000000000000000000456E65726779/info.json @@ -4,9 +4,9 @@ "symbol": "VeThor", "decimals": 18, "website": "https://vechain.org", - "description": "VeThor (VTHO) is the secondary token of the VeChainThor ecosystem and functions as the gas for transactions.", + "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" -} \ 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 0000000000000..e2dfaa142d02a --- /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": "twitter", + "url": "https://twitter.com/vergecurrency" + } + ] +} \ No newline at end of file diff --git a/blockchains/verge/info/logo.png b/blockchains/verge/info/logo.png new file mode 100644 index 0000000000000..a04d4f18b4fc9 Binary files /dev/null and b/blockchains/verge/info/logo.png differ diff --git a/blockchains/xdai/tokenlist-extended.json b/blockchains/xdai/tokenlist-extended.json new file mode 100644 index 0000000000000..8d6ad05b5ddef --- /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 0000000000000..b16b2a05115c4 --- /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/zen/info/info.json b/blockchains/zen/info/info.json new file mode 100644 index 0000000000000..61bdc1d9c5c75 --- /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": "twitter", + "url": "https://twitter.com/horizenglobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/zen/info/logo.png b/blockchains/zen/info/logo.png new file mode 100644 index 0000000000000..a4f16a6809b47 Binary files /dev/null and b/blockchains/zen/info/logo.png differ diff --git a/blockchains/zksync/assets/0x0000000000000000000000000000000000000000/info.json b/blockchains/zksync/assets/0x0000000000000000000000000000000000000000/info.json new file mode 100644 index 0000000000000..0e8ec298d6c16 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..c8c11d1013ebb Binary files /dev/null and b/blockchains/zksync/assets/0x0000000000000000000000000000000000000000/logo.png differ diff --git a/blockchains/zksync/assets/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/info.json b/blockchains/zksync/assets/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/info.json new file mode 100644 index 0000000000000..2da02401beaee --- /dev/null +++ b/blockchains/zksync/assets/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/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/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4", + "status": "active", + "id": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4", + "links": [ + { + "name": "twitter", + "url": "https://twitter.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 0000000000000..e163b59d2da6e Binary files /dev/null and b/blockchains/zksync/assets/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/logo.png differ diff --git a/blockchains/zksync/assets/0xdd9f72afED3631a6C85b5369D84875e6c42f1827/info.json b/blockchains/zksync/assets/0xdd9f72afED3631a6C85b5369D84875e6c42f1827/info.json new file mode 100644 index 0000000000000..14f839edb03d6 --- /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": "twitter", + "url": "https://twitter.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 0000000000000..26f3dbd585377 Binary files /dev/null and b/blockchains/zksync/assets/0xdd9f72afED3631a6C85b5369D84875e6c42f1827/logo.png differ diff --git a/blockchains/zksync/info/info.json b/blockchains/zksync/info/info.json new file mode 100644 index 0000000000000..a0f3cfe5870e9 --- /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": "twitter", + "url": "https://twitter.com/zksync" + } + ] +} diff --git a/blockchains/zksync/info/logo.png b/blockchains/zksync/info/logo.png new file mode 100644 index 0000000000000..aae19b2c9ef9a Binary files /dev/null and b/blockchains/zksync/info/logo.png differ diff --git a/dapps/aircash.finance.png b/dapps/aircash.finance.png new file mode 100644 index 0000000000000..fec2544a35d11 Binary files /dev/null and b/dapps/aircash.finance.png differ diff --git a/dapps/apenowpaylater.com.png b/dapps/apenowpaylater.com.png new file mode 100644 index 0000000000000..5758c47844ef6 Binary files /dev/null and b/dapps/apenowpaylater.com.png differ diff --git a/dapps/apollox.finance.png b/dapps/apollox.finance.png new file mode 100644 index 0000000000000..e75f2037588f0 Binary files /dev/null and b/dapps/apollox.finance.png differ diff --git a/dapps/1inch.exchange.png b/dapps/app.1inch.io.png similarity index 100% rename from dapps/1inch.exchange.png rename to dapps/app.1inch.io.png diff --git a/dapps/app.beefy.finance.png b/dapps/app.beefy.finance.png index 6b08486e326ba..6c09bb9a38215 100644 Binary files a/dapps/app.beefy.finance.png and b/dapps/app.beefy.finance.png differ diff --git a/dapps/app.cyberconnect.png b/dapps/app.cyberconnect.png new file mode 100644 index 0000000000000..134961e55f095 Binary files /dev/null and b/dapps/app.cyberconnect.png differ diff --git a/dapps/app.deepspace.game.png b/dapps/app.deepspace.game.png new file mode 100644 index 0000000000000..cbf42f8406b9d Binary files /dev/null and b/dapps/app.deepspace.game.png differ diff --git a/dapps/app.dmail.png b/dapps/app.dmail.png new file mode 100644 index 0000000000000..30a53afb0fde2 Binary files /dev/null and b/dapps/app.dmail.png differ diff --git a/dapps/app.everrise.com.png b/dapps/app.everrise.com.png new file mode 100644 index 0000000000000..3c0a9a6469bd4 Binary files /dev/null and b/dapps/app.everrise.com.png differ diff --git a/dapps/app.mail3.me.png b/dapps/app.mail3.me.png new file mode 100644 index 0000000000000..1d25fab6c90d7 Binary files /dev/null and b/dapps/app.mail3.me.png differ diff --git a/dapps/app.neutron.png b/dapps/app.neutron.png new file mode 100644 index 0000000000000..c44d914949916 Binary files /dev/null and b/dapps/app.neutron.png differ diff --git a/dapps/app.polygon.zkevm.png b/dapps/app.polygon.zkevm.png new file mode 100644 index 0000000000000..e4aaa73298ee4 Binary files /dev/null and b/dapps/app.polygon.zkevm.png differ diff --git a/dapps/app.satori.finance.png b/dapps/app.satori.finance.png new file mode 100644 index 0000000000000..7a866f1ddb9e3 Binary files /dev/null and b/dapps/app.satori.finance.png differ diff --git a/dapps/app.spaceid.png b/dapps/app.spaceid.png new file mode 100644 index 0000000000000..e33fa7048f31a Binary files /dev/null and b/dapps/app.spaceid.png differ diff --git a/dapps/app.stakepark.xyz.png b/dapps/app.stakepark.xyz.png new file mode 100644 index 0000000000000..5d18f70da5150 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 index 5c54789c460e6..6a28495be27a2 100644 Binary files a/dapps/app.sushi.com.png and b/dapps/app.sushi.com.png differ diff --git a/dapps/app.unrekt.net.png b/dapps/app.unrekt.net.png new file mode 100644 index 0000000000000..ba49f17abe336 Binary files /dev/null and b/dapps/app.unrekt.net.png differ diff --git a/dapps/app.venus.io.png b/dapps/app.venus.io.png index 903ba7aa40edf..83e4dfb5e8d0e 100644 Binary files a/dapps/app.venus.io.png and b/dapps/app.venus.io.png differ diff --git a/dapps/app.zksync.era.png b/dapps/app.zksync.era.png new file mode 100644 index 0000000000000..805866006c40e Binary files /dev/null and b/dapps/app.zksync.era.png differ diff --git a/dapps/aptos.pancakeswap.finance.png b/dapps/aptos.pancakeswap.finance.png new file mode 100644 index 0000000000000..df23093e1c717 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 0000000000000..26ecd2192c622 Binary files /dev/null and b/dapps/arb_giveaway.png differ diff --git a/dapps/biswap.org.png b/dapps/biswap.org.png new file mode 100644 index 0000000000000..e4d6f2472c3d9 Binary files /dev/null and b/dapps/biswap.org.png differ diff --git a/dapps/chainlist.org.png b/dapps/chainlist.org.png new file mode 100644 index 0000000000000..1a98dbc738f56 Binary files /dev/null and b/dapps/chainlist.org.png differ diff --git a/dapps/coinpanda.io.png b/dapps/coinpanda.io.png new file mode 100644 index 0000000000000..b04d4013df723 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 0000000000000..012d291e56ecf Binary files /dev/null and b/dapps/cointracker.io.png differ diff --git a/dapps/everrise.com.png b/dapps/everrise.com.png new file mode 100644 index 0000000000000..2cb53a8cedeb1 Binary files /dev/null and b/dapps/everrise.com.png differ diff --git a/dapps/football-fever.png b/dapps/football-fever.png new file mode 100644 index 0000000000000..312e21dc5d6c0 Binary files /dev/null and b/dapps/football-fever.png differ diff --git a/dapps/gains.trade.png b/dapps/gains.trade.png new file mode 100644 index 0000000000000..a7d79ca849d34 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 0000000000000..412cbe26ffd2a Binary files /dev/null and b/dapps/galler.io.png differ diff --git a/dapps/gmx.io.png b/dapps/gmx.io.png new file mode 100644 index 0000000000000..a9ec9e4a9d09a Binary files /dev/null and b/dapps/gmx.io.png differ diff --git a/dapps/hodltoken.net.png b/dapps/hodltoken.net.png new file mode 100644 index 0000000000000..fe8a76dfa8f01 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 0000000000000..b66b3c180cd25 Binary files /dev/null and b/dapps/hodlx.exchange.png differ diff --git a/dapps/koinly.io.png b/dapps/koinly.io.png new file mode 100644 index 0000000000000..0777873170060 Binary files /dev/null and b/dapps/koinly.io.png differ diff --git a/dapps/kyber.network.png b/dapps/kyber.network.png index d00996ffdacd4..125ecc959104f 100644 Binary files a/dapps/kyber.network.png and b/dapps/kyber.network.png differ diff --git a/dapps/kyber.org.png b/dapps/kyber.org.png index db5a8b5e6b897..125ecc959104f 100644 Binary files a/dapps/kyber.org.png and b/dapps/kyber.org.png differ diff --git a/dapps/kyberswap.com.png b/dapps/kyberswap.com.png old mode 100755 new mode 100644 index b7e39df3ceeb1..125ecc959104f Binary files a/dapps/kyberswap.com.png and b/dapps/kyberswap.com.png differ diff --git a/dapps/mclaren.png b/dapps/mclaren.png new file mode 100644 index 0000000000000..0bca11607f1be Binary files /dev/null and b/dapps/mclaren.png differ diff --git a/dapps/prdt.finance.png b/dapps/prdt.finance.png new file mode 100644 index 0000000000000..17e9878fb461d Binary files /dev/null and b/dapps/prdt.finance.png differ diff --git a/dapps/squidrouter.com.png b/dapps/squidrouter.com.png new file mode 100644 index 0000000000000..ec372e6cf585e Binary files /dev/null and b/dapps/squidrouter.com.png differ diff --git a/dapps/surnft.com.png b/dapps/surnft.com.png new file mode 100644 index 0000000000000..45b116163ac14 Binary files /dev/null and b/dapps/surnft.com.png differ diff --git a/dapps/tokentool.bitbond.com.png b/dapps/tokentool.bitbond.com.png new file mode 100644 index 0000000000000..08874c8be8e76 Binary files /dev/null and b/dapps/tokentool.bitbond.com.png differ diff --git a/dapps/tools.crypton.xyz.png b/dapps/tools.crypton.xyz.png new file mode 100644 index 0000000000000..47a879126b255 Binary files /dev/null and b/dapps/tools.crypton.xyz.png differ diff --git a/dapps/tw.1inchpromo.png b/dapps/tw.1inchpromo.png new file mode 100644 index 0000000000000..d4e1bcf963c85 Binary files /dev/null and b/dapps/tw.1inchpromo.png differ diff --git a/dapps/tw.arb.giveaway.png b/dapps/tw.arb.giveaway.png new file mode 100644 index 0000000000000..b90a82b50a387 Binary files /dev/null and b/dapps/tw.arb.giveaway.png differ diff --git a/dapps/tw.btcgiveaway.png b/dapps/tw.btcgiveaway.png new file mode 100644 index 0000000000000..2e6acf0cc5c33 Binary files /dev/null and b/dapps/tw.btcgiveaway.png differ diff --git a/dapps/tw.newbrandhere.png b/dapps/tw.newbrandhere.png new file mode 100644 index 0000000000000..f3448229c818a Binary files /dev/null and b/dapps/tw.newbrandhere.png differ diff --git a/dapps/tw.rebrandpromo.png b/dapps/tw.rebrandpromo.png new file mode 100644 index 0000000000000..ab3172cadf3dc Binary files /dev/null and b/dapps/tw.rebrandpromo.png differ diff --git a/dapps/tw.udpromo.png b/dapps/tw.udpromo.png new file mode 100644 index 0000000000000..6639307546186 Binary files /dev/null and b/dapps/tw.udpromo.png differ diff --git a/dapps/tw_scw_brain.png b/dapps/tw_scw_brain.png new file mode 100644 index 0000000000000..26a5f89a47d8e Binary files /dev/null and b/dapps/tw_scw_brain.png differ diff --git a/dapps/tw_scw_fuel.png b/dapps/tw_scw_fuel.png new file mode 100644 index 0000000000000..050d93188bcad Binary files /dev/null and b/dapps/tw_scw_fuel.png differ diff --git a/dapps/tw_scw_lock.png b/dapps/tw_scw_lock.png new file mode 100644 index 0000000000000..70d3a93b8e167 Binary files /dev/null and b/dapps/tw_scw_lock.png differ diff --git a/dapps/tw_scw_speaking.png b/dapps/tw_scw_speaking.png new file mode 100644 index 0000000000000..326fe2325ea99 Binary files /dev/null and b/dapps/tw_scw_speaking.png differ diff --git a/dapps/tw_scw_wave.png b/dapps/tw_scw_wave.png new file mode 100644 index 0000000000000..c7dbce5088b05 Binary files /dev/null and b/dapps/tw_scw_wave.png differ diff --git a/dapps/v3app.everrise.com.png b/dapps/v3app.everrise.com.png new file mode 100644 index 0000000000000..3cb06525d2f94 Binary files /dev/null and b/dapps/v3app.everrise.com.png differ diff --git a/dapps/www.galler.io.png b/dapps/www.galler.io.png new file mode 100644 index 0000000000000..412cbe26ffd2a Binary files /dev/null and b/dapps/www.galler.io.png differ diff --git a/go.mod b/go.mod index 229e852673bf2..76653d652512a 100644 --- a/go.mod +++ b/go.mod @@ -1,35 +1,43 @@ module github.com/trustwallet/assets -go 1.17 +go 1.18 require ( - github.com/sirupsen/logrus v1.8.1 - github.com/spf13/cobra v1.3.0 - github.com/trustwallet/assets-go-libs v0.1.0 - github.com/trustwallet/go-libs v0.2.26 - github.com/trustwallet/go-primitives v0.0.34 + github.com/sirupsen/logrus v1.9.0 + github.com/spf13/cobra v1.7.0 + github.com/trustwallet/assets-go-libs v0.3.7 + github.com/trustwallet/go-libs v0.7.3 + github.com/trustwallet/go-primitives v0.1.8 ) require ( + github.com/beorn7/perks v1.0.1 // indirect + github.com/cespare/xxhash/v2 v2.1.2 // indirect github.com/deckarep/golang-set v1.7.1 // indirect github.com/fsnotify/fsnotify v1.5.1 // indirect + github.com/golang/protobuf v1.5.2 // indirect github.com/hashicorp/hcl v1.0.0 // indirect - github.com/inconshreveable/mousetrap v1.0.0 // indirect + github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/magiconair/properties v1.8.5 // indirect + github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect github.com/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/shopspring/decimal v1.3.1 // 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/subosito/gotenv v1.2.0 // indirect - golang.org/x/crypto v0.0.0-20211209193657-4570a0811e8b // indirect - golang.org/x/image v0.0.0-20211028202545-6944b10bf410 // indirect - golang.org/x/sys v0.0.0-20211213223007-03aa0b5f6827 // indirect - golang.org/x/text v0.3.7 // indirect + golang.org/x/crypto v0.4.0 // indirect + golang.org/x/image v0.5.0 // indirect + golang.org/x/sys v0.3.0 // indirect + golang.org/x/text v0.7.0 // indirect + google.golang.org/protobuf v1.27.1 // indirect gopkg.in/ini.v1 v1.66.2 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect ) diff --git a/go.sum b/go.sum index c01830cc47681..8a100d0f8574f 100644 --- a/go.sum +++ b/go.sum @@ -13,20 +13,6 @@ cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKV 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 v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= -cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= -cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= -cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= -cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= -cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= -cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= -cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= -cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= -cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= -cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= -cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= -cloud.google.com/go v0.98.0/go.mod h1:ua6Ush4NALrHk5QXDWnjvZHN93OuF0HfuEPq9I1X0cM= -cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= 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= @@ -35,7 +21,6 @@ cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4g 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/firestore v1.6.1/go.mod h1:asNXNOzBdyVQmEU+ggO8UPodTkEVFW5Qx+rwHnAz+EY= 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= @@ -48,46 +33,26 @@ cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9 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/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= -github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= 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/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= -github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o= -github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= -github.com/armon/go-metrics v0.3.10/go.mod h1:4O98XIr/9W0sxpJ8UaYkvjk10Iff7SnFrb4QAOwNTFc= -github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= -github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= +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/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE= github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/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/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= -github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= 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/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211130200136-a8f946100490/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/coreos/go-systemd/v22 v22.3.2/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc= -github.com/cpuguy83/go-md2man/v2 v2.0.1/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +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= @@ -96,36 +61,29 @@ github.com/deckarep/golang-set v1.7.1/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14y 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/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= -github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= -github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= -github.com/envoyproxy/go-control-plane v0.10.1/go.mod h1:AY7fTTXNdv/aJ2O5jwpxAPOWUZ7hQAEvzN5Pf27BkQQ= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/envoyproxy/protoc-gen-validate v0.6.2/go.mod h1:2t7qjJNvHPx8IjnBOzl9E9/baC+qXE/TeeyBRzgJDws= -github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= -github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU= -github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= github.com/fsnotify/fsnotify v1.5.1 h1:mZcQUHVQUQWoPXXtuf9yuEXKudkV2sx1E06UadKWpgI= github.com/fsnotify/fsnotify v1.5.1/go.mod h1:T3375wBYaZdLLcVNkcVbzGHY7f1l/uK5T5Ai1i3InKU= -github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= +github.com/gin-gonic/gin v1.7.7 h1:3DoBmSbJbZAWqXJC3SLjAPfutPJJRN1U5pALB7EeTTs= 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.13.0 h1:HyWk6mgj5qFqCT5fjGBuRArbVDfE4hi8+e8ceBS/t7Q= +github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no= +github.com/go-playground/validator/v10 v10.4.1 h1:pH2c5ADXtd66mxoE0Zm9SUhxE20r7aM3F26W0hOn+GE= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= 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/groupcache v0.0.0-20210331224755-41bb18bfe9da/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= @@ -133,8 +91,6 @@ github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt 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/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= -github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= 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= @@ -150,9 +106,8 @@ github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QD 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.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= +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/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= 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= @@ -162,16 +117,12 @@ github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ 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.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.3/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.6/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/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= 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= @@ -179,150 +130,98 @@ github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hf 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/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= -github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= 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/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= -github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= -github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/hashicorp/consul/api v1.11.0/go.mod h1:XjsvQN+RJGWI2TWy1/kqaE16HrR2J/FWgkYjdZQsX9M= -github.com/hashicorp/consul/sdk v0.8.0/go.mod h1:GBvyrGALthsZObzUGsfgHZQDXjg4lOjagTIwIR1vPms= -github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= -github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= -github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= -github.com/hashicorp/go-hclog v0.12.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= -github.com/hashicorp/go-hclog v1.0.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= -github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= -github.com/hashicorp/go-immutable-radix v1.3.1/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= -github.com/hashicorp/go-msgpack v0.5.3/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= -github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/go-multierror v1.1.0/go.mod h1:spPvp8C1qA32ftKqdAHm4hHTbPw+vmowP0z+KUhOZdA= -github.com/hashicorp/go-retryablehttp v0.5.3/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs= -github.com/hashicorp/go-rootcerts v1.0.2/go.mod h1:pqUvnprVnM5bf7AOirdbb01K4ccR319Vf4pU3K5EGc8= -github.com/hashicorp/go-sockaddr v1.0.0/go.mod h1:7Xibr9yA9JjQq1JpNB2Vw7kxv8xerXegt+ozgdvDeDU= -github.com/hashicorp/go-syslog v1.0.0/go.mod h1:qPfqrKkXGihmCqbJM2mZgkZGvKG1dFdvsLplgctolz4= -github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= 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/golang-lru v0.5.4/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= 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/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64= -github.com/hashicorp/mdns v1.0.1/go.mod h1:4gW7WsVCke5TE7EPeYliwHlRUyBtfCwuFwuMg2DmyNY= -github.com/hashicorp/mdns v1.0.4/go.mod h1:mtBihi+LeNXGtG8L9dX59gAEa12BDtBQSp4v/YAJqrc= -github.com/hashicorp/memberlist v0.2.2/go.mod h1:MS2lj3INKhZjWNqd3N0m3J+Jxf3DAOnAH9VT3Sh9MUE= -github.com/hashicorp/memberlist v0.3.0/go.mod h1:MS2lj3INKhZjWNqd3N0m3J+Jxf3DAOnAH9VT3Sh9MUE= -github.com/hashicorp/serf v0.9.5/go.mod h1:UWDWwZeL5cuWDJdl0C6wrvrUwEqtQ4ZKBKKENpqIUyk= -github.com/hashicorp/serf v0.9.6/go.mod h1:TXZNMjZQijwlDvp+r0b63xZ45H7JmCmgg4gpTwn9UV4= -github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= -github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= +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.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +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/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= +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/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/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= -github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= -github.com/lyft/protoc-gen-star v0.5.3/go.mod h1:V0xaHgaf5oCCqmcxYcWiDfTiKsZsRc87/1qhoTACD8w= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y= 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-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= -github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= -github.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4= -github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= -github.com/mattn/go-isatty v0.0.11/go.mod h1:PhnuNfih5lzO57/f3n+odYbM4JtupLOxQOAqxQCu2WE= -github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= -github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= +github.com/mattn/go-isatty v0.0.14 h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y= +github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= -github.com/miekg/dns v1.1.26/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso= -github.com/miekg/dns v1.1.41/go.mod h1:p6aan82bvRIyn+zDIv9xYNUpwa73JcSh9BKwknJysuI= -github.com/mitchellh/cli v1.1.0/go.mod h1:xcISNoH86gajksDmfB23e/pu+B+GeFRMYmoHXxx3xhI= -github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/go-testing-interface v1.0.0/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI= -github.com/mitchellh/mapstructure v0.0.0-20160808181253-ca63d7c062ee/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= 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/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= -github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= +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/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/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= -github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSgv7Sy7s/s= 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.4.0/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU= +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.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= +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.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= -github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= +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/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= -github.com/sagikazarmark/crypt v0.3.0/go.mod h1:uD/D+6UF4SrIR1uGEv7bBNkNqLGqUr43MRiaGWX1Nig= -github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529/go.mod h1:DxrIzT+xaE7yg65j358z/aeFdxmN0P9QXhEzd20vsDc= -github.com/shopspring/decimal v1.3.1 h1:2Usl1nmF/WZucqkFZhnfFYxxxu8LG21F6nPQBE5gKV8= -github.com/shopspring/decimal v1.3.1/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= 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.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE= -github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= -github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= +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.3.0 h1:R7cSvGu+Vv+qX0gW5R/85dx2kmmJT5z5NM8ifdYjdn0= -github.com/spf13/cobra v1.3.0/go.mod h1:BrRVncBjOJa/eUcVVm9CE+oC6as8k+VYr4NY7WCi9V4= +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= @@ -334,50 +233,71 @@ github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ 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.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= -github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk= github.com/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.1.0 h1:MLbtjz8OxCFy2NRE4g6Ol50OUsusL82VjXhO29U6CPo= -github.com/trustwallet/assets-go-libs v0.1.0/go.mod h1:2kTQMbtDRmYJLMzB/HMIy7vVpUYvT3Bp3u3XIal+Zk8= -github.com/trustwallet/go-libs v0.2.26 h1:WpDc7X23EQwdrMRZ1JqXWXUk15+8pfej4pTt/3hBIJo= -github.com/trustwallet/go-libs v0.2.26/go.mod h1:7QdAp1lcteKKI0DYqGoaO8KO4eTNYjGmg8vHy0YXkKc= -github.com/trustwallet/go-primitives v0.0.34 h1:NbOjEEU7B0kk3Nry/p5gIlrvSM8OQo4qwfy1Tjld/yM= -github.com/trustwallet/go-primitives v0.0.34/go.mod h1:jLqd7rm+4EYG5JdpxhngM9HwbqfEXzKy/wK4vUB7STs= -github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= +github.com/trustwallet/assets-go-libs v0.3.5 h1:xYgaDdy0VG9H3dHq+Cp830vYaZUHWA0SKbB/Nyb3ptg= +github.com/trustwallet/assets-go-libs v0.3.5/go.mod h1:03cXr+ABmrdDXZkoPPdP6h3oN2RCsGPx6QqILORpEW0= +github.com/trustwallet/assets-go-libs v0.3.6-0.20230629071648-59f2220dade1 h1:xx6eaS2n0dtINLKVEZJpeauK3cEajsbor7CBusLjBAw= +github.com/trustwallet/assets-go-libs v0.3.6-0.20230629071648-59f2220dade1/go.mod h1:4BokTTw6UBPEsyXv8jHmX07bKECLcDbzX8YnIBNrCg8= +github.com/trustwallet/assets-go-libs v0.3.6-0.20230629071828-ea4bb0afbcd1 h1:Ml28g2Zp+Qqx46Vqj70LId4jOGQmXRoQciyuXo96Uxk= +github.com/trustwallet/assets-go-libs v0.3.6-0.20230629071828-ea4bb0afbcd1/go.mod h1:4BokTTw6UBPEsyXv8jHmX07bKECLcDbzX8YnIBNrCg8= +github.com/trustwallet/assets-go-libs v0.3.6 h1:JJO/1R8YxMiYt8aDq1ttIhMEj8zjh/LmWCjYetKr3nc= +github.com/trustwallet/assets-go-libs v0.3.6/go.mod h1:4BokTTw6UBPEsyXv8jHmX07bKECLcDbzX8YnIBNrCg8= +github.com/trustwallet/assets-go-libs v0.3.7 h1:i33k7eD1DFG+0mRFkXhB3qjTJPb87KkBi+4W/QAMvxI= +github.com/trustwallet/assets-go-libs v0.3.7/go.mod h1:4BokTTw6UBPEsyXv8jHmX07bKECLcDbzX8YnIBNrCg8= +github.com/trustwallet/go-libs v0.7.3 h1:X5KTj2/582Iv/3Pbm9AKPABBlwGE0tLGbQir66jD6U0= +github.com/trustwallet/go-libs v0.7.3/go.mod h1:5TQECBJo2ZUhGvB4pTKtyYeclGhzlYooVv/EufU4Axk= +github.com/trustwallet/go-primitives v0.0.77 h1:iHEyXUQFguF1ro2boze/10xqiN8eGRaorpcUQHTa+ok= +github.com/trustwallet/go-primitives v0.0.77/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.0.80-0.20230629073213-0303c2292173 h1:4AJgcrTDuHOBUaFrYHzF+Mw9hWMIHDZ6z14aPjoCMgM= +github.com/trustwallet/go-primitives v0.0.80-0.20230629073213-0303c2292173/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.0.80 h1:bPZz6OxCX3iIBkQ2LPKPl+p82tqgDDPlbE9N9yLAh44= +github.com/trustwallet/go-primitives v0.0.80/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.0.81-0.20230630080810-d832a4b1fa4a h1:OIxTQ0l9xjYoEFrs2GX5RtC+177z/BPPMCIvgNrmjKY= +github.com/trustwallet/go-primitives v0.0.81-0.20230630080810-d832a4b1fa4a/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.0.81-0.20230630081534-2e3280aab2d3 h1:E7mEWygBuyzlODs3yOPixiv94EqHhn6V7MyYe8byKMw= +github.com/trustwallet/go-primitives v0.0.81-0.20230630081534-2e3280aab2d3/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.0.81 h1:ux7RvMp0K7cwkitoxhWGbfo3aYrp4F9hJAkj4pFkmfs= +github.com/trustwallet/go-primitives v0.0.81/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.0.87-0.20230731104721-9450c0a028c5 h1:KGnXlCb2E8jQ7GOO1nJhnwSSW+0MA0u11fQGatDmAlM= +github.com/trustwallet/go-primitives v0.0.87-0.20230731104721-9450c0a028c5/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.0.87-0.20230731114440-90c13fe13d80 h1:bLzc6RSCvatYsellXFaLRMCIF3i1f3eosEQ1gPLwCEQ= +github.com/trustwallet/go-primitives v0.0.87-0.20230731114440-90c13fe13d80/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.0.87-0.20230731115347-1aa6264a08ec h1:cwDbAgI1PgtHjp065cpBp2gaFSkOPqQIOa6V4GLApLg= +github.com/trustwallet/go-primitives v0.0.87-0.20230731115347-1aa6264a08ec/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.0.87 h1:M8pQ4cZnzDzVQ2ygIUbYwpUWYqMcB9ZcWzRzxzH+5pU= +github.com/trustwallet/go-primitives v0.0.87/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.0.88 h1:wt5A6Wf2pnobWUYcnfOEbCIWZz+2BvdIUmFCMDbzATw= +github.com/trustwallet/go-primitives v0.0.88/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.0.95 h1:iqJ6VnxxMNnO799ayYvX9iyKo6mDUZ5rAqeb0WcBbgs= +github.com/trustwallet/go-primitives v0.0.95/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.8-0.20231006102715-8e7efc6f7540 h1:vSIML835Df7uygBDUw6aSm59L03jw7p/8gF4tjjNb9A= +github.com/trustwallet/go-primitives v0.1.8-0.20231006102715-8e7efc6f7540/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.8 h1:WjZ80+nJW93PDkbb8401JBOMgU/jJ7C8y9TrMBysICM= +github.com/trustwallet/go-primitives v0.1.8/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/ugorji/go/codec v1.1.7 h1:2SvQaVZ1ouYrrKKwoSk2pzd4A9evlKJb9oTL+OaLUSs= 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.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -go.etcd.io/etcd/api/v3 v3.5.1/go.mod h1:cbVKeC6lCfl7j/8jBhAK6aIYO9XOjdptoxU/nLQcPvs= -go.etcd.io/etcd/client/pkg/v3 v3.5.1/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g= -go.etcd.io/etcd/client/v2 v2.305.1/go.mod h1:pMEacxZW7o8pg4CrFE7pquyCJJzZvkvdD2RibOCCCGs= +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= -go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= -go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= -go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc= -go.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU= -go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/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-20190923035154-9ee001bba392/go.mod h1:/lpIB1dKB+9EgE3H3cr1v9wB50oz8l4C4h62xy7jSTY= 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-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20211209193657-4570a0811e8b h1:QAqMVf3pSa6eeTsuklijukjXBlj7Es2QQplab+/RbQ4= -golang.org/x/crypto v0.0.0-20211209193657-4570a0811e8b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.4.0 h1:UVQgzMY87xqpKNgb+kDsll2Igd33HszWHFLmpaRMq/8= +golang.org/x/crypto v0.4.0/go.mod h1:3quD/ATkf6oY+rnes5c3ExXTbLc8mueNue5/DoinL80= golang.org/x/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= @@ -390,8 +310,8 @@ golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EH 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.0.0-20211028202545-6944b10bf410 h1:hTftEOvwiOq2+O8k2D5/Q7COC7k5Qcrgc2TFURJYnvQ= -golang.org/x/image v0.0.0-20211028202545-6944b10bf410/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= +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= @@ -402,8 +322,6 @@ golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHl 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/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/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= @@ -412,13 +330,9 @@ golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzB 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.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= +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-20181023162649-9b4f9f5ad519/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= @@ -431,7 +345,6 @@ golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLL 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-20190923162816-aa69164e4478/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= @@ -446,34 +359,15 @@ golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/ 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-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= -golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1/go.mod h1:9tjilg8BloeKEkVJvy7fQ90B1CfIiPueXVOjqfkSzI8= -golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +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/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-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/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= @@ -482,16 +376,12 @@ golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJ 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-20201020160332-67f06af15bc9/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-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +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-20181026203630-95b1ffbd15a5/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-20190222072716-a9d3bda3a223/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= @@ -500,17 +390,12 @@ golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7w 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-20190922100055-0a153f010e69/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/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-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9/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= @@ -521,48 +406,32 @@ golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7w 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-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210303074136-134d130e1a04/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210403161142-5e06dd20ab57/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-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +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-20210616094352-59db8d763f22/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-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211205182925-97ca703d548d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211213223007-03aa0b5f6827 h1:A0Qkn7Z/n8zC1xd9LTw17AiKlBRK64tw3ejWQiEqca0= -golang.org/x/sys v0.0.0-20211213223007-03aa0b5f6827/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.3.0 h1:w8ZOecv6NaNa/zC8944JTU3vz4u6Lagfk4RPQxv92NQ= +golang.org/x/sys v0.3.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.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.7.0 h1:4BRB4x83lYWy72KwLD/qYDuTu7q9PjSagHvijDw7cLo= +golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/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= @@ -579,7 +448,6 @@ golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgw 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-20190907020128-2ca718005c18/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= @@ -604,22 +472,10 @@ golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roY 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-20200619180055-7c47624df98f/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.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= -golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= -golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +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= @@ -640,22 +496,6 @@ google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0M 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/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= -google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= -google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= -google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= -google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= -google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= -google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= -google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= -google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= -google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= -google.golang.org/api v0.59.0/go.mod h1:sT2boj7M9YJxZzgeZqXogmhfmRWDtPzT31xkieUbuZU= -google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= -google.golang.org/api v0.62.0/go.mod h1:dKmwPCydfsad4qCH08MSdgWjfHOyfpd4VtDGgRFdavw= 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= @@ -686,46 +526,12 @@ google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfG 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-20200513103714-09dca8ec2884/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/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= -google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= -google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= -google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211008145708-270636b82663/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211028162531-8db9c33dc351/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211129164237-f09f9a12af12/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211203200212-54befc351ae9/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= 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= @@ -738,22 +544,6 @@ google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKa 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/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= -google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= -google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= -google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= 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= @@ -766,6 +556,7 @@ google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGj google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= 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= @@ -777,15 +568,14 @@ 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.3/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.2.8/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.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo= -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/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= diff --git a/internal/config/config.go b/internal/config/config.go index 06c5edd5a6377..07733178574fc 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -43,7 +43,7 @@ type ( ) // Default is a configuration instance. -var Default = Config{} // nolint:gochecknoglobals // config must be global +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 { diff --git a/internal/manager/commands.go b/internal/manager/commands.go index cae122a5e3041..d52a6762ea107 100644 --- a/internal/manager/commands.go +++ b/internal/manager/commands.go @@ -118,13 +118,18 @@ func AddTokenToTokenListJSON(chain coin.Coin, assetID, tokenID string, tokenList } list.Tokens = append(list.Tokens, newToken) - return libFile.CreateJSONFile(tokenListPath, &tokenlist.Model{ + 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) { diff --git a/internal/processor/fixers.go b/internal/processor/fixers.go index 896d41261c0ba..88c58f56cb35d 100644 --- a/internal/processor/fixers.go +++ b/internal/processor/fixers.go @@ -75,7 +75,7 @@ func (s *Service) FixLogo(f *file.AssetFile) error { } err = validation.ValidateLogoFileSize(f.Path()) - if err != nil { // nolint:staticcheck + if err != nil { //nolint:staticcheck // TODO: Compress images. } @@ -111,7 +111,12 @@ func (s *Service) FixChainInfoJSON(f *file.AssetFile) error { if chainInfo.Type == nil || *chainInfo.Type != expectedType { chainInfo.Type = &expectedType - return file.CreateJSONFile(f.Path(), &chainInfo) + data, err := file.PrepareJSONData(&chainInfo) + if err != nil { + return err + } + + return file.CreateJSONFile(f.Path(), data) } return nil @@ -141,9 +146,12 @@ func (s *Service) FixAssetInfo(f *file.AssetFile) error { expectedTokenType = strings.ToUpper(assetType) } - if chain.ID != f.Chain().ID || !strings.EqualFold(assetType, expectedTokenType) { - assetInfo.Type = &expectedTokenType - isModified = true + // https://github.com/trustwallet/backend/issues/2561 + if chain.ID != coin.CRYPTOORG && chain.ID != coin.CRONOS { + if chain.ID != f.Chain().ID || !strings.EqualFold(assetType, expectedTokenType) { + assetInfo.Type = &expectedTokenType + isModified = true + } } // Fix asset id. @@ -165,7 +173,12 @@ func (s *Service) FixAssetInfo(f *file.AssetFile) error { } if isModified { - return file.CreateJSONFile(f.Path(), &assetInfo) + data, err := file.PrepareJSONData(&assetInfo) + if err != nil { + return err + } + + return file.CreateJSONFile(f.Path(), data) } return nil diff --git a/internal/processor/service.go b/internal/processor/service.go index e2774a62aecc5..c4e2c1fdf1b52 100644 --- a/internal/processor/service.go +++ b/internal/processor/service.go @@ -115,7 +115,5 @@ func (s *Service) GetFixers(f *file.AssetFile) []Fixer { } func (s *Service) GetUpdatersAuto() []Updater { - return []Updater{ - {Name: "Retrieving missing token images, creating binance token list.", Run: s.UpdateBinanceTokens}, - } + return []Updater{} } diff --git a/internal/processor/updaters_auto.go b/internal/processor/updaters_auto.go deleted file mode 100644 index fc465848cfe4c..0000000000000 --- a/internal/processor/updaters_auto.go +++ /dev/null @@ -1,301 +0,0 @@ -package processor - -import ( - "fmt" - "reflect" - "sort" - "strconv" - "time" - - log "github.com/sirupsen/logrus" - - fileLib "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/info" - "github.com/trustwallet/assets-go-libs/validation/tokenlist" - "github.com/trustwallet/assets/internal/config" - "github.com/trustwallet/go-libs/blockchain/binance" - "github.com/trustwallet/go-libs/blockchain/binance/explorer" - assetlib "github.com/trustwallet/go-primitives/asset" - "github.com/trustwallet/go-primitives/coin" - "github.com/trustwallet/go-primitives/numbers" - "github.com/trustwallet/go-primitives/types" -) - -const ( - assetsPage = 1 - assetsRows = 1000 - marketPairsLimit = 1000 - tokensListLimit = 10000 - - activeStatus = "active" -) - -func (s *Service) UpdateBinanceTokens() error { - explorerClient := explorer.InitClient(config.Default.ClientURLs.Binance.Explorer, nil) - - bep2AssetList, err := explorerClient.FetchBep2Assets(assetsPage, assetsRows) - if err != nil { - return err - } - - dexClient := binance.InitClient(config.Default.ClientURLs.Binance.Dex, "", nil) - - marketPairs, err := dexClient.FetchMarketPairs(marketPairsLimit) - if err != nil { - return err - } - - tokenList, err := dexClient.FetchTokens(tokensListLimit) - if err != nil { - return err - } - - chain, err := types.GetChainFromAssetType(string(types.BEP2)) - if err != nil { - return err - } - - err = fetchMissingAssets(chain, bep2AssetList.AssetInfoList) - if err != nil { - return err - } - - tokens, err := generateTokenList(marketPairs, tokenList) - if err != nil { - return err - } - - sortTokens(tokens) - - return createTokenListJSON(chain, tokens) -} - -func fetchMissingAssets(chain coin.Coin, assets []explorer.Bep2Asset) error { - for _, a := range assets { - if a.AssetImg == "" || a.Decimals == 0 { - continue - } - - assetLogoPath := path.GetAssetLogoPath(chain.Handle, a.Asset) - if fileLib.Exists(assetLogoPath) { - continue - } - - if err := createLogo(assetLogoPath, a); err != nil { - return err - } - - if err := createInfoJSON(chain, a); err != nil { - return err - } - } - - return nil -} - -func createLogo(assetLogoPath string, a explorer.Bep2Asset) error { - err := fileLib.CreateDirPath(assetLogoPath) - if err != nil { - return err - } - - return image.CreatePNGFromURL(a.AssetImg, assetLogoPath) -} - -func createInfoJSON(chain coin.Coin, a explorer.Bep2Asset) error { - explorerURL, err := coin.GetCoinExploreURL(chain, a.Asset, "") - if err != nil { - return err - } - - assetType := string(types.BEP2) - website := "" - description := "-" - status := activeStatus - - assetInfo := info.AssetModel{ - Name: &a.Name, - Type: &assetType, - Symbol: &a.MappedAsset, - Decimals: &a.Decimals, - Website: &website, - Description: &description, - Explorer: &explorerURL, - Status: &status, - ID: &a.Asset, - } - - assetInfoPath := path.GetAssetInfoPath(chain.Handle, a.Asset) - - return fileLib.CreateJSONFile(assetInfoPath, &assetInfo) -} - -func createTokenListJSON(chain coin.Coin, tokens []tokenlist.Token) error { - tokenListPath := path.GetTokenListPath(chain.Handle, path.TokenlistDefault) - - var oldTokenList tokenlist.Model - err := fileLib.ReadJSONFile(tokenListPath, &oldTokenList) - if err != nil { - return nil - } - - if reflect.DeepEqual(oldTokenList.Tokens, tokens) { - return nil - } - - if len(tokens) == 0 { - return nil - } - - log.Debugf("Tokenlist: list with %d tokens and %d pairs written to %s.", - len(tokens), countTotalPairs(tokens), tokenListPath) - - return fileLib.CreateJSONFile(tokenListPath, &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: tokens, - Version: tokenlist.Version{Major: oldTokenList.Version.Major + 1}, - }) -} - -func countTotalPairs(tokens []tokenlist.Token) int { - var counter int - for _, token := range tokens { - counter += len(token.Pairs) - } - - return counter -} - -func sortTokens(tokens []tokenlist.Token) { - sort.Slice(tokens, func(i, j int) bool { - if len(tokens[i].Pairs) != len(tokens[j].Pairs) { - return len(tokens[i].Pairs) > len(tokens[j].Pairs) - } - - return tokens[i].Address < tokens[j].Address - }) - - for _, token := range tokens { - sort.Slice(token.Pairs, func(i, j int) bool { - return token.Pairs[i].Base < token.Pairs[j].Base - }) - } -} - -func generateTokenList(marketPairs []binance.MarketPair, tokenList binance.Tokens) ([]tokenlist.Token, error) { - if len(marketPairs) < 5 { - return nil, fmt.Errorf("no markets info is returned from Binance DEX: %d", len(marketPairs)) - } - - if len(tokenList) < 5 { - return nil, fmt.Errorf("no tokens info is returned from Binance DEX: %d", len(tokenList)) - } - - pairsMap := make(map[string][]tokenlist.Pair) - pairsList := make(map[string]struct{}) - tokensMap := make(map[string]binance.Token) - - for _, token := range tokenList { - tokensMap[token.Symbol] = token - } - - for _, marketPair := range marketPairs { - if !isTokenExistOrActive(marketPair.BaseAssetSymbol) || !isTokenExistOrActive(marketPair.QuoteAssetSymbol) { - continue - } - - tokenSymbol := marketPair.QuoteAssetSymbol - - if val, exists := pairsMap[tokenSymbol]; exists { - val = append(val, getPair(marketPair)) - pairsMap[tokenSymbol] = val - } else { - pairsMap[tokenSymbol] = []tokenlist.Pair{getPair(marketPair)} - } - - pairsList[marketPair.BaseAssetSymbol] = struct{}{} - pairsList[marketPair.QuoteAssetSymbol] = struct{}{} - } - - tokenItems := make([]tokenlist.Token, 0, len(pairsList)) - - for pair := range pairsList { - token := tokensMap[pair] - - var pairs []tokenlist.Pair - pairs, exists := pairsMap[token.Symbol] - if !exists { - pairs = make([]tokenlist.Pair, 0) - } - - tokenItems = append(tokenItems, tokenlist.Token{ - Asset: getAssetIDSymbol(token.Symbol, coin.Coins[coin.BINANCE].Symbol, coin.BINANCE), - Type: getTokenType(token.Symbol, coin.Coins[coin.BINANCE].Symbol, types.BEP2), - Address: token.Symbol, - Name: token.Name, - Symbol: token.OriginalSymbol, - Decimals: coin.Coins[coin.BINANCE].Decimals, - LogoURI: getLogoURI(token.Symbol, coin.Coins[coin.BINANCE].Handle, coin.Coins[coin.BINANCE].Symbol), - Pairs: pairs, - }) - } - - return tokenItems, nil -} - -func isTokenExistOrActive(symbol string) bool { - if symbol == coin.Coins[coin.BINANCE].Symbol { - return true - } - - assetPath := path.GetAssetInfoPath(coin.Coins[coin.BINANCE].Handle, symbol) - - var infoAsset info.AssetModel - if err := fileLib.ReadJSONFile(assetPath, infoAsset); err != nil { - log.Debug(err) - return false - } - - if infoAsset.GetStatus() != activeStatus { - log.Debugf("asset status [%s] is not active", symbol) - return false - } - - return true -} - -func getPair(marketPair binance.MarketPair) tokenlist.Pair { - return tokenlist.Pair{ - Base: getAssetIDSymbol(marketPair.BaseAssetSymbol, coin.Coins[coin.BINANCE].Symbol, coin.BINANCE), - LotSize: strconv.FormatInt(numbers.ToSatoshi(marketPair.LotSize), 10), - TickSize: strconv.FormatInt(numbers.ToSatoshi(marketPair.TickSize), 10), - } -} - -func getAssetIDSymbol(tokenID string, nativeCoinID string, coinType uint) string { - if tokenID == nativeCoinID { - return assetlib.BuildID(coinType, "") - } - - return assetlib.BuildID(coinType, tokenID) -} - -func getTokenType(symbol string, nativeCoinSymbol string, tokenType types.TokenType) types.TokenType { - if symbol == nativeCoinSymbol { - return types.Coin - } - - return tokenType -} - -func getLogoURI(id, githubChainFolder, nativeCoinSymbol string) string { - if id == nativeCoinSymbol { - return path.GetChainLogoURL(config.Default.URLs.AssetsApp, githubChainFolder) - } - - return path.GetAssetLogoURL(config.Default.URLs.AssetsApp, githubChainFolder, id) -} diff --git a/internal/processor/validators.go b/internal/processor/validators.go index 0788ddcadafd3..c01f15902a7d3 100644 --- a/internal/processor/validators.go +++ b/internal/processor/validators.go @@ -206,9 +206,12 @@ func (s *Service) ValidateAssetInfoFile(f *file.AssetFile) error { return err } - err := info.ValidateAsset(assetInfo, f.Chain(), f.Asset()) - if err != nil { - return err + // https://github.com/trustwallet/backend/issues/2561 + if f.Chain() != coin.Cryptoorg() && f.Chain() != coin.Cronos() { + err := info.ValidateAsset(assetInfo, f.Chain(), f.Asset()) + if err != nil { + return err + } } return nil