diff --git a/.github/assets.config.yaml b/.github/assets.config.yaml index bb8fc719777e..d5bd6110a768 100644 --- a/.github/assets.config.yaml +++ b/.github/assets.config.yaml @@ -5,7 +5,7 @@ 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-cdn.trustwallet.com" @@ -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 000000000000..0fe61bb2356a --- /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 9ad9a38bd920..ef400763cb0c 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.18 - id: go - 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 000000000000..925d6a1e521f --- /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 30623b24ec77..a42ef0fbfb59 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.18 - id: go - 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 8cc9cd05c41a..8dec678a52ed 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.18 - id: go - 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 3fc913ac36f0..5265f72555a3 100644 --- a/.github/workflows/periodic-update.yml +++ b/.github/workflows/periodic-update.yml @@ -8,13 +8,13 @@ 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.18 id: go @@ -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 2c97c1468395..000000000000 --- 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.18 - 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/upload-s3.yml similarity index 92% rename from .github/workflows/s3_upload.yml rename to .github/workflows/upload-s3.yml index 6b7c458a26b5..b12301e96aed 100644 --- a/.github/workflows/s3_upload.yml +++ b/.github/workflows/upload-s3.yml @@ -17,15 +17,15 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Confiugre AWS credentials - uses: aws-actions/configure-aws-credentials@v1 + uses: aws-actions/configure-aws-credentials@v2 with: role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }} aws-region: ${{ env.AWS_REGION }} - - name: Deploy to S3 + - 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 diff --git a/.gitignore b/.gitignore index ba2901bac142..9573723cfbdc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ **/.DS_Store -node_modules/ .idea .vscode/ *~ diff --git a/LICENSE b/LICENSE index 844c13634e01..3a5c05c78d69 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 9e6b575ca0ad..4ebbac006363 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/v1.45.2/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 44dce55054eb..f7f55372f43b 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 000000000000..91f5ed7d93bf --- /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 000000000000..7b31d8445c13 Binary files /dev/null and b/blockchains/acala/info/logo.png differ diff --git a/blockchains/acalaevm/info/info.json b/blockchains/acalaevm/info/info.json new file mode 100644 index 000000000000..e9452c29cc30 --- /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 000000000000..7b31d8445c13 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 000000000000..d393a167f541 --- /dev/null +++ b/blockchains/agoric/info/info.json @@ -0,0 +1,25 @@ +{ + "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", + "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 000000000000..6d017640305e Binary files /dev/null and b/blockchains/agoric/info/logo.png differ diff --git a/blockchains/akash/info/info.json b/blockchains/akash/info/info.json new file mode 100644 index 000000000000..bad45258dd42 --- /dev/null +++ b/blockchains/akash/info/info.json @@ -0,0 +1,28 @@ +{ + "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", + "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 000000000000..8c96414aa1f5 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 000000000000..d0388df6a68a Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper105nkdqgkj3hpgqss0elcec2t72ujg09w5mzhm8/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 000000000000..102052714989 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8/logo.png differ diff --git a/blockchains/akash/validators/list.json b/blockchains/akash/validators/list.json new file mode 100644 index 000000000000..c5ca211a452a --- /dev/null +++ b/blockchains/akash/validators/list.json @@ -0,0 +1,14 @@ +[ + { + "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" + } +] 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 000000000000..4e3815b6d5bb --- /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 000000000000..adea4a50a911 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 000000000000..f5d56c9c886f --- /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 000000000000..685fbc424985 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 000000000000..8e48ff58d767 --- /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 000000000000..cf3a1c5b091e 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 000000000000..c321fa5bf028 --- /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 000000000000..c6d7d72c804f 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 000000000000..c81787b62c78 --- /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 000000000000..d9044fff9c60 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 000000000000..c1d855dffe01 --- /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 000000000000..91ab83369e70 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 000000000000..e1a3a0edbf90 --- /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 000000000000..abe226741a78 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 000000000000..e6429365ebb7 --- /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 000000000000..9f6dfe023955 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 000000000000..ad5395ab95c8 --- /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 000000000000..91446ba902d5 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 000000000000..2e9657486a8a --- /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 000000000000..9e02c444212c 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 000000000000..d9e9e505d723 --- /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 000000000000..ca1717921997 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 000000000000..5c7a35c310d5 --- /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 000000000000..6157eefc14b9 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 000000000000..65779face308 --- /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 000000000000..7599e8274741 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 000000000000..365dca35b6ad --- /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 000000000000..55226a4d06a4 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 000000000000..dcdc96cc6a07 --- /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 000000000000..cafce215d5ee 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 000000000000..0c0082d0963f --- /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 000000000000..aa5b21788ce3 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 000000000000..7c8a9a5277c7 --- /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 000000000000..e6bb8fa72e80 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 000000000000..815172a3521a --- /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 000000000000..668bc9febf2e 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 000000000000..9bef8c152f31 --- /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 000000000000..9eaca0cea3a3 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 000000000000..d539f8e87eef --- /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 000000000000..3612b539fa6b 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 000000000000..15f9a59cd477 --- /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 000000000000..e30d0e1a0b2a 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 000000000000..2dc4b1cd3cf2 --- /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 000000000000..8a4e7fe83073 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 000000000000..9a7084166a41 --- /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 000000000000..ac3593681ccd 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 000000000000..1bc9774dcc85 --- /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 000000000000..41943ac56e6c 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 000000000000..2672c326bc3f --- /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 000000000000..e707990373bb 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 000000000000..7b3b13b6cc53 --- /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 000000000000..0c62f4bc77f6 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 000000000000..3446b9a8ce73 --- /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 000000000000..4480eb3d6dda 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 000000000000..60f45c441cb4 --- /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 000000000000..a84882299105 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 000000000000..68eb2c8cfd48 --- /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 000000000000..ca9eb708cac0 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 000000000000..33ea7c71f273 --- /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 000000000000..e19aa6eb1d94 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 000000000000..fa659a70492d --- /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 000000000000..ee48d107ad1b 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 000000000000..a15f734caa1f --- /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 000000000000..b1cf2ef5c081 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 000000000000..4ec3dfcbbe1b --- /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 000000000000..7b98f95b75ff 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 000000000000..f60e2616b943 --- /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 000000000000..dceed0bf75ff 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 000000000000..494927c552a5 --- /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 000000000000..0a00d263aed4 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 000000000000..301ef63d83f2 --- /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 000000000000..ddc7b0039090 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 000000000000..0e4e8177ba5a --- /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 000000000000..50620647ad66 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 000000000000..736b4a3ffc97 --- /dev/null +++ b/blockchains/aptos/info/info.json @@ -0,0 +1,35 @@ +{ + "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" + ], + "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 000000000000..d57a7212f323 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 000000000000..b1fde1e950c8 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 000000000000..51db7ed27249 --- /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 000000000000..229912464ca2 --- /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 000000000000..56f9d83abe60 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 000000000000..49280da9e8c3 --- /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 000000000000..577673c43c6a 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 000000000000..c7e633492b63 --- /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 000000000000..ef4c4544cecf 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 000000000000..cf65fad94892 --- /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 000000000000..f938a10800ec 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 000000000000..3ec56594c2b0 --- /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 000000000000..a7d79ca849d3 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 000000000000..009224dd617d --- /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 000000000000..46cb3c86dc2e --- /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 000000000000..6c156aba6266 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 000000000000..5ea87a083fc1 --- /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 000000000000..61eec0683aa2 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 000000000000..a23b425d513d --- /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 000000000000..41911a040f5c 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 000000000000..f39634b4bf18 --- /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 000000000000..7cf47068565d 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 000000000000..778922482e0b --- /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 000000000000..f20a797db172 Binary files /dev/null and b/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6694340fc020c5E6B96567843da2df01b2CE1eb6/info.json b/blockchains/arbitrum/assets/0x6694340fc020c5E6B96567843da2df01b2CE1eb6/info.json new file mode 100644 index 000000000000..0638d130b6f8 --- /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 000000000000..49d61fc76916 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 000000000000..b4522687dc38 --- /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 000000000000..780df35dcd36 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 000000000000..793182f27e0d --- /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 000000000000..eaf0948485b8 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 000000000000..617b4b409e3b --- /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 000000000000..5402ed6bc17a 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 000000000000..6c664bdddb9a --- /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 000000000000..f4d96d2e6409 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 000000000000..bc6ffe16cfbb --- /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 000000000000..9d7b0435acaa 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 000000000000..c5e9ba018f22 --- /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 000000000000..36827cd6d061 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 000000000000..9b9b1ec7302a --- /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 000000000000..69911caea54f Binary files /dev/null and b/blockchains/arbitrum/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/info.json b/blockchains/arbitrum/assets/0xa0b862F60edEf4452F25B4160F177db44DeB6Cf1/info.json new file mode 100644 index 000000000000..7fa09f289780 --- /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 000000000000..e3cd7aebe3a1 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 000000000000..a2ed700f4c4e --- /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 000000000000..36fcfbc499e6 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 000000000000..b992070907bb --- /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 000000000000..855db6d96629 Binary files /dev/null and b/blockchains/arbitrum/assets/0xaa54e84A3e6e5A80288d2C2f8e36eA5cA3A3Ca30/logo.png differ diff --git a/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json new file mode 100644 index 000000000000..aa48af4b0db5 --- /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 000000000000..a3b20074ec34 Binary files /dev/null and b/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png differ diff --git a/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/info.json b/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/info.json new file mode 100644 index 000000000000..9caf25d228d1 --- /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 000000000000..f1295da4329a Binary files /dev/null and b/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/logo.png differ diff --git a/blockchains/arbitrum/info/info.json b/blockchains/arbitrum/info/info.json index 67252daafd53..6f8e9fa49ac8 100644 --- a/blockchains/arbitrum/info/info.json +++ b/blockchains/arbitrum/info/info.json @@ -5,6 +5,8 @@ "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", diff --git a/blockchains/arbitrum/tokenlist.json b/blockchains/arbitrum/tokenlist.json index 2a38c3e4f6e3..5d4560382971 100644 --- a/blockchains/arbitrum/tokenlist.json +++ b/blockchains/arbitrum/tokenlist.json @@ -52,6 +52,16 @@ "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": { diff --git a/blockchains/arbitrumgoerli/info/info.json b/blockchains/arbitrumgoerli/info/info.json new file mode 100644 index 000000000000..3daf8322dd93 --- /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 000000000000..ad463789d50b Binary files /dev/null and b/blockchains/arbitrumgoerli/info/logo.png differ diff --git a/blockchains/aurora/info/info.json b/blockchains/aurora/info/info.json index 4ee4a12981e7..8c83c6b4cf0c 100644 --- a/blockchains/aurora/info/info.json +++ b/blockchains/aurora/info/info.json @@ -7,6 +7,7 @@ "symbol": "ETH", "type": "coin", "decimals": 18, + "rpc_url": "https://mainnet.aurora.dev", "status": "active", "links": [ { diff --git a/blockchains/avalanchec/assets/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665/info.json b/blockchains/avalanchec/assets/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665/info.json index b5ac568121e1..d60f394bdfa4 100644 --- a/blockchains/avalanchec/assets/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665/info.json +++ b/blockchains/avalanchec/assets/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665/info.json @@ -5,7 +5,7 @@ "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/address/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665", + "explorer": "https://snowtrace.io/token/0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665", "status": "active", "id": "0x02D980A0D7AF3fb7Cf7Df8cB35d9eDBCF355f665", "links": [ diff --git a/blockchains/avalanchec/assets/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA/info.json b/blockchains/avalanchec/assets/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA/info.json index 0a4c6359d35c..74a6bad96076 100644 --- a/blockchains/avalanchec/assets/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA/info.json +++ b/blockchains/avalanchec/assets/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA/info.json @@ -1,11 +1,11 @@ { "name": "USD Coin (Portal from Solana)", - "type": "AVALANCHE", "symbol": "USDCso", + "type": "AVALANCHE", "decimals": 6, "description": "Cross Chain Portal Bridged Token", "website": "https://www.circle.com/en/usdc", - "explorer": "https://snowtrace.io/address/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA", + "explorer": "https://snowtrace.io/token/0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA", "status": "active", "id": "0x0950Fc1AD509358dAeaD5eB8020a3c7d8b43b9DA", "tags": [ diff --git a/blockchains/avalanchec/assets/0x12AF5C1a232675f62F405b5812A80e7a6F75D746/info.json b/blockchains/avalanchec/assets/0x12AF5C1a232675f62F405b5812A80e7a6F75D746/info.json index a52f193ba412..e25da56e9475 100644 --- a/blockchains/avalanchec/assets/0x12AF5C1a232675f62F405b5812A80e7a6F75D746/info.json +++ b/blockchains/avalanchec/assets/0x12AF5C1a232675f62F405b5812A80e7a6F75D746/info.json @@ -1,11 +1,11 @@ { "name": "ROSE (Portal)", - "type": "AVALANCHE", "symbol": "ROSE", + "type": "AVALANCHE", "decimals": 18, "description": "Cross Chain Portal Bridged Token", "website": "https://oasisprotocol.org/", - "explorer": "https://snowtrace.io/address/0x12AF5C1a232675f62F405b5812A80e7a6F75D746", + "explorer": "https://snowtrace.io/token/0x12AF5C1a232675f62F405b5812A80e7a6F75D746", "status": "active", "id": "0x12AF5C1a232675f62F405b5812A80e7a6F75D746", "tags": [ diff --git a/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json b/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json index 87710b276320..c98169a5987c 100644 --- a/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json +++ b/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json @@ -5,7 +5,7 @@ "decimals": 6, "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/address/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98", + "explorer": "https://snowtrace.io/token/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98", "status": "active", "id": "0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98", "links": [ diff --git a/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/info.json b/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/info.json index a63163af72e1..c564e984177c 100644 --- a/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/info.json +++ b/blockchains/avalanchec/assets/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "A regulated, exchange-independent stablecoin backed 1-for-1 with US Dollars.", "website": "https://trueusd.com/", - "explorer": "https://snowtrace.io/address/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB", + "explorer": "https://snowtrace.io/token/0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB", "status": "active", "id": "0x1C20E891Bab6b1727d14Da358FAe2984Ed9B59EB", "links": [ diff --git a/blockchains/avalanchec/assets/0x1f1E7c893855525b303f99bDF5c3c05Be09ca251/info.json b/blockchains/avalanchec/assets/0x1f1E7c893855525b303f99bDF5c3c05Be09ca251/info.json new file mode 100644 index 000000000000..2304efc48357 --- /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 000000000000..577673c43c6a 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 000000000000..b0ec09919bd1 --- /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 000000000000..1660741aaf75 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 index 7b13a52dd44c..b60199258d51 100644 --- a/blockchains/avalanchec/assets/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f/info.json +++ b/blockchains/avalanchec/assets/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f/info.json @@ -5,7 +5,7 @@ "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/address/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f", + "explorer": "https://snowtrace.io/token/0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f", "status": "active", "id": "0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f", "links": [ diff --git a/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/info.json b/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/info.json index c56cb9474fb2..c846bc7ecfc7 100644 --- a/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/info.json +++ b/blockchains/avalanchec/assets/0x214DB107654fF987AD859F34125307783fC8e387/info.json @@ -5,7 +5,7 @@ "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/address/0x214DB107654fF987AD859F34125307783fC8e387", + "explorer": "https://snowtrace.io/token/0x214DB107654fF987AD859F34125307783fC8e387", "status": "active", "id": "0x214DB107654fF987AD859F34125307783fC8e387", "links": [ diff --git a/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json b/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json index 838e10beda96..e9c494b1582f 100644 --- a/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json +++ b/blockchains/avalanchec/assets/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e/info.json @@ -1,11 +1,11 @@ { "name": "EverRise NFT Stakes", - "type": "AVALANCHE", "symbol": "nftRISE", + "type": "AVALANCHE", "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://snowtrace.io/address/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", + "website": "https://www.everrise.com/", + "explorer": "https://snowtrace.io/token/0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", "status": "active", "id": "0x23cD2E6b283754Fd2340a75732f9DdBb5d11807e", "links": [ diff --git a/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/info.json b/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/info.json index 5f9fad83349c..20dbc08d76ed 100644 --- a/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/info.json +++ b/blockchains/avalanchec/assets/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06/info.json @@ -5,7 +5,7 @@ "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/address/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06", + "explorer": "https://snowtrace.io/token/0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06", "status": "active", "id": "0x249848BeCA43aC405b8102Ec90Dd5F22CA513c06", "links": [ diff --git a/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json b/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json new file mode 100644 index 000000000000..ee48d79ff92b --- /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 000000000000..41058cf5fbdb 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 index a17e9f944bb5..104ff3b53894 100644 --- a/blockchains/avalanchec/assets/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A/info.json +++ b/blockchains/avalanchec/assets/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A/info.json @@ -5,7 +5,7 @@ "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/address/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A", + "explorer": "https://snowtrace.io/token/0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A", "status": "active", "id": "0x340fE1D898ECCAad394e2ba0fC1F93d27c7b717A", "links": [ diff --git a/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/info.json b/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/info.json index af03fb09b0dc..f7eadc6c1d96 100644 --- a/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/info.json +++ b/blockchains/avalanchec/assets/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76/info.json @@ -5,7 +5,7 @@ "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/address/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76", + "explorer": "https://snowtrace.io/token/0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76", "status": "active", "id": "0x37B608519F91f70F2EeB0e5Ed9AF4061722e4F76", "links": [ diff --git a/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/info.json b/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/info.json index 97975a69ffc2..556cfa4f2413 100644 --- a/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/info.json +++ b/blockchains/avalanchec/assets/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f/info.json @@ -5,7 +5,7 @@ "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/address/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f", + "explorer": "https://snowtrace.io/token/0x39fC9e94Caeacb435842FADeDeCB783589F50f5f", "status": "active", "id": "0x39fC9e94Caeacb435842FADeDeCB783589F50f5f", "links": [ diff --git a/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/info.json b/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/info.json index c70a27ca8133..24162128e4dc 100644 --- a/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/info.json +++ b/blockchains/avalanchec/assets/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "UMA is a decentralized financial contracts platform built to enable Universal Market Access.", "website": "https://umaproject.org/", - "explorer": "https://snowtrace.io/address/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339", + "explorer": "https://snowtrace.io/token/0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339", "status": "active", "id": "0x3Bd2B1c7ED8D396dbb98DED3aEbb41350a5b2339", "links": [ diff --git a/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/info.json b/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/info.json index d52740276da3..058c2d2faeb3 100644 --- a/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/info.json +++ b/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/info.json @@ -1,11 +1,11 @@ { "name": "Binance Coin (Portal)", - "type": "AVALANCHE", "symbol": "BNB", + "type": "AVALANCHE", "decimals": 18, "description": "Cross Chain Portal Bridged Token", "website": "https://www.binance.com/", - "explorer": "https://snowtrace.io/address/0x442F7f22b1EE2c842bEAFf52880d4573E9201158", + "explorer": "https://snowtrace.io/token/0x442F7f22b1EE2c842bEAFf52880d4573E9201158", "status": "active", "id": "0x442F7f22b1EE2c842bEAFf52880d4573E9201158", "tags": [ diff --git a/blockchains/avalanchec/assets/0x44c784266cf024a60e8acF2427b9857Ace194C5d/info.json b/blockchains/avalanchec/assets/0x44c784266cf024a60e8acF2427b9857Ace194C5d/info.json new file mode 100644 index 000000000000..e312279f61da --- /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 000000000000..6c156aba6266 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 index 60b17dc10ec7..a322337f4ad5 100644 --- a/blockchains/avalanchec/assets/0x50b7545627a5162F82A992c33b87aDc75187B218/info.json +++ b/blockchains/avalanchec/assets/0x50b7545627a5162F82A992c33b87aDc75187B218/info.json @@ -5,7 +5,7 @@ "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/address/0x50b7545627a5162F82A992c33b87aDc75187B218", + "explorer": "https://snowtrace.io/token/0x50b7545627a5162F82A992c33b87aDc75187B218", "status": "active", "id": "0x50b7545627a5162F82A992c33b87aDc75187B218", "links": [ @@ -21,4 +21,4 @@ "tags": [ "wrapped" ] -} +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8/info.json b/blockchains/avalanchec/assets/0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8/info.json index fccf75ab1627..6a8255b608ca 100644 --- a/blockchains/avalanchec/assets/0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8/info.json +++ b/blockchains/avalanchec/assets/0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8/info.json @@ -1,11 +1,11 @@ { "name": "USD Coin (PoS) (Portal from Polygon)", - "type": "AVALANCHE", "symbol": "USDCpo", + "type": "AVALANCHE", "decimals": 6, "description": "Cross Chain Portal Bridged Token", "website": "https://www.circle.com/en/usdc", - "explorer": "https://snowtrace.io/address/0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8", + "explorer": "https://snowtrace.io/token/0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8", "status": "active", "id": "0x543672E9CBEC728CBBa9C3Ccd99ed80aC3607FA8", "tags": [ diff --git a/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/info.json b/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/info.json index bf1caf69791e..a30e178f2eba 100644 --- a/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/info.json +++ b/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/info.json @@ -5,8 +5,8 @@ "decimals": 18, "description": "One-stop Decentralized Trading on Avalanche.", "website": "https://traderjoexyz.com/", - "explorer": "https://snowtrace.io/address/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33", - "status": "active", + "explorer": "https://snowtrace.io/token/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33", + "status": "abandoned", "id": "0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33", "links": [ { diff --git a/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/logo.png b/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/logo.png deleted file mode 100644 index 9a65d203c809..000000000000 Binary files a/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/logo.png and /dev/null differ diff --git a/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/info.json b/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/info.json index 37db242c2f66..a84ab55ddf7b 100644 --- a/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/info.json +++ b/blockchains/avalanchec/assets/0x5947BB275c521040051D82396192181b413227A3/info.json @@ -5,7 +5,7 @@ "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/address/0x5947BB275c521040051D82396192181b413227A3", + "explorer": "https://snowtrace.io/token/0x5947BB275c521040051D82396192181b413227A3", "status": "active", "id": "0x5947BB275c521040051D82396192181b413227A3", "links": [ diff --git a/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/info.json b/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/info.json index 355ce83a7a44..1f9cf617fa18 100644 --- a/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/info.json +++ b/blockchains/avalanchec/assets/0x596fA47043f99A4e0F122243B841E55375cdE0d2/info.json @@ -5,7 +5,7 @@ "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/address/0x596fA47043f99A4e0F122243B841E55375cdE0d2", + "explorer": "https://snowtrace.io/token/0x596fA47043f99A4e0F122243B841E55375cdE0d2", "status": "active", "id": "0x596fA47043f99A4e0F122243B841E55375cdE0d2", "links": [ diff --git a/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/info.json b/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/info.json index 27ebc211fa72..bbef827650c7 100644 --- a/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/info.json +++ b/blockchains/avalanchec/assets/0x5fC17416925789E0852FBFcd81c490ca4abc51F9/info.json @@ -5,7 +5,7 @@ "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/address/0x5fC17416925789E0852FBFcd81c490ca4abc51F9", + "explorer": "https://snowtrace.io/token/0x5fC17416925789E0852FBFcd81c490ca4abc51F9", "status": "active", "id": "0x5fC17416925789E0852FBFcd81c490ca4abc51F9", "links": [ diff --git a/blockchains/avalanchec/assets/0x60781C2586D68229fde47564546784ab3fACA982/info.json b/blockchains/avalanchec/assets/0x60781C2586D68229fde47564546784ab3fACA982/info.json index b7d47b8db336..8603b1b7186c 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 fb62116cd42f..d1da905645b1 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 index bd6cf995e102..fb1143f50eb3 100644 --- a/blockchains/avalanchec/assets/0x6145E8a910aE937913426BF32De2b26039728ACF/info.json +++ b/blockchains/avalanchec/assets/0x6145E8a910aE937913426BF32De2b26039728ACF/info.json @@ -1,11 +1,11 @@ { "name": "USD Coin (Portal from BSC)", - "type": "AVALANCHE", "symbol": "USDCbs", + "type": "AVALANCHE", "decimals": 18, "description": "Cross Chain Portal Bridged Token", "website": "https://www.circle.com/en/usdc", - "explorer": "https://snowtrace.io/address/0x6145E8a910aE937913426BF32De2b26039728ACF", + "explorer": "https://snowtrace.io/token/0x6145E8a910aE937913426BF32De2b26039728ACF", "status": "active", "id": "0x6145E8a910aE937913426BF32De2b26039728ACF", "tags": [ diff --git a/blockchains/avalanchec/assets/0x62edc0692BD897D2295872a9FFCac5425011c661/info.json b/blockchains/avalanchec/assets/0x62edc0692BD897D2295872a9FFCac5425011c661/info.json new file mode 100644 index 000000000000..a4b5438a6ed9 --- /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 000000000000..1e964f0a84e3 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 index 282db7bfb5f6..3ca7632ac597 100644 --- a/blockchains/avalanchec/assets/0x63a72806098Bd3D9520cC43356dD78afe5D386D9/info.json +++ b/blockchains/avalanchec/assets/0x63a72806098Bd3D9520cC43356dD78afe5D386D9/info.json @@ -5,7 +5,7 @@ "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/address/0x63a72806098Bd3D9520cC43356dD78afe5D386D9", + "explorer": "https://snowtrace.io/token/0x63a72806098Bd3D9520cC43356dD78afe5D386D9", "status": "active", "id": "0x63a72806098Bd3D9520cC43356dD78afe5D386D9", "links": [ diff --git a/blockchains/avalanchec/assets/0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd/info.json b/blockchains/avalanchec/assets/0x6e84a6216eA6dACC71eE8E6b0a5B7322EEbC0fDd/info.json new file mode 100644 index 000000000000..ccf4bf9688df --- /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 000000000000..7cf47068565d 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 index 469c19acd32a..cd0f0a4f41d0 100644 --- a/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/info.json +++ b/blockchains/avalanchec/assets/0x70928E5B188def72817b7775F0BF6325968e563B/info.json @@ -1,11 +1,11 @@ { "name": "LUNA (Portal)", - "type": "AVALANCHE", "symbol": "LUNA", + "type": "AVALANCHE", "decimals": 6, "description": "Cross Chain Portal Bridged Token", "website": "https://terra.money", - "explorer": "https://snowtrace.io/address/0x70928E5B188def72817b7775F0BF6325968e563B", + "explorer": "https://snowtrace.io/token/0x70928E5B188def72817b7775F0BF6325968e563B", "status": "active", "id": "0x70928E5B188def72817b7775F0BF6325968e563B", "tags": [ diff --git a/blockchains/avalanchec/assets/0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf/info.json b/blockchains/avalanchec/assets/0x7b2B702706D9b361dfE3f00bD138C0CFDA7FB2Cf/info.json new file mode 100644 index 000000000000..ef8d8071fca8 --- /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 000000000000..84683b77288d 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 index 61d8ec6a4750..d4af20ba8d5b 100644 --- a/blockchains/avalanchec/assets/0x88128fd4b259552A9A1D457f435a6527AAb72d42/info.json +++ b/blockchains/avalanchec/assets/0x88128fd4b259552A9A1D457f435a6527AAb72d42/info.json @@ -5,7 +5,7 @@ "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/address/0x88128fd4b259552A9A1D457f435a6527AAb72d42", + "explorer": "https://snowtrace.io/token/0x88128fd4b259552A9A1D457f435a6527AAb72d42", "status": "active", "id": "0x88128fd4b259552A9A1D457f435a6527AAb72d42", "links": [ diff --git a/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/info.json b/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/info.json index 042acb41d5a8..96cf171b0b21 100644 --- a/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/info.json +++ b/blockchains/avalanchec/assets/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9/info.json @@ -5,7 +5,7 @@ "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/address/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9", + "explorer": "https://snowtrace.io/token/0x8a0cAc13c7da965a312f08ea4229c37869e85cB9", "status": "active", "id": "0x8a0cAc13c7da965a312f08ea4229c37869e85cB9", "links": [ diff --git a/blockchains/avalanchec/assets/0x8b82A291F83ca07Af22120ABa21632088fC92931/info.json b/blockchains/avalanchec/assets/0x8b82A291F83ca07Af22120ABa21632088fC92931/info.json index c54801369bcb..90b908d0e19e 100644 --- a/blockchains/avalanchec/assets/0x8b82A291F83ca07Af22120ABa21632088fC92931/info.json +++ b/blockchains/avalanchec/assets/0x8b82A291F83ca07Af22120ABa21632088fC92931/info.json @@ -1,11 +1,11 @@ { "name": "Ether (Portal)", - "type": "AVALANCHE", "symbol": "ETH", + "type": "AVALANCHE", "decimals": 18, "description": "Cross Chain Portal Bridged Token", "website": "https://ethereum.org/en/", - "explorer": "https://snowtrace.io/address/0x8b82A291F83ca07Af22120ABa21632088fC92931", + "explorer": "https://snowtrace.io/token/0x8b82A291F83ca07Af22120ABa21632088fC92931", "status": "active", "id": "0x8b82A291F83ca07Af22120ABa21632088fC92931", "tags": [ diff --git a/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/info.json b/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/info.json index 85921137b853..01563a4d24c7 100644 --- a/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/info.json +++ b/blockchains/avalanchec/assets/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580/info.json @@ -5,7 +5,7 @@ "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/address/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580", + "explorer": "https://snowtrace.io/token/0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580", "status": "active", "id": "0x8eBAf22B6F053dFFeaf46f4Dd9eFA95D89ba8580", "links": [ diff --git a/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json b/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json new file mode 100644 index 000000000000..b5a31d03534e --- /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 000000000000..129342cfae43 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 index 588ba587076f..76efb20dff6b 100644 --- a/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/info.json +++ b/blockchains/avalanchec/assets/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7/info.json @@ -5,7 +5,7 @@ "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/address/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7", + "explorer": "https://snowtrace.io/token/0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7", "status": "active", "id": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7", "links": [ diff --git a/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/info.json b/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/info.json index 1e3c0894e123..496ead8498ed 100644 --- a/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/info.json +++ b/blockchains/avalanchec/assets/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588/info.json @@ -5,7 +5,7 @@ "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/address/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588", + "explorer": "https://snowtrace.io/token/0x98443B96EA4b0858FDF3219Cd13e98C7A4690588", "status": "active", "id": "0x98443B96EA4b0858FDF3219Cd13e98C7A4690588", "links": [ diff --git a/blockchains/avalanchec/assets/0x98a4d09036Cc5337810096b1D004109686E56Afc/info.json b/blockchains/avalanchec/assets/0x98a4d09036Cc5337810096b1D004109686E56Afc/info.json index fd96afbe94d0..9a2a0486fc45 100644 --- a/blockchains/avalanchec/assets/0x98a4d09036Cc5337810096b1D004109686E56Afc/info.json +++ b/blockchains/avalanchec/assets/0x98a4d09036Cc5337810096b1D004109686E56Afc/info.json @@ -1,11 +1,11 @@ { "name": "PancakeSwap Token (Portal)", - "type": "AVALANCHE", "symbol": "CAKE", + "type": "AVALANCHE", "decimals": 18, "description": "Cross Chain Portal Bridged Token", "website": "https://pancakeswap.finance/", - "explorer": "https://snowtrace.io/address/0x98a4d09036Cc5337810096b1D004109686E56Afc", + "explorer": "https://snowtrace.io/token/0x98a4d09036Cc5337810096b1D004109686E56Afc", "status": "active", "id": "0x98a4d09036Cc5337810096b1D004109686E56Afc", "tags": [ diff --git a/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/info.json b/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/info.json index 9c1278a56d30..da05b0b1539b 100644 --- a/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/info.json +++ b/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "DeFi made simple.", "website": "https://yearn.finance/", - "explorer": "https://snowtrace.io/address/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc", + "explorer": "https://snowtrace.io/token/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc", "status": "active", "id": "0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc", "links": [ diff --git a/blockchains/avalanchec/assets/0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a/info.json b/blockchains/avalanchec/assets/0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a/info.json index f9512a941e66..5d5c15886fec 100644 --- a/blockchains/avalanchec/assets/0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a/info.json +++ b/blockchains/avalanchec/assets/0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a/info.json @@ -1,11 +1,11 @@ { "name": "Binance USD (Portal from BSC)", - "type": "AVALANCHE", "symbol": "BUSDbs", + "type": "AVALANCHE", "decimals": 18, "description": "Cross Chain Portal Bridged Token", "website": "https://www.paxos.com/busd/", - "explorer": "https://snowtrace.io/address/0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a", + "explorer": "https://snowtrace.io/token/0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a", "status": "active", "id": "0xA41a6c7E25DdD361343e8Cb8cFa579bbE5eEdb7a", "tags": [ diff --git a/blockchains/avalanchec/assets/0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B/info.json b/blockchains/avalanchec/assets/0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B/info.json index d31d269830a4..1daf409ca999 100644 --- a/blockchains/avalanchec/assets/0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B/info.json +++ b/blockchains/avalanchec/assets/0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B/info.json @@ -1,11 +1,11 @@ { "name": "Tether USD (Portal from BSC)", - "type": "AVALANCHE", "symbol": "USDTbs", + "type": "AVALANCHE", "decimals": 18, "description": "Cross Chain Portal Bridged Token", "website": "https://tether.to/", - "explorer": "https://snowtrace.io/address/0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B", + "explorer": "https://snowtrace.io/token/0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B", "status": "active", "id": "0xA67BCC0D06d7d13A13A2AE30bF30f1B434f5a28B", "tags": [ diff --git a/blockchains/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/info.json b/blockchains/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/info.json index d8f19e37f83c..cea32c4733e1 100644 --- a/blockchains/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/info.json +++ b/blockchains/avalanchec/assets/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664/info.json @@ -5,7 +5,7 @@ "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/address/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664", + "explorer": "https://snowtrace.io/token/0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664", "status": "active", "id": "0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664", "links": [ diff --git a/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/info.json b/blockchains/avalanchec/assets/0xB0a6e056B587D0a85640b39b1cB44086F7a26A1E/info.json index f98b8cfaa0a9..cf441bd13edf 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 index cf4bd4d877ec..5573cadfd4aa 100644 --- a/blockchains/avalanchec/assets/0xB24CA28D4e2742907115fECda335b40dbda07a4C/info.json +++ b/blockchains/avalanchec/assets/0xB24CA28D4e2742907115fECda335b40dbda07a4C/info.json @@ -1,11 +1,11 @@ { "name": "USD Coin (Portal from Ethereum)", - "type": "AVALANCHE", "symbol": "USDCet", + "type": "AVALANCHE", "decimals": 6, "description": "Cross Chain Portal Bridged Token", "website": "https://www.circle.com/en/usdc", - "explorer": "https://snowtrace.io/address/0xB24CA28D4e2742907115fECda335b40dbda07a4C", + "explorer": "https://snowtrace.io/token/0xB24CA28D4e2742907115fECda335b40dbda07a4C", "status": "active", "id": "0xB24CA28D4e2742907115fECda335b40dbda07a4C", "tags": [ diff --git a/blockchains/avalanchec/assets/0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7/info.json b/blockchains/avalanchec/assets/0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7/info.json index 4ea88deb50ef..d2ea5f3b987e 100644 --- a/blockchains/avalanchec/assets/0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7/info.json +++ b/blockchains/avalanchec/assets/0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7/info.json @@ -5,7 +5,7 @@ "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/address/0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "explorer": "https://snowtrace.io/token/0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", "status": "active", "id": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", "links": [ diff --git a/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json b/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json index 927a0381b9a3..068db31c8ecf 100644 --- a/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json +++ b/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "Anyswap is a mpc decentralized cross-chain swap protocol.", "website": "https://anyswap.exchange/", - "explorer": "https://snowtrace.io/address/0xB44a9B6905aF7c801311e8F4E76932ee959c663C", + "explorer": "https://snowtrace.io/token/0xB44a9B6905aF7c801311e8F4E76932ee959c663C", "status": "active", "id": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C", "links": [ diff --git a/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/info.json b/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/info.json index aad9da80b614..23667020134f 100644 --- a/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/info.json +++ b/blockchains/avalanchec/assets/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E/info.json @@ -5,7 +5,7 @@ "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/address/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "explorer": "https://snowtrace.io/token/0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", "status": "active", "id": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", "links": [ diff --git a/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json b/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json new file mode 100644 index 000000000000..3376815a6c4f --- /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 000000000000..68ecfe32afae 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 index f692a28d476c..710ceb54c132 100644 --- a/blockchains/avalanchec/assets/0xBeC243C995409E6520D7C41E404da5dEba4b209B/info.json +++ b/blockchains/avalanchec/assets/0xBeC243C995409E6520D7C41E404da5dEba4b209B/info.json @@ -5,7 +5,7 @@ "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/address/0xBeC243C995409E6520D7C41E404da5dEba4b209B", + "explorer": "https://snowtrace.io/token/0xBeC243C995409E6520D7C41E404da5dEba4b209B", "status": "active", "id": "0xBeC243C995409E6520D7C41E404da5dEba4b209B", "links": [ @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389/info.json b/blockchains/avalanchec/assets/0xC0C5AA69Dbe4d6DDdfBc89c0957686ec60F24389/info.json new file mode 100644 index 000000000000..0be121cf4ee1 --- /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 000000000000..7837957416a7 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 index 65c8c4d0354b..c1615bc9472c 100644 --- a/blockchains/avalanchec/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json +++ b/blockchains/avalanchec/assets/0xC17c30e98541188614dF99239cABD40280810cA3/info.json @@ -1,11 +1,11 @@ { "name": "EverRise", - "type": "AVALANCHE", "symbol": "RISE", + "type": "AVALANCHE", "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://snowtrace.io/address/0xC17c30e98541188614dF99239cABD40280810cA3", + "website": "https://www.everrise.com/", + "explorer": "https://snowtrace.io/token/0xC17c30e98541188614dF99239cABD40280810cA3", "status": "active", "id": "0xC17c30e98541188614dF99239cABD40280810cA3", "links": [ diff --git a/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/info.json b/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/info.json index 8cbf3b0dc4c2..c2ba4b253167 100644 --- a/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/info.json +++ b/blockchains/avalanchec/assets/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814/info.json @@ -5,7 +5,7 @@ "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/address/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814", + "explorer": "https://snowtrace.io/token/0xCE1bFFBD5374Dac86a2893119683F4911a2F7814", "status": "active", "id": "0xCE1bFFBD5374Dac86a2893119683F4911a2F7814", "links": [ diff --git a/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/info.json b/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/info.json index e29a5cb6c49d..a59f529047b6 100644 --- a/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/info.json +++ b/blockchains/avalanchec/assets/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64/info.json @@ -5,7 +5,7 @@ "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/address/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64", + "explorer": "https://snowtrace.io/token/0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64", "status": "active", "id": "0xD24C2Ad096400B6FBcd2ad8B24E7acBc21A1da64", "links": [ diff --git a/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json b/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json index 5ff0c4d4259d..014fea860b03 100644 --- a/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json +++ b/blockchains/avalanchec/assets/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b/info.json @@ -1,11 +1,11 @@ { "name": "Vote-escrowed EverRise", - "type": "AVALANCHE", "symbol": "veRISE", + "type": "AVALANCHE", "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://snowtrace.io/address/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", + "website": "https://www.everrise.com/", + "explorer": "https://snowtrace.io/token/0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", "status": "active", "id": "0xDbA7b24257fC6e397cB7368B4BC922E944072f1b", "links": [ diff --git a/blockchains/avalanchec/assets/0xF0FF231e3F1A50F83136717f287ADAB862f89431/info.json b/blockchains/avalanchec/assets/0xF0FF231e3F1A50F83136717f287ADAB862f89431/info.json index 4872f6e116f7..3b446a410704 100644 --- a/blockchains/avalanchec/assets/0xF0FF231e3F1A50F83136717f287ADAB862f89431/info.json +++ b/blockchains/avalanchec/assets/0xF0FF231e3F1A50F83136717f287ADAB862f89431/info.json @@ -1,11 +1,11 @@ { "name": "Tether USD (Portal from Solana)", - "type": "AVALANCHE", "symbol": "USDTso", + "type": "AVALANCHE", "decimals": 6, "description": "Cross Chain Portal Bridged Token", "website": "https://tether.to/", - "explorer": "https://snowtrace.io/address/0xF0FF231e3F1A50F83136717f287ADAB862f89431", + "explorer": "https://snowtrace.io/token/0xF0FF231e3F1A50F83136717f287ADAB862f89431", "status": "active", "id": "0xF0FF231e3F1A50F83136717f287ADAB862f89431", "tags": [ diff --git a/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/info.json b/blockchains/avalanchec/assets/0xF2F7CE610a091B94d41D69f4fF1129434a82E2f0/info.json index c230be686e03..016ed317a2d4 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 index f805735af87e..295f3968f800 100644 --- a/blockchains/avalanchec/assets/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F/info.json +++ b/blockchains/avalanchec/assets/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F/info.json @@ -1,11 +1,11 @@ { "name": "SOL (Portal)", - "type": "AVALANCHE", "symbol": "SOL", + "type": "AVALANCHE", "decimals": 9, "description": "Cross Chain Portal Bridged Token", "website": "https://solana.com/", - "explorer": "https://snowtrace.io/address/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F", + "explorer": "https://snowtrace.io/token/0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F", "status": "active", "id": "0xFE6B19286885a4F7F55AdAD09C3Cd1f906D2478F", "tags": [ diff --git a/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/info.json b/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/info.json index 99a3e2e2f1eb..b38ae7c05f2d 100644 --- a/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/info.json +++ b/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/info.json @@ -1,11 +1,11 @@ { "name": "UST (Portal)", - "type": "AVALANCHE", "symbol": "UST", + "type": "AVALANCHE", "decimals": 6, "description": "Cross Chain Portal Bridged Token", "website": "https://terra.money", - "explorer": "https://snowtrace.io/address/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1", + "explorer": "https://snowtrace.io/token/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1", "status": "active", "id": "0xb599c3590F42f8F995ECfa0f85D2980B76862fc1", "tags": [ diff --git a/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json b/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json index 456374047944..4a72770cf0e8 100644 --- a/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json +++ b/blockchains/avalanchec/assets/0xbBD7B847C6d0d0B5691518a363194D71426475F1/info.json @@ -1,11 +1,11 @@ { "name": "EverRise Rewards", - "type": "AVALANCHE", "symbol": "claimRISE", + "type": "AVALANCHE", "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://snowtrace.io/address/0xbBD7B847C6d0d0B5691518a363194D71426475F1", + "website": "https://www.everrise.com/", + "explorer": "https://snowtrace.io/token/0xbBD7B847C6d0d0B5691518a363194D71426475F1", "status": "active", "id": "0xbBD7B847C6d0d0B5691518a363194D71426475F1", "links": [ diff --git a/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/info.json b/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/info.json index 26f381dd8002..d94f24d252c0 100644 --- a/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/info.json +++ b/blockchains/avalanchec/assets/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "The Avalanche Bridge Wrapped Compound.", "website": "https://compound.finance/", - "explorer": "https://snowtrace.io/address/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437", + "explorer": "https://snowtrace.io/token/0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437", "status": "active", "id": "0xc3048E19E76CB9a3Aa9d77D8C03c29Fc906e2437", "links": [ diff --git a/blockchains/avalanchec/assets/0xc3344870d52688874b06d844E0C36cc39FC727F6/info.json b/blockchains/avalanchec/assets/0xc3344870d52688874b06d844E0C36cc39FC727F6/info.json new file mode 100644 index 000000000000..caf4e381bbca --- /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 000000000000..9b53519c61de 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 000000000000..948fec583bcc --- /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 000000000000..9d7b0435acaa 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 index 0868a5de3337..23b5a8eaf80b 100644 --- a/blockchains/avalanchec/assets/0xc7198437980c041c805A1EDcbA50c1Ce5db95118/info.json +++ b/blockchains/avalanchec/assets/0xc7198437980c041c805A1EDcbA50c1Ce5db95118/info.json @@ -5,7 +5,7 @@ "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/address/0xc7198437980c041c805A1EDcbA50c1Ce5db95118", + "explorer": "https://snowtrace.io/token/0xc7198437980c041c805A1EDcbA50c1Ce5db95118", "status": "active", "id": "0xc7198437980c041c805A1EDcbA50c1Ce5db95118", "links": [ diff --git a/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/info.json b/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/info.json index 2ac4392c2ec8..e915968e6038 100644 --- a/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/info.json +++ b/blockchains/avalanchec/assets/0xcf799767d366d789e8B446981C2D578E241fa25c/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "USDD is a fully decentralized over-collateralization stablecoin.", "website": "https://usdd.io/", - "explorer": "https://snowtrace.io/address/0xcf799767d366d789e8B446981C2D578E241fa25c", + "explorer": "https://snowtrace.io/token/0xcf799767d366d789e8B446981C2D578E241fa25c", "status": "active", "id": "0xcf799767d366d789e8B446981C2D578E241fa25c", "links": [ diff --git a/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/info.json b/blockchains/avalanchec/assets/0xd039C9079ca7F2a87D632A9C0d7cEa0137bAcFB5/info.json index cad1cc860705..2f1581f8a7f9 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 000000000000..3a01a3779816 --- /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 000000000000..a3b20074ec34 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 index 5755e7fd01e4..6c66d02d6af0 100644 --- a/blockchains/avalanchec/assets/0xd501281565bf7789224523144Fe5D98e8B28f267/info.json +++ b/blockchains/avalanchec/assets/0xd501281565bf7789224523144Fe5D98e8B28f267/info.json @@ -5,7 +5,7 @@ "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/address/0xd501281565bf7789224523144Fe5D98e8B28f267", + "explorer": "https://snowtrace.io/token/0xd501281565bf7789224523144Fe5D98e8B28f267", "status": "active", "id": "0xd501281565bf7789224523144Fe5D98e8B28f267", "links": [ diff --git a/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/info.json b/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/info.json index 172b78805863..0f4628ac7832 100644 --- a/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/info.json +++ b/blockchains/avalanchec/assets/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70/info.json @@ -5,7 +5,7 @@ "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/address/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70", + "explorer": "https://snowtrace.io/token/0xd586E7F844cEa2F87f50152665BCbc2C279D8d70", "status": "active", "id": "0xd586E7F844cEa2F87f50152665BCbc2C279D8d70", "links": [ diff --git a/blockchains/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json b/blockchains/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json index 90783d366cfb..6fa842ae7653 100644 --- a/blockchains/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json +++ b/blockchains/avalanchec/assets/0xd6070ae98b8069de6B494332d1A1a81B6179D960/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "The MultiChain Yield Optimizer", "website": "https://beefy.finance/", - "explorer": "https://snowtrace.io/address/0xd6070ae98b8069de6B494332d1A1a81B6179D960", + "explorer": "https://snowtrace.io/token/0xd6070ae98b8069de6B494332d1A1a81B6179D960", "status": "active", "id": "0xd6070ae98b8069de6B494332d1A1a81B6179D960", "links": [ diff --git a/blockchains/avalanchec/assets/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb/info.json b/blockchains/avalanchec/assets/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb/info.json index 84d52c75a0b1..e118c17a83c3 100644 --- a/blockchains/avalanchec/assets/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb/info.json +++ b/blockchains/avalanchec/assets/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb/info.json @@ -1,11 +1,11 @@ { "name": "MATIC (Portal from Polygon)", - "type": "AVALANCHE", "symbol": "MATICpo", + "type": "AVALANCHE", "decimals": 18, "description": "Cross Chain Portal Bridged Token", "website": "https://polygon.technology/", - "explorer": "https://snowtrace.io/address/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb", + "explorer": "https://snowtrace.io/token/0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb", "status": "active", "id": "0xf2f13f0B7008ab2FA4A2418F4ccC3684E49D20Eb", "tags": [ diff --git a/blockchains/avalanchec/assets/0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC/info.json b/blockchains/avalanchec/assets/0xfaB550568C688d5D8A52C7d794cb93Edc26eC0eC/info.json new file mode 100644 index 000000000000..f8fba9789d37 --- /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 000000000000..69911caea54f 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 da22e7c4dd6e..d0305a29621d 100644 --- a/blockchains/avalanchec/info/info.json +++ b/blockchains/avalanchec/info/info.json @@ -6,6 +6,7 @@ "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": [ diff --git a/blockchains/avalanchec/tokenlist.json b/blockchains/avalanchec/tokenlist.json index 49058e20c9bf..baca6100a5f7 100644 --- a/blockchains/avalanchec/tokenlist.json +++ b/blockchains/avalanchec/tokenlist.json @@ -553,16 +553,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png", "pairs": [] }, - { - "asset": "c10009000_t0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33", - "type": "AVALANCHE", - "address": "0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33", - "name": "JoeBar", - "symbol": "xJOE", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x57319d41F71E81F3c65F2a47CA4e001EbAFd4F33/logo.png", - "pairs": [] - }, { "asset": "c10009000_t0x2147EFFF675e4A4eE1C2f918d181cDBd7a8E208f", "type": "AVALANCHE", @@ -582,6 +572,16 @@ "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": { diff --git a/blockchains/avalanchecfuji/info/info.json b/blockchains/avalanchecfuji/info/info.json new file mode 100644 index 000000000000..99df57957175 --- /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 000000000000..bd5c8e6a96d0 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 000000000000..36fce5dbc814 --- /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 000000000000..7c2b2efe4588 Binary files /dev/null and b/blockchains/axelar/info/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 000000000000..95674f5ffbf9 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1hcu2spr3r80v36us40mg938f5qhaqq2qeajtfv/logo.png differ diff --git a/blockchains/band/validators/list.json b/blockchains/band/validators/list.json index f3718bdfd6a5..f6a727191402 100644 --- a/blockchains/band/validators/list.json +++ b/blockchains/band/validators/list.json @@ -10,5 +10,11 @@ "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": "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/" } -] \ No newline at end of file +] diff --git a/blockchains/binance/assets/XVS-795/logo.png b/blockchains/binance/assets/XVS-795/logo.png index b7782f247324..008d22434f76 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 545732cd1dd9..f0168c17151b 100644 --- a/blockchains/binance/tokenlist.json +++ b/blockchains/binance/tokenlist.json @@ -1,2065 +1,12 @@ { "name": "Trust Wallet: BNB", "logoURI": "https://trustwallet.com/assets/images/favicon.png", - "timestamp": "2022-09-05T01:39:08.105895", + "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-cdn.trustwallet.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": "10000000000", - "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": "10000000000000", - "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": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tDREP-7D2", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tDUSK-45E", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tEBST-783", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tENTRP-C8D", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tEOSBEAR-721", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tEOSBULL-F0D", - "lotSize": "1000000000", - "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": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tFSN-E14", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tFTM-A64", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tGIV-94E", - "lotSize": "1000000000000", - "tickSize": "1" - }, - { - "base": "c714_tGMAT-FC8", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tGTO-908", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tHNST-3C9", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tHYN-F21", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tIRIS-D88", - "lotSize": "10000000000", - "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": "1000000000", - "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": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tMEETONE-031", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tMITH-C76", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tMITX-CAA", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tMTV-4C6", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tMVL-7B0", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tMZK-2C7", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tNEW-09E", - "lotSize": "1000000000000", - "tickSize": "1" - }, - { - "base": "c714_tNEXO-A84", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tNOIZB-878", - "lotSize": "10000000000", - "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": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tPHB-2DF", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tPHV-4A1", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tPIBNB-43C", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tPLG-D8D", - "lotSize": "1000000000000", - "tickSize": "1" - }, - { - "base": "c714_tPVT-554", - "lotSize": "10000000000000", - "tickSize": "1" - }, - { - "base": "c714_tPYN-C37", - "lotSize": "1000000000000", - "tickSize": "1" - }, - { - "base": "c714_tQBX-38C", - "lotSize": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tRAVEN-F66", - "lotSize": "1000000000000", - "tickSize": "1" - }, - { - "base": "c714_tRUNE-B1A", - "lotSize": "100000000", - "tickSize": "1" - }, - { - "base": "c714_tSHR-DB6", - "lotSize": "100000000000", - "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": "10000000000000", - "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": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tUND-EBC", - "lotSize": "1000000000", - "tickSize": "1" - }, - { - "base": "c714_tUPX-F3E", - "lotSize": "1000000000000", - "tickSize": "1" - }, - { - "base": "c714_tVDX-A17", - "lotSize": "1000000000000", - "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": "10000000000", - "tickSize": "1" - }, - { - "base": "c714_tWRX-ED1", - "lotSize": "1000000000", - "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": "10000000", - "tickSize": "10" - }, - { - "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-cdn.trustwallet.com/blockchains/binance/assets/BUSD-BD1/logo.png", - "pairs": [ - { - "base": "c714", - "lotSize": "100000", - "tickSize": "100000" - }, - { - "base": "c714_tADA-9F4", - "lotSize": "100000000", - "tickSize": "100" - }, - { - "base": "c714_tATOM-596", - "lotSize": "10000000", - "tickSize": "10000" - }, - { - "base": "c714_tAVA-645", - "lotSize": "100000000", - "tickSize": "100" - }, - { - "base": "c714_tBAKE-5E0", - "lotSize": "1000000000", - "tickSize": "100" - }, - { - "base": "c714_tBAND-34B", - "lotSize": "100000000", - "tickSize": "1000" - }, - { - "base": "c714_tBCH-1FD", - "lotSize": "1000000", - "tickSize": "100000" - }, - { - "base": "c714_tBIFI-290", - "lotSize": "100000", - "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": "10" - }, - { - "base": "c714_tDOT-64C", - "lotSize": "10000000", - "tickSize": "1000" - }, - { - "base": "c714_tEOS-CDD", - "lotSize": "100000000", - "tickSize": "1000" - }, - { - "base": "c714_tETH-1C9", - "lotSize": "100000", - "tickSize": "1000000" - }, - { - "base": "c714_tFRM-DE7", - "lotSize": "10000000000", - "tickSize": "10" - }, - { - "base": "c714_tINJ-FAE", - "lotSize": "100000000", - "tickSize": "1000" - }, - { - "base": "c714_tLTC-F07", - "lotSize": "1000000", - "tickSize": "10000" - }, - { - "base": "c714_tONT-33D", - "lotSize": "1000000000", - "tickSize": "100" - }, - { - "base": "c714_tRUNE-B1A", - "lotSize": "100000000", - "tickSize": "1000" - }, - { - "base": "c714_tSHR-DB6", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tSWINGBY-888", - "lotSize": "100000000000", - "tickSize": "1" - }, - { - "base": "c714_tSXP-CCC", - "lotSize": "100000000", - "tickSize": "100" - }, - { - "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-cdn.trustwallet.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": "1" - }, - { - "base": "c714_tONE-5F9", - "lotSize": "1000000000", - "tickSize": "10" - }, - { - "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-cdn.trustwallet.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-cdn.trustwallet.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": "10000" - } - ] - }, - { - "asset": "c714_tIDRTB-178", - "type": "BEP2", - "address": "IDRTB-178", - "name": "Rupiah Token", - "symbol": "IDRTB", - "decimals": 8, - "logoURI": "https://assets-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.com/blockchains/binance/assets/TAUDB-888/logo.png", - "pairs": [ - { - "base": "c714", - "lotSize": "100000", - "tickSize": "1000000" - } - ] - }, - { - "asset": "c714_tTHKDB-888", - "type": "BEP2", - "address": "THKDB-888", - "name": "TrueHKD", - "symbol": "THKDB", - "decimals": 8, - "logoURI": "https://assets-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.com/blockchains/binance/assets/BET-844/logo.png" - }, - { - "asset": "c714_tBIFI-290", - "type": "BEP2", - "address": "BIFI-290", - "name": "beefy.finance", - "symbol": "BIFI", - "decimals": 8, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/binance/assets/BIFI-290/logo.png" - }, - { - "asset": "c714_tBKBT-3A6", - "type": "BEP2", - "address": "BKBT-3A6", - "name": "Bitwires Token", - "symbol": "BKBT", - "decimals": 8, - "logoURI": "https://assets-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.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-cdn.trustwallet.com/blockchains/binance/assets/ZEC-93E/logo.png" - } + ], "version": { - "major": 388, + "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 552647496023..a2060a0a06ef 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 1bdadf3a3a0c..04df7170263e 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/bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r/logo.png b/blockchains/binance/validators/assets/bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r/logo.png new file mode 100644 index 000000000000..5d267ae6f79a Binary files /dev/null and b/blockchains/binance/validators/assets/bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r/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 000000000000..68e8a3487a97 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 828a26843ab9..21f0f410fc93 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 38d663fc7c0f..b50266d61434 100644 --- a/blockchains/binance/validators/list.json +++ b/blockchains/binance/validators/list.json @@ -170,21 +170,33 @@ { "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": "bva139vgg7x68z3z7mjcyg6q02h3y0pvah678vr0y3", "name": "HashQuark", diff --git a/blockchains/bnbt/info/info.json b/blockchains/bnbt/info/info.json new file mode 100644 index 000000000000..81ca51addefa --- /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 000000000000..b331d64d89c9 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 index aeea83ae2b46..a70e413d238e 100644 --- a/blockchains/boba/info/info.json +++ b/blockchains/boba/info/info.json @@ -7,6 +7,7 @@ "symbol": "BOBAETH", "type": "coin", "decimals": 18, + "rpc_url": "https://mainnet.boba.network", "status": "active", "links": [ { diff --git a/blockchains/btcdiamond/info/info.json b/blockchains/btcdiamond/info/info.json new file mode 100644 index 000000000000..d3dfcede98e8 --- /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 000000000000..b1ab6e0cb7d0 Binary files /dev/null and b/blockchains/btcdiamond/info/logo.png differ diff --git a/blockchains/cardano/info/info.json b/blockchains/cardano/info/info.json index 9b2cd7fe260b..44378955a8ec 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/validators/assets/pool10akpqvczl93ep4rc59c0aqyn3dm0env2ydysuwmdm670wl24pd8/logo.png b/blockchains/cardano/validators/assets/pool10akpqvczl93ep4rc59c0aqyn3dm0env2ydysuwmdm670wl24pd8/logo.png new file mode 100644 index 000000000000..82f97abdddba 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 000000000000..9e0a327cc9e0 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 000000000000..0ebea80d0462 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 000000000000..70ee36d1bc85 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 000000000000..764734810029 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 000000000000..0354b951cc5b 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 000000000000..4602bf6767d0 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool17rjst78s67lvellg8s586rf076jxa3wnsdz730f4xk2zwuhrtej/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 000000000000..a93323726180 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 000000000000..b41947b2a51b 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 000000000000..102052714989 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1du3r4a7xq60hg2x0wcz7lw5ya3qs74rk258c8kanp93rsqdqu45/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 000000000000..902353978b34 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1ju8f57hyvaa32tp85r468kuedvmjmcy56f8u9968drea57p50l5/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 000000000000..e9f1b4d009ba 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 000000000000..6ccb375c5484 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1vx9tzlkgafernd9vpjpxkenutx2gncj4yn88fpq69823qlwcqrt/logo.png differ diff --git a/blockchains/cardano/validators/list.json b/blockchains/cardano/validators/list.json new file mode 100644 index 000000000000..aa697c9f2902 --- /dev/null +++ b/blockchains/cardano/validators/list.json @@ -0,0 +1,80 @@ +[ + { + "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": "pool19w5khsnmu27au0kprw0kjm8jr7knneysj7lfkqvnu66hyz0jxsx", + "name": "ATADA-2 Stakepool in Austria", + "description": "", + "website": "https://www.stakepool.at/" + }, + { + "id": "pool16fyda57p3c8gp5r6gmcq5tvqsp6mnzwvkxswgznkuh8wztrp6vv", + "name": "Hermes Stakepool Germany #1", + "description": "", + "website": "https://hermespool.jimdofree.com/" + }, + { + "id": "pool195gdnmj6smzuakm4etxsxw3fgh8asqc4awtcskpyfnkpcvh2v8t", + "name": "Sunshine Stake Pool", + "description": "", + "website": "https://sunnyada.io/" + }, + { + "id": "pool1ju8f57hyvaa32tp85r468kuedvmjmcy56f8u9968drea57p50l5", + "name": "Aichi Stake Pool", + "description": "", + "website": "https://aichi-stakepool.com/" + }, + { + "id": "pool15wkxegrfflzcyhurrjxsm9ljqtz09xr5rtnqsarnp7hmsz5um3t", + "name": "Atomic Nodes", + "description": "Atomic Nodes is a multi chain staking operator, trusted by over 200,000 delegators since 2019.", + "website": "https://atomicnodes.com" + }, + { + "id": "pool10c9l3k0z50ytt4krkfet7w3gwpv9d9nq47kk9ecy2c5f2uyvkgk", + "name": "BIRTH | Larissa.Health", + "description": "Improving the world of midwifery with digital tech. Dedicated to reduce pregnancy-related mortality.", + "website": "https://larissa.health" + }, + { + "id": "pool1du3r4a7xq60hg2x0wcz7lw5ya3qs74rk258c8kanp93rsqdqu45", + "name": "Allnodes.com ⚡️ 0% fee", + "description": "Reliable non-custodial Pool run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/ada/staking" + } +] diff --git a/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json b/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/info.json new file mode 100644 index 000000000000..b1a4ab45087d --- /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 000000000000..6c156aba6266 Binary files /dev/null and b/blockchains/celo/assets/0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f/logo.png differ diff --git a/blockchains/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/celo/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 000000000000..d4877bc21860 --- /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 000000000000..69911caea54f 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 710a6f0f928f..4318f70c7dc4 100644 --- a/blockchains/celo/info/info.json +++ b/blockchains/celo/info/info.json @@ -6,7 +6,8 @@ "research": "https://docs.celo.org/", "symbol": "CELO", "type": "coin", - "decimals": 8, + "rpc_url": "https://forno.celo.org", + "decimals": 18, "status": "active", "links": [ { @@ -22,4 +23,4 @@ "url": "https://celo.org/papers" } ] -} \ No newline at end of file +} diff --git a/blockchains/classic/info/info.json b/blockchains/classic/info/info.json index 95e5784b23f6..25a05bdfb573 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 000000000000..65b945bde05e --- /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 000000000000..919e99026dd0 Binary files /dev/null and b/blockchains/comdex/info/logo.png differ diff --git a/blockchains/confluxespace/info/info.json b/blockchains/confluxespace/info/info.json new file mode 100644 index 000000000000..7c3e510e3582 --- /dev/null +++ b/blockchains/confluxespace/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/confluxespace/info/logo.png b/blockchains/confluxespace/info/logo.png new file mode 100644 index 000000000000..c8907ec9be62 Binary files /dev/null and b/blockchains/confluxespace/info/logo.png differ diff --git a/blockchains/coreum/info/info.json b/blockchains/coreum/info/info.json new file mode 100644 index 000000000000..1d606faab5c6 --- /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 000000000000..a8a6a75a598d Binary files /dev/null and b/blockchains/coreum/info/logo.png differ diff --git a/blockchains/cosmos/chainlist.json b/blockchains/cosmos/chainlist.json new file mode 100644 index 000000000000..fc060c826476 --- /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 000000000000..434f53ccac24 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper140e7u946a2nqqkvcnjpjm83d0ynsqem8dnp684/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 000000000000..95674f5ffbf9 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1gf4wlkutql95j7wwsxz490s6fahlvk2s9xpwax/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 000000000000..0dc38d6a8122 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 index f4ef0f5deea0..145cb3cb0991 100644 Binary files a/blockchains/cosmos/validators/assets/cosmosvaloper1r2dthxctqzhwg299e7aaeqwfkgcc9hg8k3yd7m/logo.png and b/blockchains/cosmos/validators/assets/cosmosvaloper1r2dthxctqzhwg299e7aaeqwfkgcc9hg8k3yd7m/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 000000000000..abcfc3298bba 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 0f8d92bbfa08..ae61ed2bc61e 100644 --- a/blockchains/cosmos/validators/list.json +++ b/blockchains/cosmos/validators/list.json @@ -1,7 +1,13 @@ [ + { + "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": "0% Fee 🌻 Sunflower", + "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/" }, @@ -242,7 +248,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" }, { @@ -347,10 +353,28 @@ "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 000000000000..2b8f4f6c341e --- /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 000000000000..303368e4a61b Binary files /dev/null and b/blockchains/crescent/info/logo.png differ diff --git a/blockchains/cronos/info/info.json b/blockchains/cronos/info/info.json index 67c092d865b0..3bb8c0e66932 100644 --- a/blockchains/cronos/info/info.json +++ b/blockchains/cronos/info/info.json @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} diff --git a/blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/info.json b/blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/info.json new file mode 100644 index 000000000000..5b0c752b6a4f --- /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 000000000000..adc4fb004e41 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 000000000000..bbcad0b22be2 --- /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 000000000000..1ab80529f702 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 000000000000..bef05940b879 --- /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 000000000000..4c55ec1d7621 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 000000000000..a5bb571b6a3f --- /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 000000000000..ddeecff30f0f 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 000000000000..6112a818bc80 --- /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 000000000000..06f52b8aa2f3 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 000000000000..4d8f0e7a0cfb --- /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 000000000000..ab55f5e21fae 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 000000000000..c88d10ad4fcb --- /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 000000000000..d054ff564f1f 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 000000000000..2ce4c6eb2db1 --- /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 000000000000..ff2f06032bb0 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 000000000000..b46bc623ec6c --- /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 000000000000..4237ea5518ce 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 000000000000..eba7959636da --- /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 000000000000..deffb84588af 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 000000000000..69bcedf5ffe2 --- /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 000000000000..9e2aeeb433a5 Binary files /dev/null and b/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/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 000000000000..4169fbd4c609 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 000000000000..5870da0bcc75 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 000000000000..b2402257153d 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 000000000000..cae8c0bcf8dd 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 000000000000..40d99e260a31 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 000000000000..c6a26e7e46d9 --- /dev/null +++ b/blockchains/cryptoorg/validators/list.json @@ -0,0 +1,32 @@ +[ + { + "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" + } +] \ No newline at end of file diff --git a/blockchains/elrond/assets/ASH-a642d1/info.json b/blockchains/elrond/assets/ASH-a642d1/info.json new file mode 100644 index 000000000000..fc55783dd782 --- /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 000000000000..641969dbfe45 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 000000000000..e5b3b5d39f98 --- /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 000000000000..a3f6037e9f64 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 index 5235034b5b67..f33f3518819f 100644 --- a/blockchains/elrond/assets/BHAT-c1fde3/info.json +++ b/blockchains/elrond/assets/BHAT-c1fde3/info.json @@ -1,13 +1,13 @@ { "type": "ESDT", "id": "BHAT-c1fde3", - "name": "BHNetwork", + "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.elrond.com/tokens/BHAT-c1fde3", + "explorer": "https://explorer.multiversx.com/tokens/BHAT-c1fde3", "links": [ { "name": "blog", @@ -33,4 +33,4 @@ "tags": [ "defi" ] -} +} diff --git a/blockchains/elrond/assets/BHATWEGLD-f45935/info.json b/blockchains/elrond/assets/BHATWEGLD-f45935/info.json new file mode 100644 index 000000000000..56316f4b6047 --- /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 000000000000..a3f6037e9f64 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 000000000000..aa1c18002a69 --- /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 000000000000..13bda232b44e 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 000000000000..c6487404523b --- /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 000000000000..a3f6037e9f64 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 index ab0abd228f85..a1a2ac0537e2 100644 --- a/blockchains/elrond/assets/CRU-a5f4aa/info.json +++ b/blockchains/elrond/assets/CRU-a5f4aa/info.json @@ -1,13 +1,13 @@ { "type": "ESDT", "id": "CRU-a5f4aa", - "name": "CrustNetwork", + "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.", + "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.elrond.com/tokens/CRU-a5f4aa", + "explorer": "https://explorer.multiversx.com/tokens/CRU-a5f4aa", "links": [ { "name": "twitter", diff --git a/blockchains/elrond/assets/CRUWEGLD-76c269/info.json b/blockchains/elrond/assets/CRUWEGLD-76c269/info.json index 6b92780aee78..47a45188aa59 100644 --- a/blockchains/elrond/assets/CRUWEGLD-76c269/info.json +++ b/blockchains/elrond/assets/CRUWEGLD-76c269/info.json @@ -1,41 +1,41 @@ { "type": "ESDT", "id": "CRUWEGLD-76c269", - "name": "CRU/WEGLD LP", + "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 the Maiar DEX.", - "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/tokens/CRUWEGLD-76c269", + "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.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/CYBER-489c1c/info.json b/blockchains/elrond/assets/CYBER-489c1c/info.json new file mode 100644 index 000000000000..c867ee76288d --- /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 000000000000..affb6cdf67c3 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 000000000000..4dc1a49f3e3a --- /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 000000000000..a3f6037e9f64 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 84aaf7138f0e..25a311838f20 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 b9849b5bdeb4..22a1afcbde62 100644 --- a/blockchains/elrond/assets/EGLDMEXF-5bcc57/info.json +++ b/blockchains/elrond/assets/EGLDMEXF-5bcc57/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "This token tracks your LP token stake in the EGLD/MEX farm on the Maiar DEX.", "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/tokens/EGLDMEXF-5bcc57", + "explorer": "https://explorer.multiversx.com/tokens/EGLDMEXF-5bcc57", "status": "abandoned", "id": "EGLDMEXF-5bcc57", "links": [ diff --git a/blockchains/elrond/assets/EGLDRIDE-7bd51a/info.json b/blockchains/elrond/assets/EGLDRIDE-7bd51a/info.json index bb6135deee70..6d12d020226a 100644 --- a/blockchains/elrond/assets/EGLDRIDE-7bd51a/info.json +++ b/blockchains/elrond/assets/EGLDRIDE-7bd51a/info.json @@ -1,41 +1,41 @@ { "type": "ESDT", "id": "EGLDRIDE-7bd51a", - "name": "EGLD/RIDE LP", + "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 the Maiar DEX.", - "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/tokens/EGLDRIDE-7bd51a", + "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.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/EGLDUSDC-594e5e/info.json b/blockchains/elrond/assets/EGLDUSDC-594e5e/info.json index 74e331a21a88..37160ad50cbb 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 b93767de0dce..e4d038926ece 100644 --- a/blockchains/elrond/assets/EGLDUSDCF-8600f8/info.json +++ b/blockchains/elrond/assets/EGLDUSDCF-8600f8/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "This token tracks your LP token stake in the EGLD/USDC farm on the Maiar DEX.", "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/tokens/EGLDUSDCF-8600f8", + "explorer": "https://explorer.multiversx.com/tokens/EGLDUSDCF-8600f8", "status": "abandoned", "id": "EGLDUSDCF-8600f8", "links": [ diff --git a/blockchains/elrond/assets/ITHEUM-df6f26/info.json b/blockchains/elrond/assets/ITHEUM-df6f26/info.json index 4e313a3b0c5b..c8482d6f244f 100644 --- a/blockchains/elrond/assets/ITHEUM-df6f26/info.json +++ b/blockchains/elrond/assets/ITHEUM-df6f26/info.json @@ -1,13 +1,13 @@ { "type": "ESDT", "id": "ITHEUM-df6f26", - "name": "Itheum", + "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.elrond.com/tokens/ITHEUM-df6f26", + "explorer": "https://explorer.multiversx.com/tokens/ITHEUM-df6f26", "links": [ { "name": "blog", diff --git a/blockchains/elrond/assets/ITHWEGLD-1adc53/info.json b/blockchains/elrond/assets/ITHWEGLD-1adc53/info.json index 952a78d0c100..4b4d66fc2795 100644 --- a/blockchains/elrond/assets/ITHWEGLD-1adc53/info.json +++ b/blockchains/elrond/assets/ITHWEGLD-1adc53/info.json @@ -1,41 +1,41 @@ { "type": "ESDT", "id": "ITHWEGLD-1adc53", - "name": "ITH/WEGLD LP", + "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 the Maiar DEX.", - "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/tokens/ITHWEGLD-1adc53", + "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.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/LKMEX-aab910/info.json b/blockchains/elrond/assets/LKMEX-aab910/info.json index db230c8ffae0..6b697a7b886d 100644 --- a/blockchains/elrond/assets/LKMEX-aab910/info.json +++ b/blockchains/elrond/assets/LKMEX-aab910/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "Locked MEX. Equal in value to MEX. Not tradeable.", "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/tokens/LKMEX-aab910", + "explorer": "https://explorer.multiversx.com/tokens/LKMEX-aab910", "status": "abandoned", "id": "LKMEX-aab910", "links": [ diff --git a/blockchains/elrond/assets/MEX-455c57/info.json b/blockchains/elrond/assets/MEX-455c57/info.json index 143f34767b19..8bd1d600c1a9 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 95c2ef95408a..1172f9966ea6 100644 --- a/blockchains/elrond/assets/MEXFARM-e7af52/info.json +++ b/blockchains/elrond/assets/MEXFARM-e7af52/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "This token tracks your MEX stake in the MEX farm on the Maiar DEX.", "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/tokens/MEXFARM-e7af52", + "explorer": "https://explorer.multiversx.com/tokens/MEXFARM-e7af52", "status": "abandoned", "id": "MEXFARM-e7af52", "links": [ diff --git a/blockchains/elrond/assets/OFE-29eb54/info.json b/blockchains/elrond/assets/OFE-29eb54/info.json new file mode 100644 index 000000000000..92c567e6bcf0 --- /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 000000000000..cfd0570e99e2 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 000000000000..a8e4190c2379 --- /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 000000000000..039e7a50be35 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 000000000000..2b9115846240 --- /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 000000000000..a3f6037e9f64 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 e18510667598..47f60b908bbd 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 000000000000..90eaf0214c3f --- /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 000000000000..89e144aebebe 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 000000000000..d1e3a86a5914 --- /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 000000000000..a3f6037e9f64 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 120f966e6c96..67e4042a1c68 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 index 4c04b28d55a4..aadbaa9d2165 100644 --- a/blockchains/elrond/assets/UTK-2f80e9/info.json +++ b/blockchains/elrond/assets/UTK-2f80e9/info.json @@ -1,13 +1,13 @@ { "type": "ESDT", "id": "UTK-2f80e9", - "name": "Utrust", + "name": "Utrust (on MultiversX)", "symbol": "UTK", "decimals": 18, "status": "active", "description": "Web3 L1 Payments Technology", "website": "https://utrust.com/", - "explorer": "https://explorer.elrond.com/tokens/UTK-2f80e9", + "explorer": "https://explorer.multiversx.com/tokens/UTK-2f80e9", "links": [ { "name": "blog", diff --git a/blockchains/elrond/assets/UTKWEGLD-c960d1/info.json b/blockchains/elrond/assets/UTKWEGLD-c960d1/info.json index 860ab7e7adc1..414cedcc13dd 100644 --- a/blockchains/elrond/assets/UTKWEGLD-c960d1/info.json +++ b/blockchains/elrond/assets/UTKWEGLD-c960d1/info.json @@ -1,41 +1,41 @@ { "type": "ESDT", "id": "UTKWEGLD-c960d1", - "name": "UTK/WEGLD LP", + "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 the Maiar DEX.", - "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/tokens/UTKWEGLD-c960d1", + "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.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/WEGLD-bd4d79/info.json b/blockchains/elrond/assets/WEGLD-bd4d79/info.json index af2909bf02d1..4179dce6c23e 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 5a99f7a3d907..bc7f1ccaeff2 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 index 618a4a0334b9..bcae799bb4b4 100644 --- a/blockchains/elrond/assets/ZPAY-247875/info.json +++ b/blockchains/elrond/assets/ZPAY-247875/info.json @@ -1,13 +1,13 @@ { "type": "ESDT", "id": "ZPAY-247875", - "name": "ZoidPay", + "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.elrond.com/tokens/ZPAY-247875", + "explorer": "https://explorer.multiversx.com/tokens/ZPAY-247875", "links": [ { "name": "blog", diff --git a/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/info.json b/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/info.json index c621dca8d24e..1fb7d488af84 100644 --- a/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/info.json +++ b/blockchains/elrond/assets/ZPAYWEGLD-34e5c1/info.json @@ -1,41 +1,41 @@ { "type": "ESDT", "id": "ZPAYWEGLD-34e5c1", - "name": "ZPAY/WEGLD LP", + "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 the Maiar DEX.", - "website": "https://maiar.exchange", - "explorer": "https://explorer.elrond.com/tokens/ZPAYWEGLD-34e5c1", + "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.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/info/info.json b/blockchains/elrond/info/info.json index c72e41d89cea..ffd3e702ab81 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 83ef50723199..5932b3009f42 100644 Binary files a/blockchains/elrond/info/logo.png and b/blockchains/elrond/info/logo.png differ diff --git a/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/info.json b/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/info.json index 09554baf1b25..2561aff5b596 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 7532cfa3d5e8..000000000000 Binary files a/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/info.json b/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/info.json new file mode 100644 index 000000000000..4fdb8b67caaf --- /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 000000000000..4ed4687e9ea9 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 000000000000..a92d0fbaad4b --- /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 000000000000..7837957416a7 Binary files /dev/null and b/blockchains/ethereum/assets/0x06450dEe7FD2Fb8E39061434BAbCFC05599a6Fb8/logo.png differ diff --git a/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/info.json b/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/info.json new file mode 100644 index 000000000000..d8b5da4f1e21 --- /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 000000000000..06b271597d53 Binary files /dev/null and b/blockchains/ethereum/assets/0x07327a00ba28D413f745C931bbe6bE053B0AD2a6/logo.png differ diff --git a/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/info.json b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/info.json new file mode 100644 index 000000000000..504afe8432f2 --- /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 000000000000..c8e37a57ef89 Binary files /dev/null and b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/logo.png differ diff --git a/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/info.json b/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/info.json new file mode 100644 index 000000000000..57bfba95cda6 --- /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 000000000000..ec31bbd9e703 Binary files /dev/null and b/blockchains/ethereum/assets/0x08e0fAFf8bB80eaf8c30A99920355028b5bD6789/logo.png differ diff --git a/blockchains/ethereum/assets/0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5/info.json b/blockchains/ethereum/assets/0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5/info.json index 7102d0aa0ca2..3694a5f4168e 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/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/info.json b/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/info.json new file mode 100644 index 000000000000..40127bb371e1 --- /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 000000000000..b1298b9670e2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/info.json b/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/info.json new file mode 100644 index 000000000000..e4396b72176b --- /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 000000000000..a8b86a17e77e 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 000000000000..4d0ea1f009b0 --- /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 000000000000..49d0f41e0dbe Binary files /dev/null and b/blockchains/ethereum/assets/0x0c90C57aaf95A3A87eadda6ec3974c99D786511F/logo.png differ diff --git a/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/info.json b/blockchains/ethereum/assets/0x0d02755a5700414B26FF040e1dE35D337DF56218/info.json new file mode 100644 index 000000000000..e019282c3a45 --- /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 000000000000..66ba2f0e0b09 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 000000000000..2a13aa9f841f --- /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 000000000000..577673c43c6a 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 dc37131ddb55..2e47da0cb157 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/0x12970E6868f88f6557B76120662c1B3E50A646bf/info.json b/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/info.json new file mode 100644 index 000000000000..7cbd08095923 --- /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 000000000000..aec8f9959ac3 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 000000000000..e05f98d39b84 --- /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 000000000000..4476222ced2a Binary files /dev/null and b/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/logo.png differ diff --git a/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/info.json b/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/info.json index f4a8913735ad..0520c91d523d 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 052a78bbf67d..000000000000 Binary files a/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/info.json b/blockchains/ethereum/assets/0x16484d73Ac08d2355F466d448D2b79D2039F6EBB/info.json index dac78951c6b7..4ecf20b2a7a4 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 80ffa317f70c..8ccf651fac1e 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/0x17cB1b6623CEF547F16E4C125EBEF6Ec240Ec12a/info.json b/blockchains/ethereum/assets/0x17cB1b6623CEF547F16E4C125EBEF6Ec240Ec12a/info.json new file mode 100644 index 000000000000..d860ba299248 --- /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 000000000000..683bca191b63 --- /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 000000000000..0e44701f916c Binary files /dev/null and b/blockchains/ethereum/assets/0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb/logo.png differ diff --git a/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/info.json b/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/info.json new file mode 100644 index 000000000000..e5ab0be0c0de --- /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 000000000000..4cf9e2ddf99f Binary files /dev/null and b/blockchains/ethereum/assets/0x19E98c4921aAb7E3f5FD2aDca36CFb669c63E926/logo.png differ diff --git a/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/info.json b/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/info.json new file mode 100644 index 000000000000..0d244474cd29 --- /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 000000000000..6c98eb672b3b Binary files /dev/null and b/blockchains/ethereum/assets/0x1A963Df363D01EEBB2816b366d61C917F20e1EbE/logo.png differ diff --git a/blockchains/ethereum/assets/0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5/info.json b/blockchains/ethereum/assets/0x1b5036bEc1B82D44d52Fa953A370b3c6Cd9328B5/info.json new file mode 100644 index 000000000000..49a0ad4e43da --- /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 000000000000..089e9b94e704 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 000000000000..154e0202a3f1 --- /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 000000000000..9d52df39a084 Binary files /dev/null and b/blockchains/ethereum/assets/0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C/logo.png differ diff --git a/blockchains/ethereum/assets/0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987/info.json b/blockchains/ethereum/assets/0x1fc5EF0337AEA85C5f9198853a6E3A579a7A6987/info.json new file mode 100644 index 000000000000..1da50e5b1bc2 --- /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 000000000000..bcfd8caac676 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 02a5c60e141f..9ec2d1a2d713 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 5b78e9246109..000000000000 Binary files a/blockchains/ethereum/assets/0x20398aD62bb2D930646d45a6D4292baa0b860C1f/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/info.json b/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/info.json new file mode 100644 index 000000000000..7768d6040b8b --- /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 000000000000..fc63927a9c90 Binary files /dev/null and b/blockchains/ethereum/assets/0x23894DC9da6c94ECb439911cAF7d337746575A72/logo.png differ diff --git a/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/info.json b/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/info.json new file mode 100644 index 000000000000..e98c2484f4d8 --- /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 000000000000..18784a87d43d Binary files /dev/null and b/blockchains/ethereum/assets/0x243cACb4D5fF6814AD668C3e225246efA886AD5a/logo.png differ diff --git a/blockchains/ethereum/assets/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC/info.json b/blockchains/ethereum/assets/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC/info.json index 5b285a71ae29..a872c0a17e99 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 4565a40b69ce..000000000000 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 index 5bcaeb8a26f5..3f7689f43333 100644 --- a/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/info.json +++ b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/info.json @@ -4,7 +4,7 @@ "symbol": "BLUESPARROW", "decimals": 9, "website": "http://bluesparrowtoken.com", - "description": "The BlueSparrow token was launched 28th October 2021 and was designed to benefit people in all parts of the world no matter the circumstance, country, culture or economic disadvantage. One reason that makes that possible; our draw system!", + "description": "BlueSparrow stands as the premier native token of BlueBit.io Exchange and BlueVinci.io NFT Marketplace. By holding BlueSparrow, users gain access to exclusive trading discounts and lucrative staking opportunities.", "explorer": "https://etherscan.io/token/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE", "status": "active", "id": "0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE", @@ -28,6 +28,10 @@ { "name": "discord", "url": "https://discord.com/invite/bluesparrow" + }, + { + "name": "github", + "url": "https://github.com/BlueSparrowToken" } ], "tags": [ diff --git a/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png index aab1fbdeaa8a..fff673b54dcd 100644 Binary files a/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png and b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png differ diff --git a/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/info.json b/blockchains/ethereum/assets/0x26E1f9F817b3b5FC2146c01ae34826593E593962/info.json new file mode 100644 index 000000000000..b5400357883d --- /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 000000000000..cc13c437d845 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 000000000000..d1b1d22f1c0f --- /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 000000000000..22d28ab4739a 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 000000000000..eaa8bdbe12c3 --- /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 000000000000..7cef12e6eff6 Binary files /dev/null and b/blockchains/ethereum/assets/0x275f5Ad03be0Fa221B4C6649B8AeE09a42D9412A/logo.png differ diff --git a/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/info.json b/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/info.json new file mode 100644 index 000000000000..8e2d6701582c --- /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 000000000000..a3fb80da0a20 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 000000000000..9dcaaee2f8ed --- /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 000000000000..8e0a321445b0 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 000000000000..f8e5458dbe73 --- /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 000000000000..a6a3c27553a0 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 000000000000..4272d2a06adb --- /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 000000000000..3c2010274228 Binary files /dev/null and b/blockchains/ethereum/assets/0x2e9d63788249371f1DFC918a52f8d799F4a38C94/logo.png differ diff --git a/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json b/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json index 0079373a8ba5..ba94351537ca 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 f029ab771e02..43dbc8d7b305 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 000000000000..34b2b036619e --- /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 000000000000..e335b3602d17 Binary files /dev/null and b/blockchains/ethereum/assets/0x33349B282065b0284d756F0577FB39c158F935e6/logo.png differ diff --git a/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/info.json b/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/info.json new file mode 100644 index 000000000000..9bc912b0b636 --- /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 000000000000..a033f381130f Binary files /dev/null and b/blockchains/ethereum/assets/0x341c05c0E9b33C0E38d64de76516b2Ce970bB3BE/logo.png differ diff --git a/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json b/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json index 5958d31b5b03..81c3dd01f910 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 cd641900d6d1..000000000000 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 000000000000..1c11a7e3d493 --- /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 000000000000..835e7b024da9 Binary files /dev/null and b/blockchains/ethereum/assets/0x3A8cCCB969a61532d1E6005e2CE12C200caeCe87/logo.png differ diff --git a/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/info.json b/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/info.json new file mode 100644 index 000000000000..3c9e6f6fcdea --- /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 000000000000..c62d4dcc1b3a Binary files /dev/null and b/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/logo.png differ diff --git a/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/info.json b/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/info.json new file mode 100644 index 000000000000..8e60a1037f1d --- /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 000000000000..cbd3a548a71e Binary files /dev/null and b/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/logo.png differ diff --git a/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json b/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json new file mode 100644 index 000000000000..2b8b10951356 --- /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 000000000000..d61a97f70aac 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 000000000000..52b636ea855c --- /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 000000000000..313ab3ade59b Binary files /dev/null and b/blockchains/ethereum/assets/0x4385328cc4D643Ca98DfEA734360C0F596C83449/logo.png differ diff --git a/blockchains/ethereum/assets/0x456125Cd98107ae0480Ba566f1b716D48Ba31453/info.json b/blockchains/ethereum/assets/0x456125Cd98107ae0480Ba566f1b716D48Ba31453/info.json new file mode 100644 index 000000000000..3c1971f1ec02 --- /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 000000000000..a16cde4bd1f7 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 000000000000..d8169bd28aad --- /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 000000000000..6c156aba6266 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 000000000000..fffdd7e5e240 --- /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 000000000000..20ddde987060 Binary files /dev/null and b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png differ diff --git a/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/info.json b/blockchains/ethereum/assets/0x4Cf89ca06ad997bC732Dc876ed2A7F26a9E7f361/info.json index ffe28fdde1b9..38722dc385c2 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 07cb6c2e9a7e..ad16c843c62c 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/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/info.json b/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/info.json new file mode 100644 index 000000000000..a92907479bac --- /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 000000000000..354f229d3f63 Binary files /dev/null and b/blockchains/ethereum/assets/0x5026F006B85729a8b14553FAE6af249aD16c9aaB/logo.png differ diff --git a/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/info.json b/blockchains/ethereum/assets/0x525A8F6F3Ba4752868cde25164382BfbaE3990e1/info.json new file mode 100644 index 000000000000..31b5728e6ee3 --- /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 000000000000..3539571325a9 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 000000000000..1a1009d13e40 --- /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 000000000000..f8383d887aa5 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 000000000000..ff4f48701bdd --- /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 000000000000..fe575a033db9 Binary files /dev/null and b/blockchains/ethereum/assets/0x54012cDF4119DE84218F7EB90eEB87e25aE6EBd7/logo.png differ diff --git a/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/info.json b/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/info.json new file mode 100644 index 000000000000..7330fcdc1cb9 --- /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 000000000000..dceff00bfbb0 Binary files /dev/null and b/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/logo.png differ diff --git a/blockchains/ethereum/assets/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3/info.json b/blockchains/ethereum/assets/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3/info.json new file mode 100644 index 000000000000..c48742c42d5c --- /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": "active", + "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/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3/logo.png b/blockchains/ethereum/assets/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3/logo.png new file mode 100644 index 000000000000..3599f8faa7e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3/logo.png differ diff --git a/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/info.json b/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/info.json new file mode 100644 index 000000000000..9c08223b50e0 --- /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 000000000000..007114fa02d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/logo.png differ diff --git a/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/info.json b/blockchains/ethereum/assets/0x5fAa989Af96Af85384b8a938c2EdE4A7378D9875/info.json new file mode 100644 index 000000000000..0802bc02b25a --- /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 000000000000..2c93c622e823 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 2aa5c90b30f3..d6ce3e0ebdb2 100644 --- a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json +++ b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json @@ -1,33 +1,25 @@ { - "name": "Ethereans", - "symbol": "OS", + "name": "NONbeta", + "symbol": "SOON", "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 the NONgov BETA. After the NONnation release the NON token, will be distributed 1:1 to OS holders", + "website": "https://nonnation.xyz", "explorer": "https://etherscan.io/token/0x6100dd79fCAA88420750DceE3F735d168aBcB771", "status": "active", "id": "0x6100dd79fCAA88420750DceE3F735d168aBcB771", "links": [ - { - "name": "github", - "url": "https://github.com/ethereansos" - }, { "name": "twitter", - "url": "https://twitter.com/ethereansos" + "url": "https://twitter.com/nonlabshq" }, { "name": "discord", - "url": "https://discord.com/nHZ2bUd" - }, - { - "name": "medium", - "url": "https://medium.com/ethereansos" + "url": "https://discord.com/nonlabs" }, { "name": "youtube", - "url": "https://youtube.com/channel/UCeC1Qr2i-t4x4RGO0MwkIDQ" + "url": "https://youtube.com/@nonlabs" } ] -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png index ae490a1e927c..98342ec40dd8 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/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/info.json b/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/info.json new file mode 100644 index 000000000000..15eabc344729 --- /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 000000000000..c62c82fc46ea 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 000000000000..fdca635aff9f --- /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 000000000000..686dbf331326 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 000000000000..cfd5982981b9 --- /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 000000000000..bf1c9f3405e6 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 000000000000..6315a0153ea1 --- /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 000000000000..db68f1ad4e46 Binary files /dev/null and b/blockchains/ethereum/assets/0x644192291cc835A93d6330b24EA5f5FEdD0eEF9e/logo.png differ diff --git a/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/info.json b/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/info.json new file mode 100644 index 000000000000..f0b1e67f66fc --- /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 000000000000..c0623a5baa6d 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 000000000000..69c3b73ad487 --- /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 000000000000..cad91b5eadb3 Binary files /dev/null and b/blockchains/ethereum/assets/0x678e840C640F619E17848045D23072844224dD37/logo.png differ diff --git a/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/info.json b/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/info.json new file mode 100644 index 000000000000..551d2f03b623 --- /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 000000000000..9b4a73e8db23 Binary files /dev/null and b/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/logo.png differ diff --git a/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/info.json b/blockchains/ethereum/assets/0x6f80310CA7F2C654691D1383149Fa1A57d8AB1f8/info.json new file mode 100644 index 000000000000..5ca6b58d9c38 --- /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 000000000000..7e2a636e2948 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 index d5f5936138dd..530fc6718b28 100644 --- a/blockchains/ethereum/assets/0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8/info.json +++ b/blockchains/ethereum/assets/0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "LUFFY", "decimals": 9, - "status": "active", + "status": "abandoned", "id": "0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8", "tags": [ "nft" diff --git a/blockchains/ethereum/assets/0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8/logo.png b/blockchains/ethereum/assets/0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8/logo.png deleted file mode 100644 index 025ee9f98d45..000000000000 Binary files a/blockchains/ethereum/assets/0x7121D00b4fA18F13Da6c2e30d19C04844E6AfDC8/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/info.json b/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/info.json new file mode 100644 index 000000000000..0bbf54165b75 --- /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 000000000000..9d7b0435acaa Binary files /dev/null and b/blockchains/ethereum/assets/0x720CD16b011b987Da3518fbf38c3071d4F0D1495/logo.png differ diff --git a/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/info.json b/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/info.json new file mode 100644 index 000000000000..122bb1129201 --- /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 000000000000..b4731ac614ad --- /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 000000000000..ee3475dce802 Binary files /dev/null and b/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/logo.png differ diff --git a/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/info.json b/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/info.json new file mode 100644 index 000000000000..2968ee118c3e --- /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 000000000000..152cba93d5df 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 000000000000..6683e3624664 --- /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 000000000000..cc526a26256c Binary files /dev/null and b/blockchains/ethereum/assets/0x7825e833D495F3d1c28872415a4aee339D26AC88/logo.png differ diff --git a/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/info.json b/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/info.json new file mode 100644 index 000000000000..a65131d2734e --- /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 000000000000..885fbedb44e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x799ebfABE77a6E34311eeEe9825190B9ECe32824/logo.png differ diff --git a/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/info.json b/blockchains/ethereum/assets/0x7D8146cf21e8D7cbe46054e01588207b51198729/info.json new file mode 100644 index 000000000000..a5c189254c70 --- /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 000000000000..b8f85ad95a0b 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 000000000000..3f606b7054b0 --- /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/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json b/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json index b1f429a4ba35..5ca0f8da5187 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 f30e4ef05ea4..1d15389d0957 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/0x7bb1A6b19e37028B3aA5c580339c640720E35203/info.json b/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/info.json new file mode 100644 index 000000000000..410845b7754e --- /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 000000000000..3b2e55810482 Binary files /dev/null and b/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/logo.png differ diff --git a/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json b/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json index 2f1ed10cc7be..e05e149f3010 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 60932da90cae..3765491ca96c 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/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/info.json b/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/info.json new file mode 100644 index 000000000000..aab9d4ca8754 --- /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 000000000000..1805ec23d165 Binary files /dev/null and b/blockchains/ethereum/assets/0x829C97092C0Cc92EfE7397dd3ddb831Cc5835Bae/logo.png differ diff --git a/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/info.json b/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/info.json new file mode 100644 index 000000000000..8e1ed6372b06 --- /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 000000000000..46fe17fb77bd 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 index 271db34c92d0..a400e96581e5 100644 --- a/blockchains/ethereum/assets/0x84FA8f52E437Ac04107EC1768764B2b39287CB3e/info.json +++ b/blockchains/ethereum/assets/0x84FA8f52E437Ac04107EC1768764B2b39287CB3e/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0x84FA8f52E437Ac04107EC1768764B2b39287CB3e", "links": [ { diff --git a/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/info.json b/blockchains/ethereum/assets/0x84cA8bc7997272c7CfB4D0Cd3D55cd942B3c9419/info.json index baea6e8811fe..313041befb26 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 cf40550575c6..8fd8d3e70ba4 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/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/info.json b/blockchains/ethereum/assets/0x8642A849D0dcb7a15a974794668ADcfbe4794B56/info.json new file mode 100644 index 000000000000..53fc6fff9090 --- /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 000000000000..5725990a5e6f 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 000000000000..0cbadd9a5c7a --- /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/0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2/info.json b/blockchains/ethereum/assets/0x8A2279d4A90B6fe1C4B30fa660cC9f926797bAA2/info.json index 84740236134d..79375f911312 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/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/info.json b/blockchains/ethereum/assets/0x8Fc8f8269ebca376D046Ce292dC7eaC40c8D358A/info.json new file mode 100644 index 000000000000..e8555b550752 --- /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 000000000000..ee8b25edc548 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 000000000000..0a481b0fe34b --- /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 000000000000..d1e3a04a7a07 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 000000000000..50f25d4987d8 --- /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 000000000000..55d19d6f4d0d 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 000000000000..614bdbbdf0d6 --- /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 000000000000..ac25780141b5 Binary files /dev/null and b/blockchains/ethereum/assets/0x8dc89F4716E027394Bba225b82328C1ea2Ea58Bf/logo.png differ diff --git a/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json b/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/info.json new file mode 100644 index 000000000000..9154082a6393 --- /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 000000000000..2592a2e3e7c1 Binary files /dev/null and b/blockchains/ethereum/assets/0x8f006D1e1D9dC6C98996F50a4c810F17a47fBF19/logo.png differ diff --git a/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/info.json b/blockchains/ethereum/assets/0x91Af0fBB28ABA7E31403Cb457106Ce79397FD4E6/info.json new file mode 100644 index 000000000000..cd66d08eba3a --- /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 000000000000..bf6158f04300 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 000000000000..2ec94b1c768b --- /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 000000000000..0acb590111f8 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 000000000000..4f3e2c3be446 --- /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 000000000000..3e041120b65b 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 000000000000..efa925d1c090 --- /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 000000000000..97fa01b1fa6c 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 000000000000..02943154b3fb --- /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 000000000000..044ef07d91e1 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 7807396cbe78..3f2ba45185b6 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 d4d1c9c8123b..129342cfae43 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 6952fdc8ea0d..dbb0794df418 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 f972ed0baefc..db59eecdb6ee 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 000000000000..8109433f6da7 --- /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 000000000000..2ef0532b8c00 Binary files /dev/null and b/blockchains/ethereum/assets/0x976a95786DA6f6eE1c0755cCFB9A22adac2BF7B2/logo.png differ diff --git a/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/info.json b/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/info.json new file mode 100644 index 000000000000..5f29df04b4d0 --- /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 000000000000..74b84c85522d 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 000000000000..661afc6a952b --- /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 000000000000..fa9315e10290 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 000000000000..a33707aead88 --- /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 000000000000..16117ff79d76 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 000000000000..bfe9276531da --- /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 000000000000..82f4e57e96b1 Binary files /dev/null and b/blockchains/ethereum/assets/0x9B9647431632AF44be02ddd22477Ed94d14AacAa/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/info.json b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/info.json new file mode 100644 index 000000000000..3b4499d0259a --- /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 000000000000..ffba09e350c7 Binary files /dev/null and b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/logo.png differ diff --git a/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json new file mode 100644 index 000000000000..9118a603e8d7 --- /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 000000000000..665e296697e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/logo.png differ diff --git a/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/info.json b/blockchains/ethereum/assets/0x9f826324bb9BdcF7E7Eb274BEDc417BD45D74F39/info.json new file mode 100644 index 000000000000..99799d4fb56f --- /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 000000000000..8eaad5d69526 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 000000000000..b32ddea3fd77 --- /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 000000000000..75650993dc4b 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 6d935174dba1..28fc1d944f62 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 d26f16ffbe92..18629f0ee352 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 000000000000..a5a2866d24c8 --- /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 000000000000..7bbf06f202f3 Binary files /dev/null and b/blockchains/ethereum/assets/0xA35923162C49cF95e6BF26623385eb431ad920D3/logo.png differ diff --git a/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/info.json b/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/info.json new file mode 100644 index 000000000000..6e8285412cef --- /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 000000000000..5badff4b8b69 Binary files /dev/null and b/blockchains/ethereum/assets/0xA4Eb9C64eC359D093eAc7B65F51Ef933D6e5F7cd/logo.png differ diff --git a/blockchains/ethereum/assets/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be/info.json b/blockchains/ethereum/assets/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be/info.json index 829b22816be9..769fdce3e1d4 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 2d0c52071238..000000000000 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 000000000000..a4e593cc6cda --- /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 000000000000..a912e8bc9284 Binary files /dev/null and b/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/logo.png differ diff --git a/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/info.json b/blockchains/ethereum/assets/0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A/info.json new file mode 100644 index 000000000000..60d49c644b1a --- /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 000000000000..eb99be64fe16 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 000000000000..926187b37a22 --- /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 000000000000..f426f46f701b 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 000000000000..ff4941d421f3 --- /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 000000000000..b071fbc3b039 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 89cb6230f9c0..bb32f2c7a486 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 000000000000..201792a75197 --- /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 000000000000..5402ed6bc17a Binary files /dev/null and b/blockchains/ethereum/assets/0xB50721BCf8d664c30412Cfbc6cf7a15145234ad1/logo.png differ diff --git a/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png b/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png index 4ab97c315c9f..9db68a25f3b4 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 000000000000..e1b68e704fe3 --- /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 000000000000..68ecfe32afae Binary files /dev/null and b/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/logo.png differ diff --git a/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/info.json b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/info.json new file mode 100644 index 000000000000..5bbd26740cf3 --- /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 000000000000..f04a7ed2bc07 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 000000000000..4d4cb2d4e97e --- /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 000000000000..96cf2327a388 Binary files /dev/null and b/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/logo.png differ diff --git a/blockchains/ethereum/assets/0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6/info.json b/blockchains/ethereum/assets/0xC727f87871ee12Bbcedd2973746D1Deb7529aaD6/info.json new file mode 100644 index 000000000000..ee06de6f1235 --- /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 000000000000..01df4e76f429 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 000000000000..424ca411a0d5 --- /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 000000000000..87567f6040b4 Binary files /dev/null and b/blockchains/ethereum/assets/0xC7a2572fA8FDB0f7E81d6D3c4e3CCF78FB0DC374/logo.png differ diff --git a/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/info.json b/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/info.json new file mode 100644 index 000000000000..31633c3079c4 --- /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 000000000000..c62f383e379d 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 000000000000..95459c411900 --- /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 000000000000..90553a43201c 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 1dd63e79b066..d5278e4cc57f 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 000000000000..716ab1606a54 --- /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 000000000000..39b73c08d4eb Binary files /dev/null and b/blockchains/ethereum/assets/0xD13cfD3133239a3c73a9E535A5c4DadEE36b395c/logo.png differ diff --git a/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/info.json b/blockchains/ethereum/assets/0xD39a2CeCBA2657e125Ba6a5c98ad2F6b6D7E83FD/info.json new file mode 100644 index 000000000000..2c41cecc1a05 --- /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 000000000000..df237d67d1d0 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 000000000000..67bd81c043d7 --- /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 000000000000..f548b2000edb 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 000000000000..0f27ee109087 --- /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 000000000000..5fce9b50afd0 Binary files /dev/null and b/blockchains/ethereum/assets/0xDE075D9ADbD0240b4462F124af926452Ad0BAC91/logo.png differ diff --git a/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png index 21fa17ac3330..e4ad872be94a 100644 Binary files a/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png and b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png differ diff --git a/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/info.json b/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/info.json new file mode 100644 index 000000000000..0387a6a2d9fe --- /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 000000000000..a7f87d6beb8d Binary files /dev/null and b/blockchains/ethereum/assets/0xDa49AF8773Cb162ca56f8431442c750896F8C87A/logo.png differ diff --git a/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/info.json b/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/info.json new file mode 100644 index 000000000000..12c6e4f8549f --- /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 000000000000..640bfae58212 Binary files /dev/null and b/blockchains/ethereum/assets/0xDf801468a808a32656D2eD2D2d80B72A129739f4/logo.png differ diff --git a/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/info.json b/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/info.json new file mode 100644 index 000000000000..935dd847ec11 --- /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 000000000000..a9b0f8d10fc0 Binary files /dev/null and b/blockchains/ethereum/assets/0xF17e65822b568B3903685a7c9F496CF7656Cc6C2/logo.png differ diff --git a/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json b/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json new file mode 100644 index 000000000000..b6bb98e07c2d --- /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/0x84FA8f52E437Ac04107EC1768764B2b39287CB3e/logo.png b/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/logo.png similarity index 100% rename from blockchains/ethereum/assets/0x84FA8f52E437Ac04107EC1768764B2b39287CB3e/logo.png rename to blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/logo.png diff --git a/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/info.json b/blockchains/ethereum/assets/0xF3A3023e6Dede84AD88a656A3269F2A36e83c9a9/info.json new file mode 100644 index 000000000000..bd427d97de14 --- /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 000000000000..855db6d96629 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 000000000000..4094292c31f6 --- /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 000000000000..1b49f3d95790 Binary files /dev/null and b/blockchains/ethereum/assets/0xF57e7e7C23978C3cAEC3C3548E3D615c346e79fF/logo.png differ diff --git a/blockchains/ethereum/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json b/blockchains/ethereum/assets/0xFbC4f3f645C4003a2E4F4e9b51077d2DaA9a9341/info.json index 9548290dd863..ffd760f02655 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/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json b/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json new file mode 100644 index 000000000000..6f68b450b287 --- /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 000000000000..f21a9869c8c2 Binary files /dev/null and b/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/logo.png differ diff --git a/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/info.json b/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/info.json new file mode 100644 index 000000000000..ef01fb0ac8b4 --- /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 000000000000..560c088528bd Binary files /dev/null and b/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/logo.png differ diff --git a/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/info.json b/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/info.json new file mode 100644 index 000000000000..fab907a83dd5 --- /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/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/info.json b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/info.json new file mode 100644 index 000000000000..053847110ac3 --- /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 000000000000..a78954eb8bc5 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 000000000000..9190ee5e03a2 --- /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 000000000000..d351ad85ab0f Binary files /dev/null and b/blockchains/ethereum/assets/0xaE0585a259A3BCAB258D6EE02FB583f7B33C2a12/logo.png differ diff --git a/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json b/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json index fa09aa0fa911..432761aba552 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/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json b/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/info.json new file mode 100644 index 000000000000..62b86039cfd7 --- /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 000000000000..cc526a26256c Binary files /dev/null and b/blockchains/ethereum/assets/0xb6C53431608E626AC81a9776ac3e999c5556717c/logo.png differ diff --git a/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json b/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json new file mode 100644 index 000000000000..a2bf4d1a9f3c --- /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/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/info.json b/blockchains/ethereum/assets/0xbBbfa5d0Bfd30B9ebce64b06E3E9Fc85E7f0F396/info.json new file mode 100644 index 000000000000..16f0cf4ce385 --- /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 000000000000..962f15a8fd0c 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 e988ffd7c33d..3bbd2d3fa986 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 000000000000..11f57130939c --- /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 000000000000..e4996ed3af47 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 000000000000..151718fe6293 --- /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 000000000000..a6cab14df317 Binary files /dev/null and b/blockchains/ethereum/assets/0xbc4171f45EF0EF66E76F979dF021a34B46DCc81d/logo.png differ diff --git a/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json b/blockchains/ethereum/assets/0xbededDf2eF49E87037c4fb2cA34d1FF3D3992A11/info.json new file mode 100644 index 000000000000..26ce415bb493 --- /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 000000000000..94405ed8c677 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 000000000000..69be58b41709 --- /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 000000000000..d50f76fa4759 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 000000000000..a3596fee84dd --- /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 000000000000..e7332202bcb5 Binary files /dev/null and b/blockchains/ethereum/assets/0xc314b0E758D5FF74f63e307A86EbfE183C95767b/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/info.json b/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/info.json new file mode 100644 index 000000000000..060043df1bb7 --- /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 000000000000..0ee02b15f04e Binary files /dev/null and b/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/logo.png differ diff --git a/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/info.json b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/info.json new file mode 100644 index 000000000000..fcf0e7be82d3 --- /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 000000000000..a9db922bc0cd Binary files /dev/null and b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/logo.png differ diff --git a/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json b/blockchains/ethereum/assets/0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5/info.json new file mode 100644 index 000000000000..8cebaec1467b --- /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 000000000000..6a8b61f41102 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 000000000000..e2c44478effa --- /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 000000000000..a83d58a242a0 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 000000000000..6b559ad1324f --- /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 000000000000..25ffd17b2334 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 000000000000..2a89b18b36d0 --- /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 000000000000..55b737ada1a1 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 000000000000..4ad6347443e4 --- /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 000000000000..2467cb033db3 Binary files /dev/null and b/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/logo.png differ diff --git a/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/info.json b/blockchains/ethereum/assets/0xd38BB40815d2B0c2d2c866e0c72c5728ffC76dd9/info.json new file mode 100644 index 000000000000..0d0bdb813cdd --- /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 000000000000..26f3dbd58537 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 000000000000..b55c899f532a --- /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 000000000000..a3b20074ec34 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 000000000000..029160cb28b3 --- /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 000000000000..376f2689dbc5 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 383d100496ca..d59a0d7932d8 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 000000000000..77bf380acabd --- /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 000000000000..599cd735e829 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 000000000000..3b52996cfb7c --- /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 000000000000..6fda6afdd530 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 000000000000..1695400eecce --- /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 000000000000..81b5b64e14b5 Binary files /dev/null and b/blockchains/ethereum/assets/0xdab396cCF3d84Cf2D07C4454e10C8A6F5b008D2b/logo.png differ diff --git a/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/info.json b/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/info.json new file mode 100644 index 000000000000..3d42741d5c7c --- /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 000000000000..c763e1fe930c 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 8a67e5fb0f6e..b93f9ca62b92 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 51fb96689f20..000000000000 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 dcc5ff1a0d0c..f3a521dc1391 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/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 000000000000..411e3796c92e --- /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 000000000000..9259df4c30a9 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 000000000000..c92794e4f34a --- /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 000000000000..9aa7d1c15133 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 5762c7711fbf..cfb06fa0ae39 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 000000000000..974362b0804e --- /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 000000000000..24ec21b805ea Binary files /dev/null and b/blockchains/ethereum/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png differ diff --git a/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/info.json b/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/info.json index 3246f6e38545..e578a9b93cb5 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 3518a7072812..26173628d7ad Binary files a/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/logo.png and b/blockchains/ethereum/assets/0xf230b790E05390FC8295F4d3F60332c93BEd42e2/logo.png differ diff --git a/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json b/blockchains/ethereum/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json new file mode 100644 index 000000000000..a97ee6021aac --- /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 000000000000..0043c489ef12 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 000000000000..53389e83ce0a --- /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 000000000000..4463a7100f8f Binary files /dev/null and b/blockchains/ethereum/assets/0xf7168c8AbB0ff80116413a8d95396BBdC318A3fF/logo.png differ diff --git a/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/info.json b/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/info.json new file mode 100644 index 000000000000..66540990971b --- /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 000000000000..f7ee1d61e88a 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 000000000000..a4456daf883f --- /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 000000000000..bc67c8628bee 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 000000000000..582fe46b5778 --- /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 000000000000..3c1ad56e03a3 Binary files /dev/null and b/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/logo.png differ diff --git a/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/info.json b/blockchains/ethereum/assets/0xff8C479134A18918059493243943150776cF8CF2/info.json new file mode 100644 index 000000000000..c07f3326de1f --- /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 000000000000..dae785169e0a 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 000000000000..122f6f5943b6 --- /dev/null +++ b/blockchains/ethereum/chainlist.json @@ -0,0 +1,144 @@ +{ + "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" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/tokenlist.json b/blockchains/ethereum/tokenlist.json index f0cbe3a89907..73397b68cf0a 100644 --- a/blockchains/ethereum/tokenlist.json +++ b/blockchains/ethereum/tokenlist.json @@ -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" }, @@ -504,6 +498,18 @@ }, { "base": "c60_t0xf4d2888d29D722226FafA5d9B24F9164c092421E" + }, + { + "base": "c60_t0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96" + }, + { + "base": "c60_t0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C" + }, + { + "base": "c60_t0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A" + }, + { + "base": "c60_t0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb" } ] }, @@ -528,16 +534,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x0000000000095413afC295d19EDeb1Ad7B71c952/logo.png", "pairs": [] }, - { - "asset": "c60_t0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0", - "type": "ERC20", - "address": "0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0", - "name": "AllianceBlock", - "symbol": "ALBT", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x00a8b738E453fFd858a7edf03bcCfe20412f0Eb0/logo.png", - "pairs": [] - }, { "asset": "c60_t0x00c83aeCC790e8a4453e5dD3B0B4b3680501a7A7", "type": "ERC20", @@ -1209,16 +1205,6 @@ "logoURI": "https://assets-cdn.trustwallet.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-cdn.trustwallet.com/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/logo.png", - "pairs": [] - }, { "asset": "c60_t0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1", "type": "ERC20", @@ -2196,7 +2182,7 @@ "asset": "c60_t0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", "type": "ERC20", "address": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "name": "DeFi Yield Protocol", + "name": "Dypius", "symbol": "DYP", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png", @@ -2547,13 +2533,13 @@ "pairs": [] }, { - "asset": "c60_t0xB4d930279552397bbA2ee473229f89Ec245bc365", + "asset": "c60_t0x745407c86DF8DB893011912d3aB28e68B62E49B0", "type": "ERC20", - "address": "0xB4d930279552397bbA2ee473229f89Ec245bc365", + "address": "0x745407c86DF8DB893011912d3aB28e68B62E49B0", "name": "MahaDAO", "symbol": "MAHA", "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xB4d930279552397bbA2ee473229f89Ec245bc365/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/logo.png", "pairs": [] }, { @@ -2678,16 +2664,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xbC396689893D065F41bc2C6EcbeE5e0085233447/logo.png", "pairs": [] }, - { - "asset": "c60_t0xbE9375C6a420D2eEB258962efB95551A5b722803", - "type": "ERC20", - "address": "0xbE9375C6a420D2eEB258962efB95551A5b722803", - "name": "StormX", - "symbol": "STMX", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/logo.png", - "pairs": [] - }, { "asset": "c60_t0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb", "type": "ERC20", @@ -3386,13 +3362,13 @@ "pairs": [] }, { - "asset": "c60_t0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA", + "asset": "c60_t0xd1d2Eb1B1e90B638588728b4130137D262C87cae", "type": "ERC20", - "address": "0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA", + "address": "0xd1d2Eb1B1e90B638588728b4130137D262C87cae", "name": "Gala", "symbol": "GALA", "decimals": 8, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xd1d2Eb1B1e90B638588728b4130137D262C87cae/logo.png", "pairs": [] }, { @@ -3494,6 +3470,46 @@ "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": [] } ], "version": { diff --git a/blockchains/ethereumpow/info/info.json b/blockchains/ethereumpow/info/info.json new file mode 100644 index 000000000000..79e216107689 --- /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 000000000000..dbc9a756f806 Binary files /dev/null and b/blockchains/ethereumpow/info/logo.png differ diff --git a/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/info.json b/blockchains/fantom/assets/0x0615Dbba33Fe61a31c7eD131BDA6655Ed76748B1/info.json new file mode 100644 index 000000000000..c1af9779cbbf --- /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 000000000000..1660741aaf75 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 000000000000..1cb95586a6e6 --- /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 000000000000..69911caea54f 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 000000000000..2a50b820228f --- /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 000000000000..7d6492349065 Binary files /dev/null and b/blockchains/fantom/assets/0x21Ada0D2aC28C3A5Fa3cD2eE30882dA8812279B6/logo.png differ diff --git a/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/info.json b/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/info.json new file mode 100644 index 000000000000..b3323b4c87b6 --- /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 000000000000..9db68a25f3b4 Binary files /dev/null and b/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/logo.png differ diff --git a/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/info.json b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/info.json new file mode 100644 index 000000000000..734cfda57ef0 --- /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 000000000000..5cd7c3995430 Binary files /dev/null and b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/logo.png differ diff --git a/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json b/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json new file mode 100644 index 000000000000..1cd4aebadc99 --- /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 000000000000..6c156aba6266 Binary files /dev/null and b/blockchains/fantom/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/logo.png differ diff --git a/blockchains/fantom/assets/0x9564fBfD3B3819D6Fb2DbC88C75E112400bE8F0C/info.json b/blockchains/fantom/assets/0x9564fBfD3B3819D6Fb2DbC88C75E112400bE8F0C/info.json new file mode 100644 index 000000000000..1a4b4f4ec6a7 --- /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 000000000000..44b1ce307185 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 000000000000..6c424cdaa65e --- /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 000000000000..9d7b0435acaa 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 000000000000..3b5041641290 --- /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 000000000000..9db68a25f3b4 Binary files /dev/null and b/blockchains/fantom/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png differ diff --git a/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/info.json b/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/info.json new file mode 100644 index 000000000000..cbe6cc027c77 --- /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 000000000000..bdded7aa1301 Binary files /dev/null and b/blockchains/fantom/assets/0xCfC785741Dc0e98ad4c9F6394Bb9d43Cd1eF5179/logo.png differ diff --git a/blockchains/fantom/assets/0xE55e19Fb4F2D85af758950957714292DAC1e25B2/info.json b/blockchains/fantom/assets/0xE55e19Fb4F2D85af758950957714292DAC1e25B2/info.json new file mode 100644 index 000000000000..af10640c2468 --- /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 000000000000..577673c43c6a Binary files /dev/null and b/blockchains/fantom/assets/0xE55e19Fb4F2D85af758950957714292DAC1e25B2/logo.png differ diff --git a/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json new file mode 100644 index 000000000000..a4b2d624c588 --- /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 000000000000..a3b20074ec34 Binary files /dev/null and b/blockchains/fantom/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png differ diff --git a/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 000000000000..fdb965a3901a --- /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 000000000000..9259df4c30a9 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 240861819cf1..1afc1aa119dc 100644 --- a/blockchains/fantom/info/info.json +++ b/blockchains/fantom/info/info.json @@ -7,6 +7,7 @@ "symbol": "FTM", "type": "coin", "decimals": 18, + "rpc_url": "https://rpc.ftm.tools", "status": "active", "links": [ { diff --git a/blockchains/fetch/info/info.json b/blockchains/fetch/info/info.json new file mode 100644 index 000000000000..07ddf4ce66ac --- /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 000000000000..eadd40bdccfb Binary files /dev/null and b/blockchains/fetch/info/logo.png differ diff --git a/blockchains/fusion/info/info.json b/blockchains/fusion/info/info.json new file mode 100644 index 000000000000..2c0a4ffec84e --- /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 000000000000..9c2bb8e257e3 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 000000000000..4d53481213b2 --- /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 000000000000..3fe22aa3a199 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 000000000000..ab1563f1732c --- /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 000000000000..ad463789d50b Binary files /dev/null and b/blockchains/goerlitestnet/info/logo.png differ diff --git a/blockchains/harmony/info/info.json b/blockchains/harmony/info/info.json index 4dce937d169e..6734473b1eca 100644 --- a/blockchains/harmony/info/info.json +++ b/blockchains/harmony/info/info.json @@ -4,6 +4,8 @@ "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, diff --git a/blockchains/heco/info/info.json b/blockchains/heco/info/info.json index 5cc2f04e0c12..20da693b852b 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 000000000000..b0200e8a208b --- /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 000000000000..e16f79294ddf 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 000000000000..abe69b08158e --- /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 000000000000..3a5ff5eb7fed 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 000000000000..88662092fc53 --- /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/iost/info/info.json b/blockchains/iost/info/info.json index 7a09bd8d2ad7..e8ee62111f4a 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 000000000000..4a681740d522 --- /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 000000000000..fac1be9df58b 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 000000000000..7d2b2d8b3479 --- /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 000000000000..b4b0d12cd25c Binary files /dev/null and b/blockchains/iris/info/logo.png differ diff --git a/blockchains/juno/info/info.json b/blockchains/juno/info/info.json new file mode 100644 index 000000000000..3df5fdda8575 --- /dev/null +++ b/blockchains/juno/info/info.json @@ -0,0 +1,29 @@ +{ + "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", + "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 000000000000..d521db46a3a2 Binary files /dev/null and b/blockchains/juno/info/logo.png differ diff --git a/blockchains/kava/assets/usdt/info.json b/blockchains/kava/assets/usdt/info.json new file mode 100644 index 000000000000..4d8d58e13c12 --- /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 000000000000..f8ba68a56c9a Binary files /dev/null and b/blockchains/kava/assets/usdt/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 000000000000..145cb3cb0991 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper196w5nuha6u2ucwr65cqwnqrzxuemsyhv2c0lq8/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 000000000000..95674f5ffbf9 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1j4tymd9r3au3vm508l4jugdg7l892l2lmh4jry/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 000000000000..70ee36d1bc85 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 b52ab72596dd..602d10389a83 100644 --- a/blockchains/kava/validators/list.json +++ b/blockchains/kava/validators/list.json @@ -1,4 +1,10 @@ [ + { + "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", @@ -11,9 +17,15 @@ "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": "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" }, @@ -178,5 +190,11 @@ "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/" } -] \ No newline at end of file +] diff --git a/blockchains/kavaevm/info/info.json b/blockchains/kavaevm/info/info.json index dec5f2949b6a..1020e1d2e7df 100644 --- a/blockchains/kavaevm/info/info.json +++ b/blockchains/kavaevm/info/info.json @@ -8,6 +8,7 @@ "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", diff --git a/blockchains/kcc/assets/0x1B8e27ABA297466fc6765Ce55BD12A8E216759da/info.json b/blockchains/kcc/assets/0x1B8e27ABA297466fc6765Ce55BD12A8E216759da/info.json new file mode 100644 index 000000000000..c11b7b396bca --- /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 000000000000..a550c3fa3ef6 Binary files /dev/null and b/blockchains/kcc/assets/0x1B8e27ABA297466fc6765Ce55BD12A8E216759da/logo.png differ diff --git a/blockchains/kcc/assets/0x652D253b7Ca91810A4a05ACFc39729387c5090C0/info.json b/blockchains/kcc/assets/0x652D253b7Ca91810A4a05ACFc39729387c5090C0/info.json new file mode 100644 index 000000000000..fc0450994ded --- /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 000000000000..dc789428802a 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 000000000000..b50288b2c9ca --- /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 000000000000..e4b303c5ec71 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 000000000000..25a9f18e8135 --- /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 000000000000..bc01f46ad665 Binary files /dev/null and b/blockchains/kcc/assets/0x791630C11c7159A748d8c2267a66780B3DDC40a7/logo.png differ diff --git a/blockchains/kcc/assets/0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e/info.json b/blockchains/kcc/assets/0xC19a5caCC2bb68Ff09f2Fcc695F31493A039Fa5e/info.json new file mode 100644 index 000000000000..07ce6a65f6a4 --- /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 000000000000..2e4e2b57b795 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 000000000000..be328b626215 --- /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 000000000000..1e7cef36a8aa 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 000000000000..5807dc1625b5 --- /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 000000000000..9ca39721c522 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 index f749b0b28828..c8d0354e4cad 100644 --- a/blockchains/kcc/info/info.json +++ b/blockchains/kcc/info/info.json @@ -6,6 +6,8 @@ "research": "https://docs.kcc.io/", "symbol": "KCS", "type": "coin", + "rpc_url": "https://rpc-mainnet.kcc.network", + "coin_type": 642, "decimals": 18, "status": "active", "links": [ @@ -30,4 +32,4 @@ "url": "https://github.com/kcc-community" } ] -} \ No newline at end of file +} diff --git a/blockchains/klaytn/info/info.json b/blockchains/klaytn/info/info.json index ecc422b944dc..b583f923bdff 100644 --- a/blockchains/klaytn/info/info.json +++ b/blockchains/klaytn/info/info.json @@ -7,6 +7,7 @@ "symbol": "KLAY", "type": "coin", "decimals": 18, + "rpc_url": "https://public-node-api.klaytnapi.com/v1/cypress", "status": "active", "links": [ { @@ -14,4 +15,4 @@ "url": "https://twitter.com/klaytn_official" } ] -} \ No newline at end of file +} diff --git a/blockchains/komodo/info/info.json b/blockchains/komodo/info/info.json new file mode 100644 index 000000000000..63f7522fd5b9 --- /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 000000000000..2584dcde87a0 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 000000000000..1ee2750c5614 --- /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 000000000000..779329cacaee Binary files /dev/null and b/blockchains/kujira/info/logo.png differ diff --git a/blockchains/kusama/info/info.json b/blockchains/kusama/info/info.json index e3f084473e30..f23f52705d15 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 000000000000..8a1a37b8cc02 Binary files /dev/null and b/blockchains/kusama/validators/assets/CmjHFdR59QAZMuyjDF5Sn4mwTgGbKMH2cErUFuf6UT51UwS/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 000000000000..33273a1e37b6 Binary files /dev/null and b/blockchains/kusama/validators/assets/DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv/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 000000000000..33273a1e37b6 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 000000000000..63b99724ea40 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 000000000000..33273a1e37b6 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 000000000000..43aadb918161 --- /dev/null +++ b/blockchains/kusama/validators/list.json @@ -0,0 +1,32 @@ +[ + { + "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" + } +] \ No newline at end of file diff --git a/blockchains/logo.png b/blockchains/logo.png new file mode 100644 index 000000000000..9592cd25373f Binary files /dev/null and b/blockchains/logo.png differ diff --git a/blockchains/mars/info/info.json b/blockchains/mars/info/info.json new file mode 100644 index 000000000000..06a3a228ebca --- /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 000000000000..959975333d5c Binary files /dev/null and b/blockchains/mars/info/logo.png differ diff --git a/blockchains/meter/info/info.json b/blockchains/meter/info/info.json index 581b2a3fd4a7..d4034a871c6c 100644 --- a/blockchains/meter/info/info.json +++ b/blockchains/meter/info/info.json @@ -1,12 +1,14 @@ { "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": [ { diff --git a/blockchains/metis/info/info.json b/blockchains/metis/info/info.json index 805177ec176e..d1827512132a 100644 --- a/blockchains/metis/info/info.json +++ b/blockchains/metis/info/info.json @@ -6,6 +6,8 @@ "research": "", "symbol": "METIS", "type": "coin", + "coin_type": 10001088, + "rpc_url": "https://andromeda.metis.io/?owner=1088", "decimals": 18, "status": "active", "links": [ @@ -14,4 +16,4 @@ "url": "https://twitter.com/metisdao" } ] -} \ No newline at end of file +} diff --git a/blockchains/moonbasealpha/info/info.json b/blockchains/moonbasealpha/info/info.json new file mode 100644 index 000000000000..8f189ed59698 --- /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 000000000000..a66722e6a4b0 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 000000000000..df6afbf862b9 --- /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 000000000000..6c156aba6266 Binary files /dev/null and b/blockchains/moonbeam/assets/0x467719aD09025FcC6cF6F8311755809d45a5E5f3/logo.png differ diff --git a/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/info.json b/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/info.json new file mode 100644 index 000000000000..11889a180ed5 --- /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 000000000000..69911caea54f 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 index 5252449548d2..9120b9f950f4 100644 --- a/blockchains/moonbeam/info/info.json +++ b/blockchains/moonbeam/info/info.json @@ -6,6 +6,8 @@ "research": "", "symbol": "GLMR", "type": "coin", + "coin_type": 1284, + "rpc_url": "https://moonbeam.public.blastapi.io", "decimals": 18, "status": "active", "links": [ @@ -14,4 +16,4 @@ "url": "https://twitter.com/moonbeamnetwork" } ] -} \ No newline at end of file +} diff --git a/blockchains/moonriver/info/info.json b/blockchains/moonriver/info/info.json index 3082a04ee4b8..ea8bdb2701f8 100644 --- a/blockchains/moonriver/info/info.json +++ b/blockchains/moonriver/info/info.json @@ -6,6 +6,8 @@ "research": "", "symbol": "MOVR", "type": "coin", + "coin_type": 1285, + "rpc_url": "https://moonriver.public.blastapi.io", "decimals": 18, "status": "active", "links": [ @@ -14,4 +16,4 @@ "url": "https://twitter.com/moonrivernw" } ] -} \ No newline at end of file +} diff --git a/blockchains/nativecanto/info/info.json b/blockchains/nativecanto/info/info.json new file mode 100644 index 000000000000..6fc6743c7d3e --- /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 000000000000..bc1cf9668479 Binary files /dev/null and b/blockchains/nativecanto/info/logo.png differ diff --git a/blockchains/nativeevmos/info/info.json b/blockchains/nativeevmos/info/info.json index 1e33e2c76e33..5678059500be 100644 --- a/blockchains/nativeevmos/info/info.json +++ b/blockchains/nativeevmos/info/info.json @@ -8,6 +8,9 @@ "type": "coin", "decimals": 18, "status": "active", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1c55g6u7q2uzgks9gjp80sle8n6qcyg64vk64g2/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1c55g6u7q2uzgks9gjp80sle8n6qcyg64vk64g2/logo.png new file mode 100644 index 000000000000..266947772880 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1c55g6u7q2uzgks9gjp80sle8n6qcyg64vk64g2/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 000000000000..846266d88236 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1q3aejvmwj9dxturgk00jv7hkwxld7ny7642tr8/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 000000000000..abcfc3298bba 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 index c863ea304c7b..2f4fa32cc760 100644 --- a/blockchains/nativeevmos/validators/list.json +++ b/blockchains/nativeevmos/validators/list.json @@ -1,9 +1,21 @@ [ + { + "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://www.orbitalapes.com/" + "website": "https://orbitalapes.com/" }, { "id": "evmosvaloper1sp9frqwep52chwavv3xd776myy8gyyvkv5uysl", @@ -15,7 +27,7 @@ "id": "evmosvaloper1f35jtt5m68zlxkpxn75403vv82cchahqvfsrup", "name": "Cosmostation", "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", - "website": "https://www.cosmostation.io/" + "website": "https://cosmostation.io/" }, { "id": "evmosvaloper14zatq4jagqtm9ejgvglnv0t364d88u80futp65", @@ -46,5 +58,11 @@ "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 000000000000..0e145d0604a6 --- /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 000000000000..6a4ed4e02e8e 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 000000000000..60b018002cdc 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 000000000000..1288b5884311 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 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts/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 000000000000..ab27231ce595 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 000000000000..ee70539329ea 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 000000000000..e9622798cec6 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 000000000000..a542ccaa22d5 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 000000000000..b8e77f1c07be 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 000000000000..fd2f07798958 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 000000000000..5d160d301f69 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1lsuqpgm8kgwpq96ewyew26xnfwyn3lh3ncrkrk/logo.png differ diff --git a/blockchains/nativeinjective/validators/list.json b/blockchains/nativeinjective/validators/list.json new file mode 100644 index 000000000000..2e24fb4b83d8 --- /dev/null +++ b/blockchains/nativeinjective/validators/list.json @@ -0,0 +1,62 @@ +[ + { + "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/" + } +] \ No newline at end of file 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 000000000000..571f2711a083 Binary files /dev/null and b/blockchains/near/validators/assets/astro-stakers.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 000000000000..6d612781cc3d 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 000000000000..02edac54f305 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 000000000000..a0c10f645691 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 000000000000..74be06fa8dfe Binary files /dev/null and b/blockchains/near/validators/assets/staked.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 000000000000..4cc089433a7e 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 000000000000..fc3768e96d9c --- /dev/null +++ b/blockchains/near/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "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": "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" + } +] \ No newline at end of file diff --git a/blockchains/neblio/info/info.json b/blockchains/neblio/info/info.json new file mode 100644 index 000000000000..2143f6b4e07f --- /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 000000000000..13f01d403a2a Binary files /dev/null and b/blockchains/neblio/info/logo.png differ diff --git a/blockchains/neutron/info/info.json b/blockchains/neutron/info/info.json new file mode 100644 index 000000000000..154030e2b0fa --- /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 000000000000..a7089aa514db 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 000000000000..7b4671a6b6d6 --- /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 000000000000..a430ec1500f7 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 000000000000..0f088e99ae30 --- /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 000000000000..93e4f7280f13 Binary files /dev/null and b/blockchains/noble/info/logo.png differ diff --git a/blockchains/oasis/info/info.json b/blockchains/oasis/info/info.json index 7007140eef06..c7100c48f04d 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/okx/info/info.json b/blockchains/okx/info/info.json new file mode 100644 index 000000000000..07c759e4bc0c --- /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 000000000000..853e12d99144 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 000000000000..7ed615b4216b --- /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 000000000000..636b2111259b 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 000000000000..3a9b8e0f54eb --- /dev/null +++ b/blockchains/opbnb/info/info.json @@ -0,0 +1,21 @@ +{ + "name": "opBNB Testnet", + "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": "tBNB", + "decimals": 18, + "status": "active", + "rpc_url": "https://opbnb-testnet-rpc.bnbchain.org/", + "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 000000000000..b331d64d89c9 Binary files /dev/null and b/blockchains/opbnb/info/logo.png differ diff --git a/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/info.json b/blockchains/optimism/assets/0x50Bce64397C75488465253c0A034b8097FeA6578/info.json new file mode 100644 index 000000000000..ca8001de331a --- /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 000000000000..49d0f41e0dbe 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 000000000000..7edfa12b88d8 --- /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 000000000000..b6f150d8a7d4 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 000000000000..b83bee073d24 --- /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 000000000000..90465aa8dd64 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 000000000000..5771daa46533 --- /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 000000000000..7c76f51d1148 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 000000000000..fc193eeb7e82 --- /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 000000000000..56f9d83abe60 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 000000000000..ea1dac6b82b1 --- /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 000000000000..f1295da4329a 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 000000000000..140c38f8b690 --- /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 000000000000..a3b20074ec34 Binary files /dev/null and b/blockchains/optimism/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png differ diff --git a/blockchains/optimism/info/info.json b/blockchains/optimism/info/info.json index 352c2ea201bb..8bb2e265b6f5 100644 --- a/blockchains/optimism/info/info.json +++ b/blockchains/optimism/info/info.json @@ -6,7 +6,9 @@ "research": "https://github.com/ethereum-optimism/optimism", "symbol": "OETH", "type": "coin", + "coin_type": 614, "decimals": 18, "status": "active", + "rpc_url": "https://mainnet.optimism.io", "links": [] -} \ 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 000000000000..08fefa115e41 --- /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 000000000000..ad463789d50b 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 000000000000..95674f5ffbf9 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper122yaxffys6rmv03nwwkmn3rvr5skzxl9lry2a5/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 000000000000..434f53ccac24 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1cwurrzatev9lfkn3ak6hh59t6yc0zy00rzp8yd/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 000000000000..194e9693e101 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 000000000000..70ee36d1bc85 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 000000000000..abcfc3298bba Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww24nrlnx/logo.png differ diff --git a/blockchains/osmosis/validators/list.json b/blockchains/osmosis/validators/list.json index 0e1d1f78f73b..c465a9fda741 100644 --- a/blockchains/osmosis/validators/list.json +++ b/blockchains/osmosis/validators/list.json @@ -1,10 +1,22 @@ [ { "id": "osmovaloper1cm83xqns9sqhv9a8vd6fggt6mvuu8mmzszknae", - "name": "Best APR ❤️ NodesByGirls", + "name": "NodesByGirls", "description": "We are a professional team with many years of experience in the crypto industry. Stake with us to get the best APR!", "website": "https://nodesbygirls.com/" }, + { + "id": "osmovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww24nrlnx", + "name": "Swiss Staking", + "description": "Experienced validator based in Switzerland. We offer a highly secure and stable staking infrastructure.", + "website": "https://swiss-staking.ch" + }, + { + "id": "osmovaloper1x2e2pnenh0mmc99cnp7sukngnt8lc4saljavr3", + "name": "Atomic Nodes", + "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", @@ -97,8 +109,26 @@ }, { "id": "osmovaloper1e9ucjn5fjmetky5wezzcsccp7hqcwzrrdulz7n", - "name": "Allnodes.com⚡️", + "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 000000000000..16cce87bd170 --- /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 000000000000..eff1aeb5fce9 Binary files /dev/null and b/blockchains/persistence/info/logo.png differ diff --git a/blockchains/pivx/info/info.json b/blockchains/pivx/info/info.json new file mode 100644 index 000000000000..6271362e81a3 --- /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 000000000000..03f851d6cb28 Binary files /dev/null and b/blockchains/pivx/info/logo.png differ diff --git a/blockchains/polkadot/info/info.json b/blockchains/polkadot/info/info.json index 5c261f58c08a..f982b35e96f2 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/polygon/assets/0x08C15FA26E519A78a666D19CE5C646D55047e0a3/info.json b/blockchains/polygon/assets/0x08C15FA26E519A78a666D19CE5C646D55047e0a3/info.json new file mode 100644 index 000000000000..a7be0a5d0544 --- /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 000000000000..36fcfbc499e6 Binary files /dev/null and b/blockchains/polygon/assets/0x08C15FA26E519A78a666D19CE5C646D55047e0a3/logo.png differ diff --git a/blockchains/polygon/assets/0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58/info.json b/blockchains/polygon/assets/0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58/info.json new file mode 100644 index 000000000000..3446cfd6e4f4 --- /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 000000000000..22d28ab4739a Binary files /dev/null and b/blockchains/polygon/assets/0x0E9b89007eEE9c958c0EDA24eF70723C2C93dD58/logo.png differ diff --git a/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/info.json b/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/info.json new file mode 100644 index 000000000000..5d30f3e6fa82 --- /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 000000000000..1660741aaf75 Binary files /dev/null and b/blockchains/polygon/assets/0x101A023270368c0D50BFfb62780F4aFd4ea79C35/logo.png differ diff --git a/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/info.json b/blockchains/polygon/assets/0x1379E8886A944d2D9d440b3d88DF536Aea08d9F3/info.json new file mode 100644 index 000000000000..2cca5088f276 --- /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 000000000000..ad16c843c62c 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 000000000000..4d5119d23e08 --- /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 000000000000..f464fd0a9139 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 000000000000..fbd47787b2e8 --- /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 000000000000..ee3475dce802 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 000000000000..4218dfd813c2 --- /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 000000000000..6a4f498ca1b2 Binary files /dev/null and b/blockchains/polygon/assets/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603/logo.png differ diff --git a/blockchains/polygon/assets/0x235737dBb56e8517391473f7c964DB31fA6ef280/info.json b/blockchains/polygon/assets/0x235737dBb56e8517391473f7c964DB31fA6ef280/info.json new file mode 100644 index 000000000000..ecae340765fe --- /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 000000000000..c1de608975fc 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 000000000000..57f6305e10d3 --- /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 000000000000..aa7fbd0db6ff Binary files /dev/null and b/blockchains/polygon/assets/0x23D29D30e35C5e8D321e1dc9A8a61BFD846D4C5C/logo.png differ diff --git a/blockchains/polygon/assets/0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B/info.json b/blockchains/polygon/assets/0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B/info.json new file mode 100644 index 000000000000..20c927b426a0 --- /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 000000000000..8317ac643a40 Binary files /dev/null and b/blockchains/polygon/assets/0x2727Ab1c2D22170ABc9b595177B2D5C6E1Ab7B7B/logo.png differ diff --git a/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/info.json b/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/info.json new file mode 100644 index 000000000000..c578c4e946eb --- /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 000000000000..f21ebd57a7fa 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 000000000000..0f1c4eada2b5 --- /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 000000000000..7837957416a7 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 000000000000..4a770a55459c --- /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 000000000000..731134e2a42d 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 000000000000..1210f13e09d4 --- /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 000000000000..f983849d90c4 Binary files /dev/null and b/blockchains/polygon/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png differ diff --git a/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json b/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json new file mode 100644 index 000000000000..aaab7a61b8f2 --- /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 000000000000..d61a97f70aac Binary files /dev/null and b/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/logo.png differ diff --git a/blockchains/polygon/assets/0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46/info.json b/blockchains/polygon/assets/0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46/info.json new file mode 100644 index 000000000000..fb819ef94108 --- /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 000000000000..116c2416ce7b 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 000000000000..a96aef3385c4 --- /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 000000000000..de7f9e2facbd 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 000000000000..a21bbcafc3d3 --- /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 000000000000..2a850de0afe2 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 000000000000..c2e324f0b1ec --- /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 000000000000..7177a7a7e190 Binary files /dev/null and b/blockchains/polygon/assets/0x553d3D295e0f695B9228246232eDF400ed3560B5/logo.png differ diff --git a/blockchains/polygon/assets/0x6109cB051c5C64093830121ed76272aB04bBDD7C/info.json b/blockchains/polygon/assets/0x6109cB051c5C64093830121ed76272aB04bBDD7C/info.json new file mode 100644 index 000000000000..695366f34a73 --- /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 000000000000..5725990a5e6f 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 000000000000..082b12df8e60 --- /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 000000000000..d1bf2417b496 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 000000000000..e23e9c0e27db --- /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 000000000000..ba89f2dd8dd0 Binary files /dev/null and b/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/logo.png differ diff --git a/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/info.json b/blockchains/polygon/assets/0x6e4E624106Cb12E168E6533F8ec7c82263358940/info.json new file mode 100644 index 000000000000..cc5a32f0f908 --- /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 000000000000..6c156aba6266 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 000000000000..712a9587bc2f --- /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 000000000000..69911caea54f Binary files /dev/null and b/blockchains/polygon/assets/0x750e4C4984a9e0f12978eA6742Bc1c5D248f40ed/logo.png differ diff --git a/blockchains/polygon/assets/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1/info.json b/blockchains/polygon/assets/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1/info.json new file mode 100644 index 000000000000..f40132e33bb0 --- /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 000000000000..0ddcda72aedd Binary files /dev/null and b/blockchains/polygon/assets/0x82617aA52dddf5Ed9Bb7B370ED777b3182A30fd1/logo.png differ diff --git a/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json b/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json new file mode 100644 index 000000000000..1e0fb57b6eb3 --- /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 000000000000..f21a9869c8c2 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 000000000000..aa8d5e748b7d --- /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 000000000000..44b1ce307185 Binary files /dev/null and b/blockchains/polygon/assets/0x9085B4d52c3e0B8B6F9AF6213E85A433c7D76f19/logo.png differ diff --git a/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json b/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json new file mode 100644 index 000000000000..6d7953dda1d1 --- /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 000000000000..9d7b0435acaa 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 000000000000..242d971175c4 --- /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 000000000000..6fc691716d6b Binary files /dev/null and b/blockchains/polygon/assets/0x9a71012B13CA4d3D0Cdc72A177DF3ef03b0E76A3/logo.png differ diff --git a/blockchains/polygon/assets/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945/info.json b/blockchains/polygon/assets/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945/info.json new file mode 100644 index 000000000000..74f8ac08b6c7 --- /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 000000000000..edb82f056e99 Binary files /dev/null and b/blockchains/polygon/assets/0xA3c322Ad15218fBFAEd26bA7f616249f7705D945/logo.png differ diff --git a/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json b/blockchains/polygon/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json new file mode 100644 index 000000000000..d99c1589b5f3 --- /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 000000000000..cf97abec3c9f 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 000000000000..509c93493752 --- /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 000000000000..1bd37a35d3fd 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 000000000000..00702f304317 --- /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 000000000000..601812c6c01a 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 000000000000..fad39486258d --- /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 000000000000..7508aa6603f4 Binary files /dev/null and b/blockchains/polygon/assets/0xC1543024DC71247888a7e139c644F44E75E96d38/logo.png differ diff --git a/blockchains/polygon/assets/0xD4814770065F634003A8d8D70B4743E0C3f334ad/info.json b/blockchains/polygon/assets/0xD4814770065F634003A8d8D70B4743E0C3f334ad/info.json new file mode 100644 index 000000000000..97391aefe296 --- /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 000000000000..25ffd17b2334 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 000000000000..d5c2fd870d9a --- /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 000000000000..df1bd6c22be2 Binary files /dev/null and b/blockchains/polygon/assets/0xDC3326e71D45186F113a2F448984CA0e8D201995/logo.png differ diff --git a/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/info.json b/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/info.json new file mode 100644 index 000000000000..7b306f17152a --- /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 000000000000..f1295da4329a 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 000000000000..1d688b032fc6 --- /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 000000000000..a7d79ca849d3 Binary files /dev/null and b/blockchains/polygon/assets/0xE5417Af564e4bFDA1c483642db72007871397896/logo.png differ diff --git a/blockchains/polygon/assets/0xE7879BaFa6A41F919f145a97207e54839d34c9bA/info.json b/blockchains/polygon/assets/0xE7879BaFa6A41F919f145a97207e54839d34c9bA/info.json new file mode 100644 index 000000000000..9df9619527da --- /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 000000000000..3e041120b65b 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 000000000000..1ec8d92ab407 --- /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 000000000000..a16cde4bd1f7 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 000000000000..a19cc158da13 --- /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 000000000000..457e25381f7b Binary files /dev/null and b/blockchains/polygon/assets/0xEE800B277A96B0f490a1A732e1D6395FAD960A26/logo.png differ diff --git a/blockchains/polygon/assets/0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F/info.json b/blockchains/polygon/assets/0xd0258a3fD00f38aa8090dfee343f10A9D4d30D3F/info.json new file mode 100644 index 000000000000..38a8e11bfd1f --- /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 000000000000..8a68f9ddf4c3 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 000000000000..6189db96d808 --- /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 000000000000..a3b20074ec34 Binary files /dev/null and b/blockchains/polygon/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/logo.png differ diff --git a/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 000000000000..fb1000f0b4ac --- /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 000000000000..9259df4c30a9 Binary files /dev/null and b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png differ diff --git a/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json b/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json new file mode 100644 index 000000000000..2f16f323e446 --- /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 000000000000..e57ca28fc938 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 000000000000..76ad274260f6 --- /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 000000000000..01df4e76f429 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 000000000000..8d2910c53e51 --- /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 000000000000..13dd33ca4758 Binary files /dev/null and b/blockchains/polygon/assets/0xf6372cDb9c1d3674E83842e3800F2A62aC9F3C66/logo.png differ diff --git a/blockchains/polygon/info/info.json b/blockchains/polygon/info/info.json index 2eaa4989de6d..d88d2caa39dd 100644 --- a/blockchains/polygon/info/info.json +++ b/blockchains/polygon/info/info.json @@ -7,6 +7,7 @@ "research": "https://docs.matic.network/", "type": "coin", "symbol": "MATIC", + "rpc_url": "https://polygon-rpc.com", "decimals": 18, "status": "active", "links": [ diff --git a/blockchains/polygonmumbai/info/info.json b/blockchains/polygonmumbai/info/info.json new file mode 100644 index 000000000000..def890155d3b --- /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://matic-mumbai.chainstacklabs.com", + "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 000000000000..13af3e9b2311 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 000000000000..e94681d7aa04 --- /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 000000000000..227f4d62ef99 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 000000000000..cd1e313e5ffd --- /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 000000000000..03827dc52e73 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 000000000000..adb3af4cf001 --- /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 000000000000..93f66cb05de2 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 000000000000..7d858781ec0a --- /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 000000000000..4353b884b41b 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 000000000000..3d3578df688a --- /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 000000000000..fbd01afc251d 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 000000000000..cd9e9ce14cb6 --- /dev/null +++ b/blockchains/polygonzkevm/info/info.json @@ -0,0 +1,19 @@ +{ + "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", + "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 000000000000..e4aaa73298ee Binary files /dev/null and b/blockchains/polygonzkevm/info/logo.png differ diff --git a/blockchains/quasar/info/info.json b/blockchains/quasar/info/info.json new file mode 100644 index 000000000000..92650bda3d44 --- /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 000000000000..658b99283116 Binary files /dev/null and b/blockchains/quasar/info/logo.png differ diff --git a/blockchains/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/info.json b/blockchains/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/info.json new file mode 100644 index 000000000000..93c5e7cb44bc --- /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 000000000000..17fe1bcbf544 Binary files /dev/null and b/blockchains/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/logo.png differ diff --git a/blockchains/scroll/info/info.json b/blockchains/scroll/info/info.json new file mode 100644 index 000000000000..160c9cf0f473 --- /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 000000000000..08ee9d1ed793 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 000000000000..8ced09705392 --- /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 000000000000..83415d6678c5 Binary files /dev/null and b/blockchains/secret/info/logo.png differ diff --git a/blockchains/sepolia/info/info.json b/blockchains/sepolia/info/info.json new file mode 100644 index 000000000000..ccc2cb83d968 --- /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 000000000000..098274301096 Binary files /dev/null and b/blockchains/sepolia/info/logo.png differ diff --git a/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/info.json b/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/info.json new file mode 100644 index 000000000000..76ba465909fe --- /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 000000000000..d937afa9dcf9 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 000000000000..5bdd2dae3530 --- /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 000000000000..6b23b5f8145c Binary files /dev/null and b/blockchains/smartchain/assets/0x0173295183685F27C84db046B5F0bea3e683c24b/logo.png differ diff --git a/blockchains/smartchain/assets/0x02a655942Dbb886c77bb22B270060c561300B0E2/info.json b/blockchains/smartchain/assets/0x02a655942Dbb886c77bb22B270060c561300B0E2/info.json new file mode 100644 index 000000000000..8a3c11de2555 --- /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 000000000000..2405c0a1b128 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 000000000000..bdbfd567251c --- /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 000000000000..d5c525f6ea6f 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 000000000000..2b5618e78b17 --- /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 000000000000..87bf4a4842d6 Binary files /dev/null and b/blockchains/smartchain/assets/0x035aD59058c557be4532141FBCD60f0998fCE413/logo.png differ diff --git a/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json new file mode 100644 index 000000000000..9fe373321a68 --- /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 000000000000..0ca575a8134d 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 000000000000..8644b65fc396 --- /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 000000000000..d6aee8b08fac 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 92d7df18c41f..01ffc21b5e2a 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 6202f400b0e5..000000000000 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 000000000000..e6816790fd4b --- /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 000000000000..49612f64751a 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 000000000000..bbb20854ce33 --- /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 000000000000..f37422e07dd2 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 000000000000..8557e215ea8f --- /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 000000000000..1bcb6127d877 Binary files /dev/null and b/blockchains/smartchain/assets/0x05De1dbFCdc876F790371508b97C337640Dcd6a9/logo.png differ diff --git a/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/info.json b/blockchains/smartchain/assets/0x066cdA0CCA84E9C6eD0a4ECB92AA036a9582544B/info.json new file mode 100644 index 000000000000..9b4bc72a3371 --- /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 000000000000..721dbc2a1d20 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 000000000000..a4992efca824 --- /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 000000000000..ba2be4c64d9e 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 000000000000..b97f4217b2e1 --- /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 000000000000..7ecbaf9ae621 Binary files /dev/null and b/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/logo.png differ diff --git a/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/info.json b/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/info.json new file mode 100644 index 000000000000..4f3c13063fc3 --- /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 000000000000..e0b4bdca682f 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 000000000000..91645c1a575b --- /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 000000000000..08f511b5376f Binary files /dev/null and b/blockchains/smartchain/assets/0x08CEB3F4a7ed3500cA0982bcd0FC7816688084c3/logo.png differ diff --git a/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/info.json b/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/info.json new file mode 100644 index 000000000000..cbdf91bac888 --- /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 000000000000..34f2dd256809 Binary files /dev/null and b/blockchains/smartchain/assets/0x0938a5d325A8496c186Cf122946e9dD22f8a625b/logo.png differ diff --git a/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/info.json b/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/info.json new file mode 100644 index 000000000000..508a64a0e88a --- /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 000000000000..3765491ca96c Binary files /dev/null and b/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/logo.png differ diff --git a/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/info.json b/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/info.json index 42d2375315e3..4f076ea849f7 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/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json b/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json index 876ce6418259..f29669e94d5f 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 a27f265d4e6b..b1f701311e4a 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 000000000000..312f68ae9c2b --- /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 000000000000..a93ce021c457 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 000000000000..1ee4804ae16a --- /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 000000000000..98103f7fdee8 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 000000000000..6bc3700550f4 --- /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 000000000000..f0ed605142ee Binary files /dev/null and b/blockchains/smartchain/assets/0x0a3A21356793B49154Fd3BbE91CBc2A16c0457f5/logo.png differ diff --git a/blockchains/smartchain/assets/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e/info.json b/blockchains/smartchain/assets/0x0cAE6c43fe2f43757a767Df90cf5054280110F3e/info.json index 3609be790850..a63491f69bcf 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 9355f368b0ca..000000000000 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 000000000000..29574bc2bf32 --- /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 000000000000..dd92290daedf 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 000000000000..98a6277ccd6b --- /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 000000000000..a7c9de154e49 Binary files /dev/null and b/blockchains/smartchain/assets/0x0cBfDea4F45A486Cc7dB53CB6e37b312A137C605/logo.png differ diff --git a/blockchains/smartchain/assets/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/info.json b/blockchains/smartchain/assets/0x0fbc08905c1d683Cf7530bb2a70Bb0BDE231E5B9/info.json index e92dbfe796bc..8084b5d8dbc9 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 b1546a6a659d..b427828fb10a 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/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/info.json b/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/info.json index 2d8891f00a8c..952fc15b507f 100644 --- a/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/info.json +++ b/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/info.json @@ -7,7 +7,7 @@ "website": "https://monetasglobal.com/", "explorer": "https://bscscan.com/token/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f", "id": "0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f", - "status": "active", + "status": "abandoned", "tags": [ "stablecoin", "staking", diff --git a/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/logo.png b/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/logo.png deleted file mode 100644 index f6e2acc9863d..000000000000 Binary files a/blockchains/smartchain/assets/0x10adF50e15611d5A4DE3bd21F0DB7f3491A8ae0f/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/info.json b/blockchains/smartchain/assets/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/info.json new file mode 100644 index 000000000000..a0cd88af4c02 --- /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 000000000000..8c34b0574de6 Binary files /dev/null and b/blockchains/smartchain/assets/0x10b9dd394467f2CFbc769e07E88dC7e2c41B0965/logo.png differ diff --git a/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json b/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json index d1d85124e387..c79469c281ca 100644 --- a/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json +++ b/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json @@ -6,7 +6,7 @@ "website": "https://teddydoge.finance/", "description": "TEDDY is the DEFI ecological token of Teddy Doge with Swap & Cross bridge& Wallet.", "explorer": "https://bscscan.com/token/0x10f6f2b97f3ab29583d9d38babf2994df7220c21", - "status": "active", + "status": "abandoned", "id": "0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21", "links": [ { diff --git a/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/logo.png b/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/logo.png deleted file mode 100644 index a5ad8a61f1d7..000000000000 Binary files a/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json b/blockchains/smartchain/assets/0x111111111117dC0aa78b770fA6A738034120C302/info.json index ea9e02aeb5dc..6f503cd21efa 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 000000000000..f33ee1b2677e --- /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 000000000000..d4ed8cd51e13 Binary files /dev/null and b/blockchains/smartchain/assets/0x11aC6aF070Fe1991a457c56FB85c577EFE57F0e4/logo.png differ diff --git a/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json b/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json index d201d14bac34..2024d547851f 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/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/info.json b/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/info.json index e1f9e0491f14..ea520c96c597 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 a71269d8a1cd..f0eb4c153b90 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/0x1610bc33319e9398de5f57B33a5b184c806aD217/info.json b/blockchains/smartchain/assets/0x1610bc33319e9398de5f57B33a5b184c806aD217/info.json index b2b1bd2d1997..b3c6484cf307 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 789179049c1b..82fe761e7d82 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/0x16939ef78684453bfDFb47825F8a5F714f12623a/info.json b/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/info.json index 83371f4cde29..0924c135e7cf 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 000000000000..c035115f2f7e --- /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 000000000000..dadb7d64ac01 Binary files /dev/null and b/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/logo.png differ diff --git a/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/info.json b/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/info.json index fc9963040473..f178c4888c1e 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/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb/info.json b/blockchains/smartchain/assets/0x1Ba42e5193dfA8B03D15dd1B86a3113bbBEF8Eeb/info.json index 298c66edd8d8..d39d17118457 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/0x1D1cB8997570e73949930c01Fe5796C88d7336c6/info.json b/blockchains/smartchain/assets/0x1D1cB8997570e73949930c01Fe5796C88d7336c6/info.json new file mode 100644 index 000000000000..70a3d634c31b --- /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 000000000000..168e562e8d79 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 a51f3cc770f2..ec22470ba0b0 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/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/info.json b/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/info.json new file mode 100644 index 000000000000..35490b4af02f --- /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 000000000000..0ac9abc4e35e Binary files /dev/null and b/blockchains/smartchain/assets/0x1F1C90aEb2fd13EA972F0a71e35c0753848e3DB0/logo.png differ diff --git a/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/info.json b/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/info.json new file mode 100644 index 000000000000..d97480d68d2c --- /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 000000000000..9a7c8ce5053c Binary files /dev/null and b/blockchains/smartchain/assets/0x1F7e8fe01AEbA6fDAEA85161746f4D53DC9bdA4F/logo.png differ diff --git a/blockchains/smartchain/assets/0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63/info.json b/blockchains/smartchain/assets/0x1Fa4a73a3F0133f0025378af00236f3aBDEE5D63/info.json index e26dce8d6885..87a5e5a992fa 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 000000000000..021427bd3f73 --- /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 000000000000..0c451a30655e Binary files /dev/null and b/blockchains/smartchain/assets/0x1d507f58e4B7CDdE877CA96A727608d5E1187E55/logo.png differ diff --git a/blockchains/smartchain/assets/0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163/info.json b/blockchains/smartchain/assets/0x1f9f6a696C6Fd109cD3956F45dC709d2b3902163/info.json index 44f89bf95c2e..9a0467232cad 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 3871bc965bbe..35d27d540dbc 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/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/info.json b/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/info.json index dbdc8fc092a2..911a1d5df69a 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 000000000000..4dcdd2be844a --- /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 000000000000..bd29d5b410f7 Binary files /dev/null and b/blockchains/smartchain/assets/0x2189455051A1c1E6190276f84f73Ec6Fb2fe62DF/logo.png differ diff --git a/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/info.json b/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/info.json new file mode 100644 index 000000000000..b0514fb2aa9a --- /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 000000000000..c8e37a57ef89 Binary files /dev/null and b/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/logo.png differ diff --git a/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/info.json b/blockchains/smartchain/assets/0x24086EAb82DBDaa4771d0A5D66B0D810458b0E86/info.json new file mode 100644 index 000000000000..a420810cce62 --- /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 000000000000..69118232c68b 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 000000000000..c43923242504 --- /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 000000000000..a101ec306021 Binary files /dev/null and b/blockchains/smartchain/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png differ diff --git a/blockchains/smartchain/assets/0x26734ADd0650719eA29087fe5CC0AaB81b4f237D/info.json b/blockchains/smartchain/assets/0x26734ADd0650719eA29087fe5CC0AaB81b4f237D/info.json new file mode 100644 index 000000000000..b220de8a7234 --- /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 000000000000..78e7c338993c 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 000000000000..6a24098a8952 --- /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 000000000000..c11bf96e6759 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 a11efb73cbb4..d806c55e93a8 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 0f28979f05ec..a741cf6f616b 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 000000000000..5b1b56360d10 --- /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 000000000000..91b12dc4fafb Binary files /dev/null and b/blockchains/smartchain/assets/0x27B2D695eF01d10EE96582a23db201B0Aa338639/logo.png differ diff --git a/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/info.json b/blockchains/smartchain/assets/0x2859e4544C4bB03966803b044A93563Bd2D0DD4D/info.json index 3f491e72c64b..bb85445cc9f8 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/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/info.json b/blockchains/smartchain/assets/0x290906Ede0E30ed9f2FF1df056aE0f802b01fE2a/info.json new file mode 100644 index 000000000000..573194224cfb --- /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 000000000000..90346205832d 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 000000000000..ceafb1a31927 --- /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 000000000000..e599a74ea609 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 000000000000..d5645172add0 --- /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 000000000000..d640ae253529 Binary files /dev/null and b/blockchains/smartchain/assets/0x29A5DaF6E3FDF964DEf07706eA1ABee7EC03D021/logo.png differ diff --git a/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/info.json b/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/info.json new file mode 100644 index 000000000000..a0c398daaeb4 --- /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 000000000000..dadbd922b740 Binary files /dev/null and b/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/logo.png differ diff --git a/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/info.json b/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/info.json new file mode 100644 index 000000000000..4aa141c63a07 --- /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 000000000000..7838407949ce Binary files /dev/null and b/blockchains/smartchain/assets/0x2a5dFE9EDd6D1431eecEA70cBb1635Ba88347BaD/logo.png differ diff --git a/blockchains/smartchain/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json b/blockchains/smartchain/assets/0x2dfF88A56767223A5529eA5960Da7A3F5f766406/info.json new file mode 100644 index 000000000000..d00ad5017bbb --- /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 000000000000..a6a3c27553a0 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 000000000000..2895c20c450a --- /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 000000000000..385f9f44e843 Binary files /dev/null and b/blockchains/smartchain/assets/0x2e8799f0A26d8A9f37a0b4747Fa534f039C2d234/logo.png differ diff --git a/blockchains/smartchain/assets/0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2/info.json b/blockchains/smartchain/assets/0x2fF0B946A6782190C4Fe5D4971CFE79F0b6E4df2/info.json new file mode 100644 index 000000000000..48d300b70110 --- /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 000000000000..ad16c843c62c 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 87dbaa36a577..322548ab8eb6 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 0b5755e13a74..b54b91ba8dc2 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 000000000000..085f7074cc6a --- /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 000000000000..ca65702c9121 Binary files /dev/null and b/blockchains/smartchain/assets/0x2fa6ee42BacF983F050210A1ca42f88686327FC9/logo.png differ diff --git a/blockchains/smartchain/assets/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/info.json b/blockchains/smartchain/assets/0x323273b8EE5Ae6247b47C38C81dB45E1beF13E6F/info.json index 740791609f5b..a58f0e8f04c4 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/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/info.json b/blockchains/smartchain/assets/0x334b3eCB4DCa3593BCCC3c7EBD1A1C1d1780FBF1/info.json index e1f9c463a54a..aee9019f8304 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 c127c12e8b22..c2c3bc4d8266 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/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/info.json b/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/info.json new file mode 100644 index 000000000000..cb54aefee9e2 --- /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 000000000000..cf93b2425034 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 000000000000..fd1c45161c4d --- /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 000000000000..239b9fff819e 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 000000000000..2e5ea989c399 --- /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 000000000000..ee8b25edc548 Binary files /dev/null and b/blockchains/smartchain/assets/0x361C60b7c2828fCAb80988d00D1D542c83387b50/logo.png differ diff --git a/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json b/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/info.json new file mode 100644 index 000000000000..2af40dc5195c --- /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 000000000000..7cf47068565d Binary files /dev/null and b/blockchains/smartchain/assets/0x371c7ec6D8039ff7933a2AA28EB827Ffe1F52f07/logo.png differ diff --git a/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/info.json b/blockchains/smartchain/assets/0x37C28DE42bA3d22217995D146FC684B2326Ede64/info.json index 7a70cf2dd5ed..e27d4e0dde96 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 a8cfa32263e5..e40020df3b41 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 000000000000..622e709dd5f4 --- /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 000000000000..5d32cf6de25a Binary files /dev/null and b/blockchains/smartchain/assets/0x37e5da11b6A4DC6d2f7Abe232cDd30B0B8Fc63B1/logo.png differ diff --git a/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/info.json b/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/info.json new file mode 100644 index 000000000000..fa17de841041 --- /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 000000000000..b9f34ca45f75 Binary files /dev/null and b/blockchains/smartchain/assets/0x3CEf8d4CC106a169902eA985ceC2dc6Ab055ad4c/logo.png differ diff --git a/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/info.json b/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/info.json index 94bab61d8c52..460f9830a21d 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 000000000000..2436e3eafe3d --- /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 000000000000..76c24936955d Binary files /dev/null and b/blockchains/smartchain/assets/0x3a599e584075065eAAAc768D75EaEf85c2f2fF64/logo.png differ diff --git a/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json b/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json new file mode 100644 index 000000000000..b0c7158f5d2e --- /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 000000000000..5a25dafbd0dd Binary files /dev/null and b/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/logo.png differ diff --git a/blockchains/smartchain/assets/0x3d6545b08693daE087E957cb1180ee38B9e3c25E/info.json b/blockchains/smartchain/assets/0x3d6545b08693daE087E957cb1180ee38B9e3c25E/info.json index d683e91a7b5d..81094df71d3d 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/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/info.json b/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/info.json index 049d977c72f7..8fe307a46707 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 000000000000..7af1084a356a --- /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 000000000000..af2045b7c09b 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 000000000000..c62b76033c5c --- /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 000000000000..0ae677cd2bac 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 000000000000..914322956339 --- /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 000000000000..f76e97d0fc77 Binary files /dev/null and b/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/logo.png differ diff --git a/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/info.json b/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/info.json index 54aa301b3511..36de2c508ae4 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 9f03cd2d652a..000000000000 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 000000000000..145f6a9c81ef --- /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 000000000000..69911caea54f Binary files /dev/null and b/blockchains/smartchain/assets/0x4268B8F0B87b6Eae5d897996E6b845ddbD99Adf3/logo.png differ diff --git a/blockchains/smartchain/assets/0x431e0cD023a32532BF3969CddFc002c00E98429d/info.json b/blockchains/smartchain/assets/0x431e0cD023a32532BF3969CddFc002c00E98429d/info.json index b36e585ed624..9fc16cee7504 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 c509ae64852b..000000000000 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 d94d663c60ef..12f9db253747 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 000000000000..b25f9ab94a9d --- /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 000000000000..7b11f6876854 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 000000000000..034e360af57d --- /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 000000000000..360f3e4669bc 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 000000000000..ff4e9ed63daa --- /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 000000000000..47cb1e7b4ed9 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 000000000000..932046d78d99 --- /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 000000000000..52152d628fc3 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 000000000000..7fa500167bfd --- /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 000000000000..37cbec02c09a 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 f82276f95ab7..f49898e64416 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 d466a6f966b3..884c5191e221 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 000000000000..19bd4a44c469 --- /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 000000000000..4d3e76605773 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 000000000000..26eada32d700 --- /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 000000000000..159be157a499 Binary files /dev/null and b/blockchains/smartchain/assets/0x49954Ad438fa9e27C21AeCd35078dD52cDDd96be/logo.png differ diff --git a/blockchains/smartchain/assets/0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623/info.json b/blockchains/smartchain/assets/0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623/info.json new file mode 100644 index 000000000000..0fd8214d5120 --- /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 000000000000..36fcfbc499e6 Binary files /dev/null and b/blockchains/smartchain/assets/0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623/logo.png differ diff --git a/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/logo.png b/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/logo.png index f3dbadcf69f7..ac1033ab90c1 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/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/info.json b/blockchains/smartchain/assets/0x4d2d32d8652058Bf98c772953E1Df5c5c85D9F45/info.json new file mode 100644 index 000000000000..24bc1be43fef --- /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 000000000000..124bbae67dff 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 000000000000..7a75537705c0 --- /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 000000000000..1578e86e7ff1 Binary files /dev/null and b/blockchains/smartchain/assets/0x4e2434294a722329B6B64e0c2Fca51B2533D7015/logo.png differ diff --git a/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/info.json b/blockchains/smartchain/assets/0x4fFa143Ce16A24215e8dF96c0CEF5677a7B91EE4/info.json new file mode 100644 index 000000000000..da2e01a4e983 --- /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 000000000000..7cccb4b214bf 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 000000000000..f6e9bafae447 --- /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 000000000000..3c2c0acabf8e 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 000000000000..e31d5df972a2 --- /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 000000000000..a3b20074ec34 Binary files /dev/null and b/blockchains/smartchain/assets/0x523821d20a283d955f6205B4C9252779Cd0f964B/logo.png differ diff --git a/blockchains/smartchain/assets/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8/info.json b/blockchains/smartchain/assets/0x52CE071Bd9b1C4B00A0b92D298c512478CaD67e8/info.json index 7cb813a7d815..95474f766eb9 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 000000000000..6a24718d3d10 --- /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 000000000000..509db7cc3e70 Binary files /dev/null and b/blockchains/smartchain/assets/0x52F24a5e03aee338Da5fd9Df68D2b6FAe1178827/logo.png differ diff --git a/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/info.json b/blockchains/smartchain/assets/0x550D7984b7AdFfF88815E5528e12E322DF6D3B9B/info.json new file mode 100644 index 000000000000..979a9cd80359 --- /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 000000000000..6decbd465302 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 000000000000..3a59f7069829 --- /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 000000000000..1565f4038333 Binary files /dev/null and b/blockchains/smartchain/assets/0x5569B42513203f49a761Cc9720D4Bb9B6b9E5AB8/logo.png differ diff --git a/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/logo.png b/blockchains/smartchain/assets/0x55F96C7005D7C684A65Ee653B07b5FE1507C56ab/logo.png index 3ba18cbe3d20..196024d6b841 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 e7b34af59be2..dd5512747ca2 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 index 5c975ae7ab23..07023cec6e99 100644 --- a/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/info.json +++ b/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/info.json @@ -8,9 +8,6 @@ "explorer": "https://bscscan.com/token/0x569f4957176Ffa0dff76c507604f6a66d4B9C578", "status": "active", "id": "0x569f4957176Ffa0dff76c507604f6a66d4B9C578", - "tags": [ - "staking-native" - ], "links": [ { "name": "twitter", @@ -37,4 +34,4 @@ "url": "https://crypto-stone.medium.com/" } ] -} +} diff --git a/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/info.json b/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/info.json new file mode 100644 index 000000000000..9fcd86962350 --- /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 000000000000..2f9cdfc5cb30 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 e66186a71d86..2e560da4a149 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/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/info.json b/blockchains/smartchain/assets/0x57A5297F2cB2c0AaC9D554660acd6D385Ab50c6B/info.json index baa839ddeed8..0c8b1a9d9a99 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 d5a657fee0f3..0681537856c7 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 000000000000..9fcbe069921d --- /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 000000000000..eebe15591cdd 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 000000000000..6e9974a0d2e4 --- /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 000000000000..6551d5de572f Binary files /dev/null and b/blockchains/smartchain/assets/0x57Bfe2aF99AeB7a3de3bc0c42c22353742bfD20D/logo.png differ diff --git a/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json b/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json index ac7efd1703de..c8833cf60ae3 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/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/info.json b/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/info.json new file mode 100644 index 000000000000..9875534df97e --- /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 000000000000..2adbf4bf7c57 Binary files /dev/null and b/blockchains/smartchain/assets/0x5C197A2D2c9081D30715C80bD1b57c996A14cda0/logo.png differ diff --git a/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/info.json b/blockchains/smartchain/assets/0x5F0388EBc2B94FA8E123F404b79cCF5f40b29176/info.json index d9ef6a26eb68..8a8c51454745 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 86a525142c1c..195a25156281 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/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/info.json b/blockchains/smartchain/assets/0x5b1f874d0b0C5ee17a495CbB70AB8bf64107A3BD/info.json new file mode 100644 index 000000000000..511496c9c6ba --- /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/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/info.json b/blockchains/smartchain/assets/0x5c9476FcD6a4F9a3654139721c949c2233bBbBc8/info.json index fb7f9661de99..7c9171114e60 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 349866ec5e72..27486799d284 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/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/info.json b/blockchains/smartchain/assets/0x5f588EfAf8eB57e3837486e834fC5a4E07768D98/info.json new file mode 100644 index 000000000000..4de3cd352eb7 --- /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 000000000000..6091decc4953 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 000000000000..681b8cff06ae --- /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 000000000000..cddbe1243f33 Binary files /dev/null and b/blockchains/smartchain/assets/0x60322971a672B81BccE5947706D22c19dAeCf6Fb/logo.png differ diff --git a/blockchains/smartchain/assets/0x611DFe661C82B858087AB5b16e3Cb082552df4F3/info.json b/blockchains/smartchain/assets/0x611DFe661C82B858087AB5b16e3Cb082552df4F3/info.json index 994e39d82d5c..b68207d06fb2 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 22ffba9dc35d..000000000000 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 000000000000..f2321be2aaeb --- /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 000000000000..89892d0298aa 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 000000000000..d50cafbe9f7f --- /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 000000000000..10399b3763d3 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 000000000000..4698f6c3186d --- /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 000000000000..81461bdcb08f Binary files /dev/null and b/blockchains/smartchain/assets/0x61eDcFe8Dd6bA3c891CB9bEc2dc7657B3B422E93/logo.png differ diff --git a/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/info.json b/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/info.json new file mode 100644 index 000000000000..fbbcb2d766d0 --- /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 000000000000..6ef4512fd54f Binary files /dev/null and b/blockchains/smartchain/assets/0x63221d19c4B512a6F4792F2Da0a2083eA28c38c1/logo.png differ diff --git a/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json b/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json index 3f2697fce6b1..e34463b60dc6 100644 --- a/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json +++ b/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json @@ -23,7 +23,6 @@ } ], "tags": [ - "staking-native", "defi" ] } diff --git a/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/info.json b/blockchains/smartchain/assets/0x650b940a1033B8A1b1873f78730FcFC73ec11f1f/info.json index 58a31b5640e6..aa4f66bd5dea 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 48565b0a54cf..b49a660ae3e0 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/0x678e840C640F619E17848045D23072844224dD37/info.json b/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/info.json new file mode 100644 index 000000000000..7dbadd122ad4 --- /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 000000000000..cad91b5eadb3 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 000000000000..64e78e6e77f3 --- /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 000000000000..da995520ec48 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 000000000000..359ff84216ab --- /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 000000000000..5b4fa7432889 Binary files /dev/null and b/blockchains/smartchain/assets/0x67b725d7e342d7B611fa85e859Df9697D9378B2e/logo.png differ diff --git a/blockchains/smartchain/assets/0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1/info.json b/blockchains/smartchain/assets/0x68D10dFe87a838D63BbEf6c9A0D0b44beB799DC1/info.json new file mode 100644 index 000000000000..24a0db0903d9 --- /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/0x69C2fcAe7e30b429166BD616A322e32BeC036bCf/info.json b/blockchains/smartchain/assets/0x69C2fcAe7e30b429166BD616A322e32BeC036bCf/info.json new file mode 100644 index 000000000000..d40f0fff1767 --- /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 000000000000..3cc8ad721ba6 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 000000000000..6cb113d1f084 --- /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 000000000000..7a2acb6f2fde Binary files /dev/null and b/blockchains/smartchain/assets/0x6A684b3578f5B07c0Aa02fAFc33ED248AE0c2dB2/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Ced2d77eEb7a6e392CC2b1A3b44C872F49fa602/info.json b/blockchains/smartchain/assets/0x6Ced2d77eEb7a6e392CC2b1A3b44C872F49fa602/info.json new file mode 100644 index 000000000000..9edbc9facb87 --- /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 000000000000..8467e4d257f1 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 000000000000..a5c8222f0fdb --- /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 000000000000..2a6c1f2c39e9 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 index d347d3fafe56..7b57bd1fb86f 100644 --- a/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/info.json +++ b/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/info.json @@ -1,9 +1,9 @@ { - "name": "QATAR 2022 TOKEN", + "name": "Football World Community", "type": "BEP20", "symbol": "Fwc", "decimals": 9, - "website": "https://qatar2022token.com/", + "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", @@ -11,23 +11,27 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/qatar2022token" + "url": "https://twitter.com/fwcommunity_q2t" + }, + { + "name": "github", + "url": "https://github.com/Fwc-Token" }, { "name": "telegram", "url": "https://t.me/QATAR2022TOKEN_BSC" }, { - "name": "github", - "url": "https://github.com/Qatar2022token" + "name": "telegram_news", + "url": "https://t.me/Qatar2022tokenAnnouncements" }, { - "name": "whitepaper", - "url": "https://qatar2022token.com/Whitepaper/WhitePaper%20(QATAR%202022V1.0%20Feb%202022)%20Edition.pdf" + "name": "medium", + "url": "https://medium.com/@community_77832" }, { - "name": "medium", - "url": "https://medium.com/@community_28351" + "name": "coingecko", + "url": "https://coingecko.com/en/coins/football-world-community" }, { "name": "coinmarketcap", @@ -35,7 +39,6 @@ } ], "tags": [ - "memes" + "defi" ] -} - +} diff --git a/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/logo.png b/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/logo.png index 5c3aee12704f..0665bfb8b88e 100644 Binary files a/blockchains/smartchain/assets/0x6D3a160B86eDcD46D8F9bBa25c2F88ccCADe19fc/logo.png 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 000000000000..50546dc85956 --- /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 000000000000..7c8285a35b09 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 000000000000..fbdbe579fcaa --- /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 000000000000..60bee77085fc Binary files /dev/null and b/blockchains/smartchain/assets/0x6Ec90334d89dBdc89E08A133271be3d104128Edb/logo.png differ diff --git a/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/info.json b/blockchains/smartchain/assets/0x6F769E65c14Ebd1f68817F5f1DcDb61Cfa2D6f7e/info.json new file mode 100644 index 000000000000..503056042612 --- /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 000000000000..457e25381f7b 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 index 5ab6fdcba91d..c13eefe13b52 100644 --- a/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/info.json +++ b/blockchains/smartchain/assets/0x6FDcdfef7c496407cCb0cEC90f9C5Aaa1Cc8D888/info.json @@ -39,7 +39,7 @@ }, { "name": "coingecko", - "url": "https://coingecko.com/en/coins/vechain" + "url": "https://coingecko.com/coins/vechain" } ] -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json b/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json new file mode 100644 index 000000000000..6a93578f19dc --- /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 000000000000..ce53a7652fce Binary files /dev/null and b/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/logo.png differ diff --git a/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/info.json b/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/info.json index 1aad72269dc6..dedf002d3113 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/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/info.json b/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/info.json index 7cecff81d8d4..3dad5ac8f3a0 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 49a970d6a95d..8be7f4bc3d1c 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/0x71d03A620646f8b572282Ef39228D36Add67ee20/info.json b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/info.json new file mode 100644 index 000000000000..da53cb67bf5d --- /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 000000000000..aab7d66f5286 Binary files /dev/null and b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/logo.png differ diff --git a/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/info.json b/blockchains/smartchain/assets/0x72fF5742319eF07061836F5C924aC6D72c919080/info.json new file mode 100644 index 000000000000..23563aa03a09 --- /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 000000000000..1eb8ea0651d8 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 index 1b047837076f..5319d41fb392 100644 --- a/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/info.json +++ b/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/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://bscscan.com/token/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b", "type": "BEP20", "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/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/logo.png b/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/logo.png index 3e887e06228b..ac453498ca10 100644 Binary files a/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/logo.png and b/blockchains/smartchain/assets/0x7324c7C0d95CEBC73eEa7E85CbAac0dBdf88a05b/logo.png differ diff --git a/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/info.json b/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/info.json new file mode 100644 index 000000000000..7186dd12318f --- /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 000000000000..22d28ab4739a Binary files /dev/null and b/blockchains/smartchain/assets/0x738d96Caf7096659DB4C1aFbf1E1BDFD281f388C/logo.png differ diff --git a/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/info.json b/blockchains/smartchain/assets/0x74AFe449D1BEFfc90456CfEbD700AB391abD7DAF/info.json new file mode 100644 index 000000000000..10d51dfe589b --- /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 000000000000..e501e346f676 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 000000000000..021eb1b3aece --- /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 000000000000..ce8521806bf7 Binary files /dev/null and b/blockchains/smartchain/assets/0x74f08aF7528Ffb751e3A435ddD779b5C4565e684/logo.png differ diff --git a/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/info.json b/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/info.json index 3b1c501f11d8..c5163693d96f 100644 --- a/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/info.json +++ b/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/info.json @@ -4,7 +4,7 @@ "symbol": "ATR", "decimals": 9, "website": "https://www.artrade.app/fr", - "description": "The Artrade app provides NFT creators and NFT investors with a streamlined, user-friendly app that eliminates the high minting fees, exorbitant commissions, social disconnect, and environmental impact of the current NFT marketplace.", + "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", @@ -29,4 +29,4 @@ "tags": [ "nft" ] -} +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/logo.png b/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/logo.png index 7349c14559b3..6b18ca203bf1 100644 Binary files a/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/logo.png and b/blockchains/smartchain/assets/0x7559C49c3Aec50E763A486bB232fA8d0d76078e4/logo.png differ diff --git a/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/info.json b/blockchains/smartchain/assets/0x7704d0EaD6F74E625d7371b079D8b2475bc852d4/info.json new file mode 100644 index 000000000000..38d8335d0487 --- /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 000000000000..212f853d426b 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 000000000000..24c642c39e8e --- /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 000000000000..eb1014fc5b69 Binary files /dev/null and b/blockchains/smartchain/assets/0x7758a52c1Bb823d02878B67aD87B6bA37a0CDbF5/logo.png differ diff --git a/blockchains/smartchain/assets/0x798aF7725376765e7F3cA86d5e0Cf1BEaEf19F34/info.json b/blockchains/smartchain/assets/0x798aF7725376765e7F3cA86d5e0Cf1BEaEf19F34/info.json new file mode 100644 index 000000000000..91a9adbd48c3 --- /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 000000000000..7f2215bdfa53 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 000000000000..2373370f58f8 --- /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 000000000000..a1b756f39f55 Binary files /dev/null and b/blockchains/smartchain/assets/0x7A532Aa9A2Ab86f6BD7E1Dcd93d3FdD2B0B410a6/logo.png differ diff --git a/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json b/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json index f8a558e805be..2280e81e91ee 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 f30e4ef05ea4..1d15389d0957 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 000000000000..89a4fd82b445 --- /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 000000000000..af881ef9e76b Binary files /dev/null and b/blockchains/smartchain/assets/0x7E60C74b9096f8FA6fb5a9FD88405dED8B7D44f3/logo.png differ diff --git a/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/info.json b/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/info.json index b2307092e0a5..cdae47bc92f9 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/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/info.json b/blockchains/smartchain/assets/0x7bC75e291E656E8658D66Be1cc8154A3769A35Dd/info.json new file mode 100644 index 000000000000..8a9584b63b86 --- /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 000000000000..533446f22fc9 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 000000000000..3c62c13a51b9 --- /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 000000000000..2e90568483fb 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 000000000000..4b5c91fb4894 --- /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 000000000000..71b5ec9ca83a Binary files /dev/null and b/blockchains/smartchain/assets/0x7d220240Cf958C5c47f2DAAC821dB965f9837e82/logo.png differ diff --git a/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/info.json b/blockchains/smartchain/assets/0x7e41E454b6A29C54e4cDB565E47542f4BCb37ef1/info.json new file mode 100644 index 000000000000..79b6b3fc165c --- /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 000000000000..795c86beca4e 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 000000000000..1cc85fdd90b4 --- /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 000000000000..a16cde4bd1f7 Binary files /dev/null and b/blockchains/smartchain/assets/0x7e9AB560d37E62883E882474b096643caB234B65/logo.png differ diff --git a/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/info.json b/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/info.json new file mode 100644 index 000000000000..61f0a9f1de53 --- /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 000000000000..82dd911e6106 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 000000000000..a5100aaba167 --- /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 000000000000..ab21f73547d2 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 000000000000..058822fe201a --- /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 000000000000..72e3d645b5f9 Binary files /dev/null and b/blockchains/smartchain/assets/0x818835503F55283cd51A4399f595e295A9338753/logo.png differ diff --git a/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/info.json b/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/info.json new file mode 100644 index 000000000000..0c47d1d9a949 --- /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 000000000000..f13b159d3f3d Binary files /dev/null and b/blockchains/smartchain/assets/0x837A130aED114300Bab4f9f1F4f500682f7efd48/logo.png differ diff --git a/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/info.json b/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/info.json new file mode 100644 index 000000000000..4dd183448c90 --- /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 000000000000..ad226e1f929e Binary files /dev/null and b/blockchains/smartchain/assets/0x83d8Ea5A4650B68Cd2b57846783d86DF940F7458/logo.png differ diff --git a/blockchains/smartchain/assets/0x8595F9dA7b868b1822194fAEd312235E43007b49/info.json b/blockchains/smartchain/assets/0x8595F9dA7b868b1822194fAEd312235E43007b49/info.json index ababcdb0293d..ccf2aad7f7a6 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/0x859C940F080B197659b3EfFc804fD622Df66f0a1/info.json b/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/info.json new file mode 100644 index 000000000000..7861f3bc7507 --- /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 000000000000..64dec636e0ee 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 ae46e6c94b19..5949ce6dc688 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 000000000000..693ba7420d90 --- /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 000000000000..37aac3a32742 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 9f1fe3cf5ce3..a67beeaba02d 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 ed1fb98cd835..afc937dc75ce 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 000000000000..8f00ef3bf0d7 --- /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": "active", + "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/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/logo.png b/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/logo.png new file mode 100644 index 000000000000..a33a3d44d18e Binary files /dev/null and b/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/logo.png differ diff --git a/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json b/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json index 05169b984575..a5e3787f618f 100644 --- a/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json +++ b/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json @@ -24,7 +24,6 @@ ], "tags": [ "gamefi", - "staking-native", "defi", "nft" ] diff --git a/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/info.json b/blockchains/smartchain/assets/0x882C173bC7Ff3b7786CA16dfeD3DFFfb9Ee7847B/info.json index a877f346e3f8..a64b191e68a3 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 fe099027769b..17835fe33735 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/logo.png b/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/logo.png index cc9f959d0251..7477aad4584e 100644 Binary files a/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/logo.png and b/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/logo.png differ diff --git a/blockchains/smartchain/assets/0x88888888Fc33e4ECba8958c0c2AD361089E19885/info.json b/blockchains/smartchain/assets/0x88888888Fc33e4ECba8958c0c2AD361089E19885/info.json index b35f4d1025ed..fdc3732c8f9c 100644 --- a/blockchains/smartchain/assets/0x88888888Fc33e4ECba8958c0c2AD361089E19885/info.json +++ b/blockchains/smartchain/assets/0x88888888Fc33e4ECba8958c0c2AD361089E19885/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "BIRB", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x88888888Fc33e4ECba8958c0c2AD361089E19885", "tags": [ "deflationary" @@ -37,4 +37,4 @@ "url": "https://reddit.com/r/BirbDefi/" } ] -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0x88888888Fc33e4ECba8958c0c2AD361089E19885/logo.png b/blockchains/smartchain/assets/0x88888888Fc33e4ECba8958c0c2AD361089E19885/logo.png deleted file mode 100644 index a5e4456b04ef..000000000000 Binary files a/blockchains/smartchain/assets/0x88888888Fc33e4ECba8958c0c2AD361089E19885/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/info.json b/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/info.json index 660901f6812b..26c82e0210b7 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 000000000000..999fd2d058ca --- /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 000000000000..1909242e57be 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 ad37d2177737..1c5763e4a637 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 7f136c3c9b17..c7ff21db16fa 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 41ca5f6297ea..a33112bb2320 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 fe35beab52c6..d8bda042323d 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/0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4/info.json b/blockchains/smartchain/assets/0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4/info.json new file mode 100644 index 000000000000..463b91e04542 --- /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 000000000000..eceba7306459 Binary files /dev/null and b/blockchains/smartchain/assets/0x8E062E7f7e95b9b51519a6f47C28F260ab1064e4/logo.png differ diff --git a/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json b/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/info.json new file mode 100644 index 000000000000..446a05749239 --- /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 000000000000..6c156aba6266 Binary files /dev/null and b/blockchains/smartchain/assets/0x8b1f4432F943c465A973FeDC6d7aa50Fc96f1f65/logo.png differ diff --git a/blockchains/smartchain/assets/0x8e17ed70334C87eCE574C9d537BC153d8609e2a3/info.json b/blockchains/smartchain/assets/0x8e17ed70334C87eCE574C9d537BC153d8609e2a3/info.json new file mode 100644 index 000000000000..1dedaef2cdf2 --- /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 000000000000..d5740aecada5 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 000000000000..ea97a972e367 --- /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 000000000000..f21a9869c8c2 Binary files /dev/null and b/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/logo.png differ diff --git a/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/info.json b/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/info.json index aaf1bc0e0084..6f1572d15df5 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 000000000000..812196c37be6 --- /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 000000000000..08ebbc0bff06 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 000000000000..8a9f38bce4e3 --- /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 000000000000..44ccdd57bb75 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 000000000000..44f0a9982256 --- /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 000000000000..fa9315e10290 Binary files /dev/null and b/blockchains/smartchain/assets/0x90Ed8F1dc86388f14b64ba8fb4bbd23099f18240/logo.png differ diff --git a/blockchains/smartchain/assets/0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A/info.json b/blockchains/smartchain/assets/0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A/info.json new file mode 100644 index 000000000000..b6b478e1ea87 --- /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 000000000000..5e2379d4a886 Binary files /dev/null and b/blockchains/smartchain/assets/0x9186359F82c3c0Cc005A0b3563Dc4Ccd2627D82A/logo.png differ diff --git a/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/info.json b/blockchains/smartchain/assets/0x922722E9Ef614EC9A3E94b78496e92AbFBb5A624/info.json new file mode 100644 index 000000000000..22f9280bff3f --- /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 000000000000..c23da603c64d 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 000000000000..e66756ab2647 --- /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 000000000000..91bbd52b5176 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 000000000000..107f15fec6f5 --- /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 000000000000..b97ae5f87f37 Binary files /dev/null and b/blockchains/smartchain/assets/0x936B6659Ad0C1b244Ba8Efe639092acae30dc8d6/logo.png differ diff --git a/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/info.json b/blockchains/smartchain/assets/0x95c78222B3D6e262426483D42CfA53685A67Ab9D/info.json index 3e69e5c0dc43..18fdbae94f52 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 08dd6c6270b6..dedb7029040e 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 000000000000..43748f45688c --- /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 000000000000..ec0be6a2f08d 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 000000000000..9a80141a1e40 --- /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 000000000000..129342cfae43 Binary files /dev/null and b/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png differ diff --git a/blockchains/smartchain/assets/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5/info.json b/blockchains/smartchain/assets/0x9678E42ceBEb63F23197D726B29b1CB20d0064E5/info.json index 07c5b108963e..a8e20925141f 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 812ce1da165e..1a126a8a0a4a 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 866d79c24958..43cb66cc79ef 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 000000000000..a0c884758c5a --- /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 000000000000..be0c071514d7 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 000000000000..53de2aa6bab1 --- /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 000000000000..11296a606fc2 Binary files /dev/null and b/blockchains/smartchain/assets/0x9840652DC04fb9db2C43853633f0F62BE6f00f98/logo.png differ diff --git a/blockchains/smartchain/assets/0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9/info.json b/blockchains/smartchain/assets/0x988F7c894e4001EEB7B570CDE80dffE21CF7B6B9/info.json new file mode 100644 index 000000000000..13d8e8627ca0 --- /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 000000000000..370b240bdb1d 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 000000000000..b2a9ddf44d9b --- /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 000000000000..897e2ba52411 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 000000000000..d2cae8a3b3ab --- /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 000000000000..0de1a1245981 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 b64017f58533..ce551182b8d9 100644 --- a/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/info.json +++ b/blockchains/smartchain/assets/0x990E7154bB999FAa9b2fa5Ed29E822703311eA85/info.json @@ -1,7 +1,7 @@ { - "name": "Binance-Peg ThunderCore", + "name": "BNB pegged ThunderCore", "website": "https://bridge.thundercore.com/bsc/", - "description": "Binance-Peg 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", + "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,7 +12,7 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/ThunderProtocol" + "url": "https://twitter.com/ThunderCoreLab" }, { "name": "discord", diff --git a/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json b/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json index 5c1c24f62593..a749464a0e1b 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/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/info.json b/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/info.json new file mode 100644 index 000000000000..5277b1c10dd2 --- /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 000000000000..3f9f03bb4dbc Binary files /dev/null and b/blockchains/smartchain/assets/0x9A2478C4036548864d96a97Fbf93f6a3341fedac/logo.png differ diff --git a/blockchains/smartchain/assets/0x9Ac983826058b8a9C7Aa1C9171441191232E8404/info.json b/blockchains/smartchain/assets/0x9Ac983826058b8a9C7Aa1C9171441191232E8404/info.json index d5f63ef5e246..4a079c3bff71 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/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/info.json b/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/info.json new file mode 100644 index 000000000000..0c9682812585 --- /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 000000000000..7fdeef83aa25 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 b4dfda2e4bcc..92123571e23b 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 95ce7b026979..000000000000 Binary files a/blockchains/smartchain/assets/0x9D986A3f147212327Dd658F712d5264a73a1fdB0/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json b/blockchains/smartchain/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json new file mode 100644 index 000000000000..dced01a4fc04 --- /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 000000000000..9d7b0435acaa 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 index a424c9aee441..d7660727b609 100644 --- a/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/info.json +++ b/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/info.json @@ -32,7 +32,6 @@ ], "tags": [ "gamefi", - "staking-native", "defi", "governance" ] diff --git a/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/info.json b/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/info.json new file mode 100644 index 000000000000..91035600ef93 --- /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/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/info.json b/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/info.json index 46d9b1520e0d..003ddc7f6aee 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 a87005218700..0fe7b68299d1 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 3250df2bcaf9..420e20555fc1 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/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/info.json b/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/info.json new file mode 100644 index 000000000000..3517b3a01470 --- /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 000000000000..1ccdc6a3b7db Binary files /dev/null and b/blockchains/smartchain/assets/0xA4050Aa9b76CcDAe1A6a8b2F3e8627Cdc1546d86/logo.png differ diff --git a/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/info.json b/blockchains/smartchain/assets/0xA73164DB271931CF952cBaEfF9E8F5817b42fA5C/info.json new file mode 100644 index 000000000000..e93b9244f9ca --- /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 000000000000..6ef222298a99 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 b1b1641bd005..86902cf84ec3 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 34eaed3a5e8d..000000000000 Binary files a/blockchains/smartchain/assets/0xA7f552078dcC247C2684336020c03648500C6d9F/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/info.json b/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/info.json new file mode 100644 index 000000000000..763c552e4014 --- /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 000000000000..613cf86d83ca 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 000000000000..09c712d1df45 --- /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 000000000000..4c55ec1d7621 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 0538767af05a..8214ba685ae8 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 f89a34f79784..9db68a25f3b4 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/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/info.json b/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/info.json new file mode 100644 index 000000000000..a1640dfa4d86 --- /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 000000000000..edb82f056e99 Binary files /dev/null and b/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/logo.png differ diff --git a/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/info.json b/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/info.json new file mode 100644 index 000000000000..d39f86a8eaed --- /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 000000000000..073b8760be40 Binary files /dev/null and b/blockchains/smartchain/assets/0xAaaAfDC2E08371B956Be515B3f3Ff735AB9c9D74/logo.png differ diff --git a/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/info.json b/blockchains/smartchain/assets/0xAdBAF88B39D37Dc68775eD1541F1bf83A5A45feB/info.json new file mode 100644 index 000000000000..a1d90bcf2e4c --- /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 000000000000..3a3da33983f9 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 000000000000..063fdd0b9698 --- /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 000000000000..2f38ab0bdb23 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 000000000000..344c5d2a07b6 --- /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 000000000000..a447405932c3 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 000000000000..6dab3547f7e9 --- /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 000000000000..70a81100d555 Binary files /dev/null and b/blockchains/smartchain/assets/0xAf98e6c2D3b520F4e9b3D7ea22ad7AeFFFDbc2fd/logo.png differ diff --git a/blockchains/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/info.json b/blockchains/smartchain/assets/0xB0D502E938ed5f4df2E681fE6E419ff29631d62b/info.json new file mode 100644 index 000000000000..2cc737ca0669 --- /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 000000000000..f983849d90c4 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 3ac6e8206c61..830dac254926 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 b36453b580c9..1e5d46d777c7 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 ca0aa00c78dd..41f7178d90b4 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 b5163cadd960..000000000000 Binary files a/blockchains/smartchain/assets/0xB3225aC90B741f762BecA76dEA1eaD278Ef26A96/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json b/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json new file mode 100644 index 000000000000..d885fdb4f6c4 --- /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 000000000000..68ecfe32afae 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 000000000000..d5a1ae4594f6 --- /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 000000000000..8e5e88c40300 Binary files /dev/null and b/blockchains/smartchain/assets/0xBbcF57177D8752B21d080bf30a06CE20aD6333F8/logo.png differ diff --git a/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/info.json b/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/info.json index e23915c02243..5cfefdb3e3c4 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 890e30f8df42..bdad58321421 100644 --- a/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/info.json +++ b/blockchains/smartchain/assets/0xC001BBe2B87079294C63EcE98BdD0a88D761434e/info.json @@ -1,28 +1,40 @@ { - "name": "EverGrow", - "website": "https://evergrowegc.com/", - "description": "EverGrow Coin is a hyper deflationary token that rewards holders in BUSD", - "explorer": "https://bscscan.com/token/0xC001BBe2B87079294C63EcE98BdD0a88D761434e", + "name": "EverGrow Coin", "type": "BEP20", "symbol": "EGC", "decimals": 9, + "website": "https://evergrowegc.com/", + "description": "EverGrow is a deflationary token designed to become more scarce over time through regular burn. All holders of $EGC will earn an 8% reward from every Buy/Transfer/Sell Transaction in $BUSD", + "explorer": "https://bscscan.com/token/0xC001BBe2B87079294C63EcE98BdD0a88D761434e", "status": "active", "id": "0xC001BBe2B87079294C63EcE98BdD0a88D761434e", - "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 9b8802d043b6..4a60835ae579 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/0xC183062db25FC96325485ea369C979CE881Ac0eA/info.json b/blockchains/smartchain/assets/0xC183062db25FC96325485ea369C979CE881Ac0eA/info.json new file mode 100644 index 000000000000..01f1d234dfa4 --- /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 000000000000..26babd9f8013 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 000000000000..83a67df30ced --- /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 000000000000..c01536256f12 Binary files /dev/null and b/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/logo.png differ diff --git a/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/info.json b/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/info.json new file mode 100644 index 000000000000..0d7a0b08beab --- /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 000000000000..f7a107f946cb Binary files /dev/null and b/blockchains/smartchain/assets/0xC762043E211571eB34f1ef377e5e8e76914962f9/logo.png differ diff --git a/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json b/blockchains/smartchain/assets/0xCA7661Ba64A7667E3006c421C181502d545D1911/info.json new file mode 100644 index 000000000000..b71119325987 --- /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 000000000000..7c76f51d1148 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 000000000000..39d05ec6b503 --- /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 000000000000..262a5caf9e95 Binary files /dev/null and b/blockchains/smartchain/assets/0xCE1b3e5087e8215876aF976032382dd338cF8401/logo.png differ diff --git a/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json new file mode 100644 index 000000000000..a86718ff5333 --- /dev/null +++ b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json @@ -0,0 +1,33 @@ +{ + "name": "TRON", + "type": "BEP20", + "symbol": "TRX", + "decimals": 18, + "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/0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B/logo.png b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B/logo.png rename to blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/logo.png diff --git a/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/info.json b/blockchains/smartchain/assets/0xD06716E1Ff2E492Cc5034c2E81805562dd3b45fa/info.json new file mode 100644 index 000000000000..ee6ab7876847 --- /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 000000000000..0d35e83db702 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 000000000000..357f664cb31c --- /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 000000000000..2d695ea1daaf Binary files /dev/null and b/blockchains/smartchain/assets/0xD16EaabA33a0822f5cBe4E0C63CA51D3c3fbB08B/logo.png differ diff --git a/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/info.json b/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/info.json new file mode 100644 index 000000000000..08882da9ed10 --- /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 000000000000..ca66658d2be7 Binary files /dev/null and b/blockchains/smartchain/assets/0xD5FFAB1841B9137D5528Ed09D6Ebb66c3088aeDE/logo.png differ diff --git a/blockchains/smartchain/assets/0xDB79c12d1d0670988A39B0E48b96e955eF922d24/info.json b/blockchains/smartchain/assets/0xDB79c12d1d0670988A39B0E48b96e955eF922d24/info.json new file mode 100644 index 000000000000..95a6d4a43085 --- /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 000000000000..5f42e043c5e1 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 000000000000..ac0a09a31b27 --- /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 000000000000..e9f509c1cd4c Binary files /dev/null and b/blockchains/smartchain/assets/0xDD3162aD2185928bf3D92Bc05174Aa442E7382Ef/logo.png differ diff --git a/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json b/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json index 04dbb6ffbb90..b8a59673ef1c 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/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/info.json b/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/info.json new file mode 100644 index 000000000000..e629aa623c49 --- /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 000000000000..876c6f407f5a Binary files /dev/null and b/blockchains/smartchain/assets/0xE5b5d4Bea7468B4994FA676949308a79497aa24c/logo.png differ diff --git a/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/info.json b/blockchains/smartchain/assets/0xE64E30276C2F826FEbd3784958d6Da7B55DfbaD3/info.json new file mode 100644 index 000000000000..1b55919f6227 --- /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 000000000000..aea07177c97d 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 544a1aff40f5..2c39cf20608d 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 cb70d1298fac..cec4d397760e 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/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/info.json b/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/info.json new file mode 100644 index 000000000000..cf4d349d7a7d --- /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 000000000000..6248d059b5a2 Binary files /dev/null and b/blockchains/smartchain/assets/0xEE5b03b769Ca6c690D140CafB52fC8de3f38FC28/logo.png differ diff --git a/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/info.json b/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/info.json new file mode 100644 index 000000000000..8850fa5d51d1 --- /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 000000000000..5725990a5e6f 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 000000000000..ab35e7c61be7 --- /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 000000000000..3544e757e5a7 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 000000000000..940e39a685d1 --- /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 000000000000..f3c761f6b6c1 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 000000000000..d57272d09104 --- /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 000000000000..f326efceafe8 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 000000000000..7abd1d87d1bb --- /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 000000000000..1528a945ae7d Binary files /dev/null and b/blockchains/smartchain/assets/0xF03E02AcbC5eb22de027eA4F59235966F5810D4f/logo.png differ diff --git a/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/info.json b/blockchains/smartchain/assets/0xF2A92BC1Cf798fF4De14502a9C6FdA58865e8D5d/info.json index c75da90ac669..c83872be64d3 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 bbdb2951046f..000000000000 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 000000000000..2085cb535e94 --- /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/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/logo.png b/blockchains/smartchain/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/logo.png rename to blockchains/smartchain/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/logo.png diff --git a/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/info.json b/blockchains/smartchain/assets/0xF700D4c708C2be1463E355F337603183D20E0808/info.json new file mode 100644 index 000000000000..a724a92b42c3 --- /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 000000000000..a498c4b2cbf2 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 9d0b3a576dcb..68e9dd65fd48 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/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/info.json b/blockchains/smartchain/assets/0xF912d3001CAf6DC4ADD366A62Cc9115B4303c9A9/info.json index 2537517cd998..704ca9009ac2 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 bbe9f3d3db74..18c53b17c636 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/0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835/info.json b/blockchains/smartchain/assets/0xF98b660AdF2ed7d9d9D9dAACC2fb0CAce4F21835/info.json new file mode 100644 index 000000000000..d0b2052d6da9 --- /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 000000000000..26f3dbd58537 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 000000000000..6c16486d83cd --- /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 000000000000..c2b15bea995e 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 ed5af8bef299..7fafae1314e6 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 000000000000..bb9d7cf3886f --- /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 000000000000..9a18cc8e0ebd 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 5520ff80105f..ab555eec50d1 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 000000000000..915d789317d0 --- /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 000000000000..2fc6d63b7400 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 000000000000..0842c8e0b90b --- /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 000000000000..592ac274130d 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 000000000000..74e900ea0705 --- /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 000000000000..10c26b8bf7c9 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 858babc01601..3d4eeda80197 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 dcc5ff1a0d0c..f3a521dc1391 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/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/info.json b/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/info.json new file mode 100644 index 000000000000..8a74c258f65f --- /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 000000000000..577673c43c6a 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 000000000000..810ab876b8fd --- /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 000000000000..2f640927677f 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 000000000000..50d338a8d101 --- /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/0xaA076B62EFC6f357882E07665157A271aB46A063/info.json b/blockchains/smartchain/assets/0xaA076B62EFC6f357882E07665157A271aB46A063/info.json new file mode 100644 index 000000000000..e3ce9d17daac --- /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 000000000000..2592a2e3e7c1 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 000000000000..4e65d302562a --- /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 000000000000..e99ba9070be5 Binary files /dev/null and b/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/logo.png differ diff --git a/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/info.json b/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/info.json new file mode 100644 index 000000000000..cfecbc9cf57d --- /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 000000000000..c5609229eeae Binary files /dev/null and b/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/logo.png differ diff --git a/blockchains/smartchain/assets/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/info.json b/blockchains/smartchain/assets/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/info.json index 39d39493b107..4dc8c4d4e1fd 100644 --- a/blockchains/smartchain/assets/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/info.json +++ b/blockchains/smartchain/assets/0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB/info.json @@ -6,7 +6,7 @@ "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": "active", + "status": "abandoned", "id": "0xaFb64E73dEf6fAa8B6Ef9a6fb7312d5C4C15ebDB", "links": [ { diff --git a/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/info.json b/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/info.json index 42308bde9223..4b05a0f66c77 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 5fcae3d64a1e..000000000000 Binary files a/blockchains/smartchain/assets/0xacFC95585D80Ab62f67A14C566C1b7a49Fe91167/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/info.json b/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/info.json new file mode 100644 index 000000000000..01425d7dd0c7 --- /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 000000000000..5366f7d18e9a Binary files /dev/null and b/blockchains/smartchain/assets/0xb1957BDbA889686EbdE631DF970ecE6A7571A1B6/logo.png differ diff --git a/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/info.json b/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/info.json new file mode 100644 index 000000000000..cffb07c86b61 --- /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 000000000000..a72b3917e23a 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 000000000000..1847c930472e --- /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 000000000000..cc526a26256c 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 7bc506a85b98..703a5c5a9e63 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 c307776c9ffb..e810764424d2 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 000000000000..429a3b16d68f --- /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 000000000000..0502f513ff47 Binary files /dev/null and b/blockchains/smartchain/assets/0xbA552586eA573Eaa3436f04027ff4effd0c0abbb/logo.png differ diff --git a/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/info.json b/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/info.json index abb32628dd42..02c7bd8dadc7 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 000000000000..dcf25cf04edd --- /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 000000000000..a84c1e67f797 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 000000000000..b9eda844992d --- /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 000000000000..94405ed8c677 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 000000000000..bb04c4b894ab --- /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 000000000000..72ab3d225e48 Binary files /dev/null and b/blockchains/smartchain/assets/0xc1A59a17F87ba6651Eb8E8F707db7672647c45bD/logo.png differ diff --git a/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/info.json b/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/info.json new file mode 100644 index 000000000000..41b3893cbcbe --- /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 000000000000..376a83227291 Binary files /dev/null and b/blockchains/smartchain/assets/0xc30C95205C7BC70D81da8e852255Cc89B90480f7/logo.png differ diff --git a/blockchains/smartchain/assets/0xc4736F2611A62d545DC2D0d8f0766283617e6FcB/info.json b/blockchains/smartchain/assets/0xc4736F2611A62d545DC2D0d8f0766283617e6FcB/info.json new file mode 100644 index 000000000000..f7b6b4e9f306 --- /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 000000000000..1e4b470346f6 Binary files /dev/null and b/blockchains/smartchain/assets/0xc4736F2611A62d545DC2D0d8f0766283617e6FcB/logo.png differ diff --git a/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/info.json b/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/info.json new file mode 100644 index 000000000000..bd46c8afeafd --- /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 000000000000..1022f7423227 Binary files /dev/null and b/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/logo.png differ diff --git a/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/info.json b/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/info.json new file mode 100644 index 000000000000..7ee2b8623d50 --- /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 000000000000..bef8fa97c8da Binary files /dev/null and b/blockchains/smartchain/assets/0xc9D53A339F3c22E016C6fA1E3Eb85AC32c75fED2/logo.png differ diff --git a/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/info.json b/blockchains/smartchain/assets/0xcD6970d5211EfDF2516A4fc73163db7bA812B212/info.json new file mode 100644 index 000000000000..f9638affbfb9 --- /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 000000000000..75ab0743930d 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 903ba7aa40ed..008d22434f76 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 000000000000..688a21b4c0e8 --- /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 000000000000..6e2f949e6b2b 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 000000000000..3eec960f19f1 --- /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 000000000000..56ebcd22f86d 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 000000000000..bcb3902561f2 --- /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 000000000000..f6949869609a Binary files /dev/null and b/blockchains/smartchain/assets/0xce6b8B2787C657f1b98b7A66B5B63178863fd719/logo.png differ diff --git a/blockchains/smartchain/assets/0xd21d29B38374528675C34936bf7d5Dd693D2a577/info.json b/blockchains/smartchain/assets/0xd21d29B38374528675C34936bf7d5Dd693D2a577/info.json new file mode 100644 index 000000000000..e9beae8f73eb --- /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 000000000000..87014c4be024 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 000000000000..2378f80f41d9 --- /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 000000000000..7ee8f72d1ccf Binary files /dev/null and b/blockchains/smartchain/assets/0xd2359c576632234D1354B20Bf51B0277Be20C81e/logo.png differ diff --git a/blockchains/smartchain/assets/0xd6edbB510af7901b2C049ce778b65a740c4aeB7f/info.json b/blockchains/smartchain/assets/0xd6edbB510af7901b2C049ce778b65a740c4aeB7f/info.json new file mode 100644 index 000000000000..d80d07216c81 --- /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 000000000000..9ec3f2023a45 Binary files /dev/null and b/blockchains/smartchain/assets/0xd6edbB510af7901b2C049ce778b65a740c4aeB7f/logo.png differ diff --git a/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/info.json b/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/info.json new file mode 100644 index 000000000000..de51634d1f24 --- /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/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/info.json b/blockchains/smartchain/assets/0xdDaE5F343b7768eAdaAD88A7f520fFf54F198211/info.json new file mode 100644 index 000000000000..7c1a66005d5e --- /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 000000000000..88b8b5786481 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 000000000000..5aebe0b8f6b2 --- /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 000000000000..abfc45d7828a Binary files /dev/null and b/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/logo.png differ diff --git a/blockchains/smartchain/assets/0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6/info.json b/blockchains/smartchain/assets/0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6/info.json new file mode 100644 index 000000000000..f9f09f1eec6e --- /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 000000000000..1f1a9a06f9ba Binary files /dev/null and b/blockchains/smartchain/assets/0xdd6978F36c98AfF4287E5ac803C9CF1b865641F6/logo.png differ diff --git a/blockchains/smartchain/assets/0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3/info.json b/blockchains/smartchain/assets/0xe05A08226c49b636ACf99c40Da8DC6aF83CE5bB3/info.json new file mode 100644 index 000000000000..55ed20800306 --- /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 000000000000..8f09e5dab027 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 000000000000..264583174768 --- /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 000000000000..9dce72664098 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 d2b93f8744af..7819fdb180ec 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 fd0acaa83f1f..000000000000 Binary files a/blockchains/smartchain/assets/0xe320Df552e78D57E95cF1182B6960746d5016561/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/info.json b/blockchains/smartchain/assets/0xe48A3d7d0Bc88d552f730B62c006bC925eadB9eE/info.json new file mode 100644 index 000000000000..46cac4236f2b --- /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 000000000000..bf59041d8b18 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 000000000000..b9e5c5e2beff --- /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 000000000000..2c93c622e823 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 000000000000..9b7f55ccc890 --- /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 000000000000..bcfd3fced0d3 Binary files /dev/null and b/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/logo.png differ diff --git a/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json b/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json new file mode 100644 index 000000000000..117ef79e380d --- /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 000000000000..8f5373634425 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 000000000000..d2481f898f75 --- /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 000000000000..83136391b1e9 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 000000000000..00fa38572c7c --- /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 000000000000..0bc18a175b27 Binary files /dev/null and b/blockchains/smartchain/assets/0xe702c303173f90094ce8c9c6CA3f198eCA0E027C/logo.png differ diff --git a/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 000000000000..b4e2b6f0acef --- /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 000000000000..9259df4c30a9 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 871d625d1a43..f6251dc232bf 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 000000000000..0d160ede0693 --- /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 000000000000..c6de8862832c 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 fb84077689f6..956eecc730e8 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/0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB/info.json b/blockchains/smartchain/assets/0xeD00Fc7D48B57B81FE65D1cE71c0985e4CF442CB/info.json new file mode 100644 index 000000000000..66305f608c22 --- /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 000000000000..d980071a0404 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 000000000000..7737248d08eb --- /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 000000000000..a83d58a242a0 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 5cde3af99dad..80b1693c57a8 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 b0bad5657d0c..000000000000 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 000000000000..622dd2948352 --- /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 000000000000..f8d79b2cb9c9 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 169c8d574e6e..62691460efe1 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 11d297e8c550..c30a7b4553b5 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/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/info.json b/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/info.json new file mode 100644 index 000000000000..bf8dfd885c3a --- /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 000000000000..41f631417200 Binary files /dev/null and b/blockchains/smartchain/assets/0xee1ae38BE4Ce0074C4A4A8DC821CC784778f378c/logo.png differ diff --git a/blockchains/smartchain/assets/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/info.json b/blockchains/smartchain/assets/0xf486ad071f3bEE968384D2E39e2D8aF0fCf6fd46/info.json new file mode 100644 index 000000000000..0e1c09655896 --- /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 000000000000..a59dd4bd6c7c 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 f15ac19fc8ef..86736f530604 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 ebb43df0fdf4..6461b421e15f 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 000000000000..2bd8b12412ff --- /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 000000000000..a750e6c4fffb 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 000000000000..cfcec79474dd --- /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 000000000000..05dc893c0c8a --- /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 000000000000..ee7784a141fa 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 000000000000..9fd8c062ab49 --- /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 000000000000..61eec0683aa2 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 000000000000..aee8dc8c01be --- /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 000000000000..577673c43c6a 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 02993da6cccc..b3c97641237a 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 c89265cf749a..e94351f0da0a 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 000000000000..f1583114751b --- /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 000000000000..395696034cf7 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 000000000000..29c993cf7d7f --- /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 000000000000..b23304784bcc Binary files /dev/null and b/blockchains/smartchain/assets/0xf9c27de474ccE832fAD75107853b78838888ac11/logo.png differ diff --git a/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/info.json b/blockchains/smartchain/assets/0xfD5840Cd36d94D7229439859C0112a4185BC0255/info.json index 190ad8af85c0..c9dac6896101 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 18d88d02a58a..a7e07311e8ee 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 000000000000..4a907f3656e8 --- /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 000000000000..4101813265fa Binary files /dev/null and b/blockchains/smartchain/assets/0xfE19F0B51438fd612f6FD59C1dbB3eA319f433Ba/logo.png differ diff --git a/blockchains/smartchain/assets/0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2/info.json b/blockchains/smartchain/assets/0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2/info.json new file mode 100644 index 000000000000..f565a17e6ff5 --- /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 000000000000..273b71d336ce Binary files /dev/null and b/blockchains/smartchain/assets/0xfFAD7f9F704a5FDC6265e24b436b4b35ed52DEF2/logo.png differ diff --git a/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/info.json b/blockchains/smartchain/assets/0xfb9C339b4BacE4Fe63ccc1dd9a3c3C531441D5fE/info.json new file mode 100644 index 000000000000..57e6bfc612dc --- /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 000000000000..7df437679768 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 000000000000..62766ba8ac7c --- /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/tokenlist.json b/blockchains/smartchain/tokenlist.json index 0b191f6e0b1a..21936e1e2b3c 100644 --- a/blockchains/smartchain/tokenlist.json +++ b/blockchains/smartchain/tokenlist.json @@ -183,6 +183,22 @@ }, { "base": "c20000714_t0xF952Fc3ca7325Cc27D15885d37117676d25BfdA6" + }, + { + "base": "c20000714_t0x6679eB24F59dFe111864AEc72B443d1Da666B360" + }, + { + "base": "c20000714_t0x734D66f635523D7ddb7d2373C128333DA313041b" + + }, + { + "base": "c20000714_t0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34" + }, + { + "base": "c20000714_t0x88479186BAC914E4313389a64881F5ed0153C765" + }, + { + "base": "c20000714_t0xc748673057861a797275CD8A068AbB95A902e8de" } ] }, @@ -201,7 +217,7 @@ "asset": "c20000714_t0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153", "type": "BEP20", "address": "0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153", - "name": "Binance-Peg Filecoin", + "name": "BNB pegged Filecoin", "symbol": "FIL", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x0D8Ce2A99Bb6e3B7Db580eD848240e4a0F9aE153/logo.png", @@ -222,7 +238,7 @@ "asset": "c20000714_t0x0Eb3a705fc54725037CC9e008bDede697f62F335", "type": "BEP20", "address": "0x0Eb3a705fc54725037CC9e008bDede697f62F335", - "name": "Binance-Peg Cosmos Token", + "name": "BNB pegged Cosmos Token", "symbol": "ATOM", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x0Eb3a705fc54725037CC9e008bDede697f62F335/logo.png", @@ -232,7 +248,7 @@ "asset": "c20000714_t0x16939ef78684453bfDFb47825F8a5F714f12623a", "type": "BEP20", "address": "0x16939ef78684453bfDFb47825F8a5F714f12623a", - "name": "Binance-Peg Tezos Token", + "name": "BNB pegged Tezos Token", "symbol": "XTZ", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/logo.png", @@ -253,7 +269,7 @@ "asset": "c20000714_t0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", "type": "BEP20", "address": "0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3", - "name": "Binance-Peg Dai Token", + "name": "BNB pegged Dai Token", "symbol": "DAI", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x1AF3F329e8BE154074D8769D1FFa4eE058B1DBc3/logo.png", @@ -263,7 +279,7 @@ "asset": "c20000714_t0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE", "type": "BEP20", "address": "0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE", - "name": "Binance-Peg XRP Token", + "name": "BNB pegged XRP Token", "symbol": "XRP", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x1D2F0da169ceB9fC7B3144628dB156f3F6c60dBE/logo.png", @@ -284,7 +300,7 @@ "asset": "c20000714_t0x2170Ed0880ac9A755fd29B2688956BD959F933F8", "type": "BEP20", "address": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8", - "name": "Binance-Peg Ethereum", + "name": "BNB pegged Ethereum", "symbol": "ETH", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x2170Ed0880ac9A755fd29B2688956BD959F933F8/logo.png", @@ -334,7 +350,7 @@ "asset": "c20000714_t0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47", "type": "BEP20", "address": "0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47", - "name": "Binance-Peg Cardano Token", + "name": "BNB pegged Cardano Token", "symbol": "ADA", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x3EE2200Efb3400fAbB9AacF31297cBdD1d435D47/logo.png", @@ -354,7 +370,7 @@ "asset": "c20000714_t0x4338665CBB7B2485A8855A139b75D5e34AB0DB94", "type": "BEP20", "address": "0x4338665CBB7B2485A8855A139b75D5e34AB0DB94", - "name": "Binance-Peg Litecoin Token", + "name": "BNB pegged Litecoin Token", "symbol": "LTC", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x4338665CBB7B2485A8855A139b75D5e34AB0DB94/logo.png", @@ -407,7 +423,7 @@ "asset": "c20000714_t0x55d398326f99059fF775485246999027B3197955", "type": "BEP20", "address": "0x55d398326f99059fF775485246999027B3197955", - "name": "Binance-Peg BSC-USD", + "name": "Tether USD", "symbol": "USDT", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x55d398326f99059fF775485246999027B3197955/logo.png", @@ -417,7 +433,7 @@ "asset": "c20000714_t0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6", "type": "BEP20", "address": "0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6", - "name": "Binance-Peg EOS Token", + "name": "BNB pegged EOS Token", "symbol": "EOS", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x56b6fB708fC5732DEC1Afc8D8556423A2EDcCbD6/logo.png", @@ -468,7 +484,7 @@ "asset": "c20000714_t0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402", "type": "BEP20", "address": "0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402", - "name": "Binance-Peg Polkadot Token", + "name": "BNB pegged Polkadot Token", "symbol": "DOT", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x7083609fCE4d1d8Dc0C979AAb8c869Ea2C873402/logo.png", @@ -479,7 +495,7 @@ "asset": "c20000714_t0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c", "type": "BEP20", "address": "0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c", - "name": "Binance-Peg BTCB Token", + "name": "BNB pegged BTCB Token", "symbol": "BTCB", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c/logo.png", @@ -539,7 +555,7 @@ "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-cdn.trustwallet.com/blockchains/smartchain/assets/0x7F70642d88cf1C4a3a7abb072B53B929b653edA5/logo.png", @@ -559,7 +575,7 @@ "asset": "c20000714_t0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e", "type": "BEP20", "address": "0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e", - "name": "Binance-Peg yearn.finance", + "name": "BNB pegged yearn.finance", "symbol": "YFI", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x88f1A5ae2A3BF98AEAF342D26B30a79438c9142e/logo.png", @@ -569,7 +585,7 @@ "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-cdn.trustwallet.com/blockchains/smartchain/assets/0x8fF795a6F4D97E7887C79beA79aba5cc76444aDf/logo.png", @@ -631,7 +647,7 @@ "asset": "c20000714_t0xa2B726B1145A4773F68593CF171187d8EBe4d495", "type": "BEP20", "address": "0xa2B726B1145A4773F68593CF171187d8EBe4d495", - "name": "Injective Protocol", + "name": "Injective", "symbol": "INJ", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xa2B726B1145A4773F68593CF171187d8EBe4d495/logo.png", @@ -652,7 +668,7 @@ "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-cdn.trustwallet.com/blockchains/smartchain/assets/0xAD6cAEb32CD2c308980a548bD0Bc5AA4306c6c18/logo.png", @@ -673,7 +689,7 @@ "asset": "c20000714_t0xBf5140A22578168FD562DCcF235E5D43A02ce9B1", "type": "BEP20", "address": "0xBf5140A22578168FD562DCcF235E5D43A02ce9B1", - "name": "Binance-Peg Uniswap", + "name": "BNB pegged Uniswap", "symbol": "UNI", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xBf5140A22578168FD562DCcF235E5D43A02ce9B1/logo.png", @@ -683,7 +699,7 @@ "asset": "c20000714_t0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe", "type": "BEP20", "address": "0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe", - "name": "Binance-Peg Elrond", + "name": "BNB pegged Elrond", "symbol": "EGLD", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xbF7c81FFF98BbE61B40Ed186e4AfD6DDd01337fe/logo.png", @@ -776,7 +792,7 @@ "asset": "c20000714_t0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", "type": "BEP20", "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", - "name": "Binance-Peg BUSD", + "name": "BNB pegged BUSD", "symbol": "BUSD", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56/logo.png", @@ -817,7 +833,7 @@ "asset": "c20000714_t0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", "type": "BEP20", "address": "0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD", - "name": "Binance-Peg ChainLink", + "name": "BNB pegged ChainLink", "symbol": "LINK", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xF8A0BF9cF54Bb92F17374d9e9A321E6a111a51bD/logo.png", @@ -844,13 +860,73 @@ "pairs": [] }, { - "asset": "c20000714_t0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97", + "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_t0x88479186BAC914E4313389a64881F5ed0153C765", + "type": "BEP20", + "address": "0x88479186BAC914E4313389a64881F5ed0153C765", + "name": "SquidGrow", + "symbol": "SquidGrow", + "decimals": 19, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xC3137c696796D69F783CD0Be4aB4bB96814234Aa", + "type": "BEP20", + "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": "0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97", - "name": "BinaryX", - "symbol": "BNX", + "address": "0x95c91eEf65F50570cFC3f269961a00108Cf7BF59", + "name": "The DONS", + "symbol": "DONS", "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97/logo.png", + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59/logo.png", "pairs": [] } ], @@ -859,4 +935,4 @@ "minor": 0, "patch": 0 } -} \ No newline at end of file +} diff --git a/blockchains/solana/assets/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU/info.json b/blockchains/solana/assets/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU/info.json new file mode 100644 index 000000000000..89b3ab0005f3 --- /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 000000000000..26ad2e6c8176 Binary files /dev/null and b/blockchains/solana/assets/7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU/logo.png differ diff --git a/blockchains/solana/assets/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks/info.json b/blockchains/solana/assets/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks/info.json new file mode 100644 index 000000000000..bad799c7bd5a --- /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 000000000000..11b65fe83918 Binary files /dev/null and b/blockchains/solana/assets/CKaKtYvz6dKPyMvYq9Rh3UBrnNqYZAyd7iF4hJtjUvks/logo.png differ diff --git a/blockchains/solana/assets/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K/info.json b/blockchains/solana/assets/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K/info.json new file mode 100644 index 000000000000..849d66922acc --- /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 000000000000..dd5c56ded3a1 Binary files /dev/null and b/blockchains/solana/assets/CsZ5LZkDS7h9TDKjrbL7VAwQZ9nsRu8vJLhRYfmGaN8K/logo.png differ diff --git a/blockchains/solana/assets/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/info.json b/blockchains/solana/assets/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/info.json new file mode 100644 index 000000000000..70cc562f242a --- /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 000000000000..d56041397f1e Binary files /dev/null and b/blockchains/solana/assets/DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263/logo.png differ diff --git a/blockchains/solana/assets/E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy/info.json b/blockchains/solana/assets/E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy/info.json new file mode 100644 index 000000000000..851b7f6b784b --- /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 000000000000..6a4f498ca1b2 Binary files /dev/null and b/blockchains/solana/assets/E5rk3nmgLUuKUiS94gg4bpWwWwyjCMtddsAXkTFLtHEy/logo.png differ diff --git a/blockchains/solana/assets/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az/info.json b/blockchains/solana/assets/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az/info.json new file mode 100644 index 000000000000..a682d577eece --- /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 000000000000..b2165b22a4f7 Binary files /dev/null and b/blockchains/solana/assets/EcQCUYv57C4V6RoPxkVUiDwtX1SP8y8FP5AEToYL8Az/logo.png differ diff --git a/blockchains/solana/assets/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe/info.json b/blockchains/solana/assets/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe/info.json new file mode 100644 index 000000000000..c15574850090 --- /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 000000000000..fd3dc61c2138 Binary files /dev/null and b/blockchains/solana/assets/FLUX1wa2GmbtSB6ZGi2pTNbVCw3zEeKnaPCkPtFXxqXe/logo.png differ diff --git a/blockchains/solana/assets/Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1/info.json b/blockchains/solana/assets/Saber2gLauYim4Mvftnrasomsv6NvAuncvMEZwcLpD1/info.json new file mode 100644 index 000000000000..6e6be6e1476c --- /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 000000000000..5068657ed4d9 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 62653189aba2..4aa16dfdb838 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 7d2983f49f17..7a8a6eab1dee 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/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/info.json b/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/info.json new file mode 100644 index 000000000000..bedce8f8cce5 --- /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 000000000000..2a6c1f2c39e9 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 7de24d6bea9f..7a7ebbef00ac 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/D1J7k7WouxgwzCfPN5qnW7TSmCTNqgNxWhjAxq62UK8U/logo.png b/blockchains/solana/validators/assets/D1J7k7WouxgwzCfPN5qnW7TSmCTNqgNxWhjAxq62UK8U/logo.png new file mode 100644 index 000000000000..95674f5ffbf9 Binary files /dev/null and b/blockchains/solana/validators/assets/D1J7k7WouxgwzCfPN5qnW7TSmCTNqgNxWhjAxq62UK8U/logo.png differ diff --git a/blockchains/solana/validators/assets/EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z/logo.png b/blockchains/solana/validators/assets/EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z/logo.png index f4ef0f5deea0..145cb3cb0991 100644 Binary files a/blockchains/solana/validators/assets/EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z/logo.png and b/blockchains/solana/validators/assets/EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z/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 000000000000..ac09c895c929 Binary files /dev/null and b/blockchains/solana/validators/assets/PUmpKiNnSVAZ3w4KaFX6jKSjXUNHFShGkXbERo54xjb/logo.png differ diff --git a/blockchains/solana/validators/list.json b/blockchains/solana/validators/list.json index 0a270209c498..44c8ef68977b 100644 --- a/blockchains/solana/validators/list.json +++ b/blockchains/solana/validators/list.json @@ -1,16 +1,22 @@ [ { - "id": "AS3nKBQfKs8fJ8ncyHrdvo4FDT6S8HMRhD75JjCcyr1t", - "name": "Overclock", - "description": "Dedicated members of the Solana ecosystem running a high performance, secure validator operation.", - "website": "https://www.overclock.one/" + "id": "PUmpKiNnSVAZ3w4KaFX6jKSjXUNHFShGkXbERo54xjb", + "name": "Pumpkin's Pool", + "description": "High Yield - Top 1% APY + No fee + MEV Sharing | Professionally run on high-end enterprise hardware.", + "website": "https://www.pumpkinspool.eco/" }, { "id": "EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z", - "name": "0% fee 🌻 Sunflower", + "name": "Sunflower 🌻", "description": "Thanks to this sunflower, the plants defeated the zombies! She can be trusted! Retired. Now she's just validating.", "website": "https://sunflowerstake.com/" }, + { + "id": "AS3nKBQfKs8fJ8ncyHrdvo4FDT6S8HMRhD75JjCcyr1t", + "name": "Overclock", + "description": "Dedicated members of the Solana ecosystem running a high performance, secure validator operation.", + "website": "https://www.overclock.one/" + }, { "id": "9QU2QSxhb24FUX3Tu2FpczXjpK3VYrvRudywSZaM29mF", "name": "Everstake", @@ -124,5 +130,11 @@ "name": "Stakely.io", "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection & Eligible for airdrops | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", "website": "https://stakely.io" + }, + { + "id": "D1J7k7WouxgwzCfPN5qnW7TSmCTNqgNxWhjAxq62UK8U", + "name": "Stakewolle | Mainnet", + "description": "🦈 Professional Bockchain Validator 🔁Auto-compound with REStakeapp 🛡100% Slashing insurance 🎁 All & Special Airdrops for delegators http://linktr.ee/stakewolle", + "website": "https://stakewolle.com/" } ] diff --git a/blockchains/sommelier/info/info.json b/blockchains/sommelier/info/info.json new file mode 100644 index 000000000000..0692fa882666 --- /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 000000000000..6e6eb7f239b8 Binary files /dev/null and b/blockchains/sommelier/info/logo.png differ diff --git a/blockchains/stargaze/info/info.json b/blockchains/stargaze/info/info.json new file mode 100644 index 000000000000..0d36e4dba992 --- /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 000000000000..bae9f21d4771 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 000000000000..2b7d58fdbd8b 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 000000000000..d9182668938b 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 000000000000..6969356556ad 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 000000000000..a815dfcdc85c 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 000000000000..5f4e450704b0 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 000000000000..60cd89b075f7 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 000000000000..e53d0580b5a9 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qlh8sg9/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 000000000000..91529a7d386f 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 000000000000..05e24c5c9fa3 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 000000000000..1b71ae0a3a34 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 000000000000..ecce984f26a9 --- /dev/null +++ b/blockchains/stargaze/validators/list.json @@ -0,0 +1,62 @@ +[ + { + "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": "starsvaloper1mz2qks48v486d9m8wp4l9fxm2e9l0e0kzk79m5", + "name": "StakeLab", + "description": "Staking Hub for Cosmos ecosystem", + "website": "https://www.stakelab.fr/" + }, + { + "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": "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" + } +] diff --git a/blockchains/stratis/info/info.json b/blockchains/stratis/info/info.json new file mode 100644 index 000000000000..b415b9699966 --- /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 000000000000..00a41b1a8f18 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 000000000000..e0bb8d56a7cb --- /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 000000000000..14110f594c41 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 000000000000..37d1967c74e2 --- /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 000000000000..23d57dbfa8fa 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 000000000000..4cc88944c0ec --- /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 000000000000..a9ce5b229756 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 000000000000..313db9affb3c --- /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 000000000000..dad76df8989b 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 000000000000..c60fe8a35758 --- /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 000000000000..aefd71b972a8 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 000000000000..bb5a4e779bfe --- /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 000000000000..b0f32fb97ef6 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 000000000000..4ab67048dc97 --- /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 000000000000..29cf9c0c583b 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 000000000000..3785ebcc801e --- /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 000000000000..4464f89f1688 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 000000000000..cd9a003a99c0 --- /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 000000000000..e75a2ec56fdc 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 000000000000..831b62a58436 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 000000000000..102052714989 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 000000000000..f30b2458178d Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper19nktvlnhd7j2tsyt97jyfnv3kdemx8cqx25ng7/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 000000000000..ef1e1911316f 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 000000000000..0e32dd66a10d 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 000000000000..0210d0e6e879 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 000000000000..8f6bd2d3b789 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 000000000000..6676e07e645c 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 000000000000..74e85f6c4943 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 000000000000..aab2312d1572 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 000000000000..0048540e96fd Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1x0agh4jnvamn6y5ss94s6ktugwkljp6y2tkj0w/logo.png differ diff --git a/blockchains/stride/validators/list.json b/blockchains/stride/validators/list.json new file mode 100644 index 000000000000..096de33df58d --- /dev/null +++ b/blockchains/stride/validators/list.json @@ -0,0 +1,68 @@ +[ + { + "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": "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" + } +] 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 000000000000..e3bad598f0ab --- /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 000000000000..8047edf737f3 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 000000000000..7a8183cc44c0 --- /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 000000000000..98f440a37645 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 000000000000..8440ed631196 --- /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 000000000000..90b0d10acc2f 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 000000000000..10487ed2dba6 --- /dev/null +++ b/blockchains/sui/info/info.json @@ -0,0 +1,31 @@ +{ + "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" + ], + "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 000000000000..2b876f1c5d4d 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 000000000000..22f979354326 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 000000000000..1db1d333a4b1 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 000000000000..01498ceed724 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 000000000000..02bd65ee5f9b 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 000000000000..0a827d6b5873 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 000000000000..203f6d45c993 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 000000000000..102052714989 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 000000000000..1914e999c9f0 Binary files /dev/null and b/blockchains/sui/validators/assets/0x91b3d7211dbe057d02e2aa06f1cd678f1408438d494d2e783e0b67a77cca4599/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 000000000000..9c65c6d2163a 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 000000000000..5e96ae80cbd5 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 000000000000..27f6365a734e 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 000000000000..690e7cd7c15b --- /dev/null +++ b/blockchains/sui/validators/list.json @@ -0,0 +1,68 @@ +[ + { + "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" + } +] diff --git a/blockchains/syscoin/info/info.json b/blockchains/syscoin/info/info.json new file mode 100644 index 000000000000..3d5b8688661e --- /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 000000000000..c10e6dbcfb9b 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 000000000000..7d640de40ae7 --- /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 000000000000..63fedfa89257 Binary files /dev/null and b/blockchains/teritori/info/logo.png differ diff --git a/blockchains/terra/info/info.json b/blockchains/terra/info/info.json index c5fb59546837..c83e0916a446 100644 --- a/blockchains/terra/info/info.json +++ b/blockchains/terra/info/info.json @@ -8,6 +8,9 @@ "type": "coin", "decimals": 6, "status": "active", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", diff --git a/blockchains/terra/validators/assets/terravaloper12r8929na0amxfj406zw7vk8jmd03fmzcj9r2gg/logo.png b/blockchains/terra/validators/assets/terravaloper12r8929na0amxfj406zw7vk8jmd03fmzcj9r2gg/logo.png new file mode 100644 index 000000000000..434f53ccac24 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper12r8929na0amxfj406zw7vk8jmd03fmzcj9r2gg/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 000000000000..7377f61b2a54 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper14xjkj5rv72fgqz3h78l883rw0njwhmzce45006/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 000000000000..80d398ff24f8 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper16e0s5t7q69elnlchrupryw3h7vu8zk23pe5wh8/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 000000000000..51a327ab316c Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1der0lqp4grpnmpuefhwlj72fzccqmhmwgjh6ys/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 000000000000..70ee36d1bc85 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1fuk24ujq5e7zrj7st2m4wvgczdfchhzm5f2ml0/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1pu8lpz64erz47eemtkhq9wzwu9st9ehywnlw4q/logo.png b/blockchains/terra/validators/assets/terravaloper1pu8lpz64erz47eemtkhq9wzwu9st9ehywnlw4q/logo.png new file mode 100644 index 000000000000..ea2ccf3b3969 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 000000000000..5fbc40e48714 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 b31d94aabb83..10a01a3fb97d 100644 --- a/blockchains/terra/validators/list.json +++ b/blockchains/terra/validators/list.json @@ -73,8 +73,50 @@ }, { "id": "terravaloper120ppepaj2lh5vreadx42wnjjznh55vvktp78wk", - "name": "Allnodes.com ⚡️ 0% fee", + "name": "Allnodes.com ⚡️", "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", "website": "https://www.allnodes.com/lunc/staking" + }, + { + "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" } -] \ 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 000000000000..67400282f287 --- /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 000000000000..f460a82ea7d1 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 000000000000..7897c352bc67 --- /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 000000000000..b5fb248e88a7 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 000000000000..47b52d2d3cb1 --- /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 000000000000..025371c33669 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 000000000000..5972914be6d8 --- /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 000000000000..36a805dcc9fd 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 000000000000..abcfc3298bba 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 41a05b7c6227..3aa3f290a506 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 000000000000..e30c6b6d03d3 --- /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 000000000000..4c55ec1d7621 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 463e96b413c8..a0c7377ef5dc 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 9a1bfc2bbfad..991919957aec 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 329fce056a77..dc49d23f16cb 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 ad71507941e0..b176edcd95c9 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 efc2d47f6f84..7ee3f85bb9ba 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 34f7f037b80b..a921e410267e 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 303d53cc1e7b..f3b1bac3921b 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 7732ac9e5817..c0537d1d0a97 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 2dd51a695d92..4381a61c9d9c 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 123567b22571..31135e85ba04 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 1112d6c732b9..12f97a570fbf 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 e8855acabc95..868b99ddda01 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 a17554acaffa..173e21f0226f 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 238c23d1a574..3f237990894f 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 929fbdc3f223..f7f1d3b07465 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 5b2c9bc466bd..4fde767c264c 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 5c55ddf6c6e1..934ae941a171 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 1329f4c306f5..6a0cd7ce7a41 100644 --- a/blockchains/thundertoken/info/info.json +++ b/blockchains/thundertoken/info/info.json @@ -15,7 +15,7 @@ }, { "name": "twitter", - "url": "https://twitter.com/ThunderProtocol" + "url": "https://twitter.com/ThunderCoreLab" }, { "name": "reddit", diff --git a/blockchains/ton/info/info.json b/blockchains/ton/info/info.json index b08d33625ef8..82a1c1ae03d3 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 a8ddc2bdfa34..0e6ebc02e796 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 000000000000..241670bcd41e --- /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 000000000000..e5d363edbb6b Binary files /dev/null and b/blockchains/tron/assets/TAoA331n3iKDkR62kAZ4H2n3vNL7y3d8x9/logo.png differ diff --git a/blockchains/tron/assets/TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL/info.json b/blockchains/tron/assets/TMNTn2uFAHhkGE3uuM84rhfRRjt6ry9xnL/info.json index 9ff4da66be08..49d677773d5e 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 000000000000..3385170144bd --- /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 000000000000..5c7d8e7811cc Binary files /dev/null and b/blockchains/tron/assets/TMz2SWatiAtZVVcH2ebpsbVtYwUPT9EdjH/logo.png differ diff --git a/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/info.json b/blockchains/tron/assets/TUP3g7kbaESRFRhULeA19USSrcVBEpWLVY/info.json new file mode 100644 index 000000000000..8f5b3bf822bc --- /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 000000000000..39519f369a70 --- /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/umee/info/info.json b/blockchains/umee/info/info.json new file mode 100644 index 000000000000..49936c48bfa6 --- /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 000000000000..654575bd34ef Binary files /dev/null and b/blockchains/umee/info/logo.png differ diff --git a/blockchains/vechain/assets/0x0000000000000000000000000000456E65726779/info.json b/blockchains/vechain/assets/0x0000000000000000000000000000456E65726779/info.json index efb7b8a50fd7..cbd434dcb7eb 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 000000000000..e2dfaa142d02 --- /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 000000000000..a04d4f18b4fc Binary files /dev/null and b/blockchains/verge/info/logo.png differ diff --git a/blockchains/zen/info/info.json b/blockchains/zen/info/info.json new file mode 100644 index 000000000000..61bdc1d9c5c7 --- /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 000000000000..a4f16a6809b4 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 000000000000..0e8ec298d6c1 --- /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 000000000000..c8c11d1013eb 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 000000000000..2da02401beae --- /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 000000000000..e163b59d2da6 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 000000000000..14f839edb03d --- /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 000000000000..26f3dbd58537 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 000000000000..29c16b15fab3 --- /dev/null +++ b/blockchains/zksync/info/info.json @@ -0,0 +1,19 @@ +{ + "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", + "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 000000000000..aae19b2c9ef9 Binary files /dev/null and b/blockchains/zksync/info/logo.png differ diff --git a/dapps/app.beefy.png b/dapps/app.beefy.finance.png similarity index 100% rename from dapps/app.beefy.png rename to dapps/app.beefy.finance.png diff --git a/dapps/app.cyberconnect.png b/dapps/app.cyberconnect.png new file mode 100644 index 000000000000..134961e55f09 Binary files /dev/null and b/dapps/app.cyberconnect.png differ diff --git a/dapps/app.dmail.png b/dapps/app.dmail.png new file mode 100644 index 000000000000..30a53afb0fde Binary files /dev/null and b/dapps/app.dmail.png differ diff --git a/dapps/app.spaceid.png b/dapps/app.spaceid.png new file mode 100644 index 000000000000..e33fa7048f31 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 000000000000..5d18f70da515 Binary files /dev/null and b/dapps/app.stakepark.xyz.png differ diff --git a/dapps/aptos.pancakeswap.finance.png b/dapps/aptos.pancakeswap.finance.png new file mode 100644 index 000000000000..df23093e1c71 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 000000000000..26ecd2192c62 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 000000000000..e4d6f2472c3d 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 000000000000..1a98dbc738f5 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 000000000000..b04d4013df72 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 000000000000..012d291e56ec 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 000000000000..2cb53a8cedeb 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 000000000000..312e21dc5d6c 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 000000000000..a7d79ca849d3 Binary files /dev/null and b/dapps/gains.trade.png differ diff --git a/dapps/gmx.io.png b/dapps/gmx.io.png new file mode 100644 index 000000000000..a9ec9e4a9d09 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 000000000000..fe8a76dfa8f0 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 000000000000..b66b3c180cd2 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 000000000000..077787317006 Binary files /dev/null and b/dapps/koinly.io.png differ diff --git a/dapps/mclaren.png b/dapps/mclaren.png new file mode 100644 index 000000000000..0bca11607f1b 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 000000000000..17e9878fb461 Binary files /dev/null and b/dapps/prdt.finance.png differ diff --git a/dapps/surnft.com.png b/dapps/surnft.com.png new file mode 100644 index 000000000000..45b116163ac1 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 000000000000..08874c8be8e7 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 000000000000..47a879126b25 Binary files /dev/null and b/dapps/tools.crypton.xyz.png differ diff --git a/dapps/tw.btcgiveaway.png b/dapps/tw.btcgiveaway.png new file mode 100644 index 000000000000..2e6acf0cc5c3 Binary files /dev/null and b/dapps/tw.btcgiveaway.png differ diff --git a/dapps/tw_scw_brain.png b/dapps/tw_scw_brain.png new file mode 100644 index 000000000000..26a5f89a47d8 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 000000000000..050d93188bca 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 000000000000..70d3a93b8e16 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 000000000000..326fe2325ea9 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 000000000000..c7dbce5088b0 Binary files /dev/null and b/dapps/tw_scw_wave.png differ diff --git a/go.mod b/go.mod index 4b3c8e6df297..39d9112b4912 100644 --- a/go.mod +++ b/go.mod @@ -3,33 +3,41 @@ module github.com/trustwallet/assets go 1.18 require ( - github.com/sirupsen/logrus v1.8.1 - github.com/spf13/cobra v1.4.0 - github.com/trustwallet/assets-go-libs v0.3.0 - github.com/trustwallet/go-libs v0.3.13 - github.com/trustwallet/go-primitives v0.0.56 + github.com/sirupsen/logrus v1.9.0 + github.com/spf13/cobra v1.7.0 + github.com/trustwallet/assets-go-libs v0.3.6 + github.com/trustwallet/go-libs v0.7.3 + github.com/trustwallet/go-primitives v0.0.81 ) 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-20220214200702-86341886e292 // indirect - golang.org/x/image v0.0.0-20211028202545-6944b10bf410 // indirect - golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // 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 30133d8fc608..1f98fa5865cd 100644 --- a/go.sum +++ b/go.sum @@ -1,42 +1,227 @@ -github.com/cpuguy83/go-md2man/v2 v2.0.1/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= +cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= +cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= +cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= +cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= +cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= +cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= +cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= +cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= +cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= +cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= +cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= +cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= +cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= +cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= +cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= +cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= +cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= +cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= +cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= +cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= +cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= +cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= +cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= +cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= +cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= +cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= +cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= +cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= +cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= +dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= +github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= +github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= +github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE= +github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= +github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= +github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= +github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= +github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= +github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/deckarep/golang-set v1.7.1 h1:SCQV0S6gTtp6itiFrTqI+pfmJ4LN85S1YzhDf9rTHJQ= github.com/deckarep/golang-set v1.7.1/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14yDtF28KmMOgQ= +github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= +github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/fsnotify/fsnotify v1.5.1 h1:mZcQUHVQUQWoPXXtuf9yuEXKudkV2sx1E06UadKWpgI= github.com/fsnotify/fsnotify v1.5.1/go.mod h1:T3375wBYaZdLLcVNkcVbzGHY7f1l/uK5T5Ai1i3InKU= +github.com/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/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= +github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= +github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= +github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= +github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= +github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= +github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= +github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= +github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= +github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= +github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= +github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= -github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= -github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= +github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= +github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8= +github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw= +github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= +github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= +github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= +github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/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/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/leodido/go-urn v1.2.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-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/mitchellh/mapstructure v1.4.3 h1:OVowDSCllw/YjdLkam3/sm7wEtOy59d8ndGgCcyj8cs= github.com/mitchellh/mapstructure v1.4.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaRUnok+kx1WdO15EQc= github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ= github.com/pelletier/go-toml v1.9.4 h1:tjENF6MfZAg8e4ZmZTeWaWiT2vXtsoO6+iuOjFhECwM= github.com/pelletier/go-toml v1.9.4/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= +github.com/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/rogpeppe/go-internal v1.8.1 h1:geMPLpDpQOgVyCg5z5GoRwLHepNdb71NXb67XFkP+Eg= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= +github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= +github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= +github.com/prometheus/client_golang v1.12.0 h1:C+UIj/QWtmqY13Arb8kwMt5j34/0Z2iKamrJ+ryC0Gg= +github.com/prometheus/client_golang v1.12.0/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= +github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= +github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= +github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= +github.com/prometheus/common v0.32.1 h1:hWIdL3N2HoUx3B8j3YN9mWor0qhY/NlEKZEaXxuIRh4= +github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= +github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= +github.com/prometheus/procfs v0.7.3 h1:4jVXhlkAyzOScmCkXBTOLRLTz8EeU+eyjrwB/EPq0VU= +github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= +github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/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.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE= -github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= +github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= +github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= +github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0= +github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/spf13/afero v1.6.0 h1:xoax2sJ2DT8S8xA2paPFjDCScCNeWsg75VG0DLRreiY= github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= github.com/spf13/cast v1.4.1 h1:s0hze+J0196ZfEMTs80N7UlFt0BDuQ7Q+JDnHiMWKdA= github.com/spf13/cast v1.4.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cobra v1.4.0 h1:y+wJpx64xcgO1V+RcnwW0LEHxTKRi2ZDPSBjWnrg88Q= -github.com/spf13/cobra v1.4.0/go.mod h1:Wo4iy3BUC+X2Fybo0PDqwJIv3dNRiZLHQymsfxlB84g= +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= @@ -44,41 +229,342 @@ github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An github.com/spf13/viper v1.10.0 h1:mXH0UwHS4D2HwWZa75im4xIQynLfblmWV7qcWpfv0yk= github.com/spf13/viper v1.10.0/go.mod h1:SoyBPwAtKDzypXNDFKN5kzH7ppppbGZtls1UpIy5AsM= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= -github.com/stretchr/testify v1.7.0 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.3.0 h1:roDXZaUciPbTfwTbCQRajcDFwrFGkVhhCAxGelztjvU= -github.com/trustwallet/assets-go-libs v0.3.0/go.mod h1:IW7K3aJcVlsXnQWD61KyQ46Nvb5iIPrptsKuSDFYbj8= -github.com/trustwallet/go-libs v0.3.13 h1:zB30WfP6Do+5Cf3+HgkUhawBf1fnOdvvC/eBfCHKBEw= -github.com/trustwallet/go-libs v0.3.13/go.mod h1:FuDoyKxhE1IgLPWMfU1PFok87MqfYm/spJJx1QziWe8= -github.com/trustwallet/go-primitives v0.0.56 h1:ndiZSz+99LPj1F5FMjiwMKzepuXScxcGm4C/PWb28LA= -github.com/trustwallet/go-primitives v0.0.56/go.mod h1:4IujMVfxa0uJS267wFszPDYd7vVjQY+/uOREZclnfU0= +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/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/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.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.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20220214200702-86341886e292 h1:f+lwQ+GtmgoY+A2YaQxlSOnDjXcQ7ZRLWOHbC6HtRqE= -golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -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/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.4.0 h1:UVQgzMY87xqpKNgb+kDsll2Igd33HszWHFLmpaRMq/8= +golang.org/x/crypto v0.4.0/go.mod h1:3quD/ATkf6oY+rnes5c3ExXTbLc8mueNue5/DoinL80= +golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= +golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= +golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= +golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= +golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= +golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= +golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.5.0 h1:5JMiNunQeQw++mMOz48/ISeNu3Iweh/JaZU8ZLqHRrI= +golang.org/x/image v0.5.0/go.mod h1:FVC7BI/5Ym8R25iw5OLsgshdUBbT1h5jZTpA+mvAdZ4= +golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= +golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= +golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= +golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= +golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= +golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= +golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= +golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 h1:XfKQ4OlFl8okEOr5UvAqFRVj8pY/4yfcXrddB8qAbU0= 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.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= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= +golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= +golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= +google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= +google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= +google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= +google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= +google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= +google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= +google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= +google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= +google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= +google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= +google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= +google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= +google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= +google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= +google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= +google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= +google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= +google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= +google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= +google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= +google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= +google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.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= -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/ini.v1 v1.66.2 h1:XfR1dOYubytKy4Shzc2LHrrGhU0lDCfDGG1yLPmpgsI= gopkg.in/ini.v1 v1.66.2/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= +honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= +rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= +rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= diff --git a/internal/processor/service.go b/internal/processor/service.go index e2774a62aecc..c4e2c1fdf1b5 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 f00a16ff68fd..000000000000 --- a/internal/processor/updaters_auto.go +++ /dev/null @@ -1,314 +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/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" - - "github.com/trustwallet/assets/internal/config" -) - -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) - - data, err := fileLib.PrepareJSONData(&assetInfo) - if err != nil { - return err - } - - return fileLib.CreateJSONFile(assetInfoPath, data) -} - -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 - } - - data, err := fileLib.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: tokens, - Version: tokenlist.Version{Major: oldTokenList.Version.Major + 1}, - }) - if err != nil { - return err - } - - log.Debugf("Tokenlist: list with %d tokens and %d pairs written to %s.", - len(tokens), countTotalPairs(tokens), tokenListPath) - - return fileLib.CreateJSONFile(tokenListPath, data) -} - -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] - - 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: getTokenName(token), - Symbol: token.OriginalSymbol, - Decimals: coin.Coins[coin.BINANCE].Decimals, - LogoURI: getLogoURI(token.Symbol, coin.Coins[coin.BINANCE].Handle, coin.Coins[coin.BINANCE].Symbol), - Pairs: pairsMap[token.Symbol], - }) - } - - 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) -} - -func getTokenName(t binance.Token) string { - if t.Symbol == coin.Binance().Symbol && t.Name == "Binance Chain Native Token" { - return "BNB Beacon Chain" - } - - return t.Name -} diff --git a/internal/processor/updaters_auto_test.go b/internal/processor/updaters_auto_test.go deleted file mode 100644 index b8b6b58d9426..000000000000 --- a/internal/processor/updaters_auto_test.go +++ /dev/null @@ -1,51 +0,0 @@ -package processor - -import ( - "testing" - - "github.com/trustwallet/go-libs/blockchain/binance" - "github.com/trustwallet/go-primitives/coin" -) - -func Test_getTokenName(t *testing.T) { - type args struct { - t binance.Token - } - tests := []struct { - name string - args args - want string - }{ - { - name: "BNB wrong name", - args: args{t: binance.Token{ - Name: "Binance Chain Native Token", - Symbol: coin.Binance().Symbol, - }}, - want: "BNB Beacon Chain", - }, - { - name: "BNB correct name", - args: args{t: binance.Token{ - Name: "BNB Beacon Chain", - Symbol: coin.Binance().Symbol, - }}, - want: "BNB Beacon Chain", - }, - { - name: "Regular token", - args: args{t: binance.Token{ - Name: "Test", - Symbol: "TEST", - }}, - want: "Test", - }, - } - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - if got := getTokenName(tt.args.t); got != tt.want { - t.Errorf("getTokenName() = %v, want %v", got, tt.want) - } - }) - } -}