diff --git a/.github/assets.config.yaml b/.github/assets.config.yaml index 1bdb377da640..507e7d7670e7 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" @@ -43,6 +43,8 @@ validators_settings: - "bin" skip_files: - "node_modules" + skip_dirs: + - ".git" chain_folder: allowed_files: 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..913ca1248d32 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -1,26 +1,31 @@ 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 - - - name: Run check - run: make check - - - name: Unit Test - run: make test + uses: actions/checkout@v3 - - name: Lint - run: make lint \ No newline at end of file +# - name: Run check +# run: make check +# +# - name: Unit Test +# run: make test +# +# - name: Lint +# run: make lint diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 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..01ff854ca7cc 100644 --- a/.github/workflows/fix-dryrun.yml +++ b/.github/workflows/fix-dryrun.yml @@ -1,29 +1,27 @@ -name: Fix (Dry run) -on: - pull_request: - branches: master +#Disabled, we have 'check' job, 'fix' job do invisible changes which is not convenient to debug -jobs: - fix-dryrun: - 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 fix - run: make fix - - - name: Show fix result (diff) - run: | - git config core.ignorecase false - git status - git diff - - - name: Run check - run: make check \ No newline at end of file +#name: Fix (Dry run) +#on: +# pull_request: +# branches: [ master ] +# +#jobs: +# fix-dryrun: +# runs-on: ubuntu-latest +# steps: +# - name: Set up Go +# uses: actions/setup-go@v4 +# with: +# go-version: 1.18 +# +# - name: Check out code +# uses: actions/checkout@v3 +# +# - name: Run fix +# run: make fix +# +# - name: Show fix result (diff) +# run: | +# git config core.ignorecase false +# git status +# git diff diff --git a/.github/workflows/fix.yml b/.github/workflows/fix.yml index 8cc9cd05c41a..3d80ad0896b7 100644 --- a/.github/workflows/fix.yml +++ b/.github/workflows/fix.yml @@ -1,54 +1,48 @@ -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 -on: - push: - branches: - - 'master' - - '*' - workflow_dispatch: -jobs: - fix-all: - runs-on: ubuntu-latest - steps: - - name: Checkout (trustwallet repo, secret token) - if: github.repository_owner == 'trustwallet' - uses: actions/checkout@v2 - with: - token: ${{ secrets.COMMIT_TOKEN }} - ref: ${{ github.ref }} +#Disabled, we have 'check' job, 'fix' job do invisible changes which is not convenient to debug - - name: Checkout (fork repo, default token) - if: github.repository_owner != 'trustwallet' - uses: actions/checkout@v2 - with: - token: ${{ secrets.GITHUB_TOKEN }} - ref: ${{ github.ref }} - - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.18 - id: go - - - name: Run fix - if: github.repository_owner == 'trustwallet' - run: make fix - - - name: Show fix result (diff) - run: | - git status - git diff - - - name: Run check - run: make check - - - name: Commit changes - if: success() - uses: stefanzweifel/git-auto-commit-action@v4.1.2 - with: - commit_user_name: trust-wallet-merge-bot - commit_user_email: mergebot@trustwallet.com - commit_message: Fixes (sanity and consistency, auto) +#name: Fix All +# +#on: +# push: +# branches: +# - '*' +# workflow_dispatch: +# +#jobs: +# fix-all: +# runs-on: ubuntu-latest +# +# if: github.repository_owner == 'trustwallet' && github.event.repository.fork == false +# +# steps: +# - name: Checkout (trustwallet repo, secret token) +# uses: actions/checkout@v3 +# with: +# # Use trust-ci fine-grained PAT to checkout and later commit the code +# # Do not use for forked repos +# token: ${{ secrets.CI_GITHUB_TOKEN }} +# ref: ${{ github.ref }} +# +# - name: Set up Go +# uses: actions/setup-go@v4 +# with: +# go-version: 1.18 +# +# - name: Run fix +# run: make fix +# +# - name: Show fix result (diff) +# run: | +# git status +# git diff +# +# - name: Run check +# run: make check +# +# - name: Commit changes +# if: success() +# uses: stefanzweifel/git-auto-commit-action@v4.16.0 +# with: +# commit_user_name: trust-ci +# commit_user_email: "117647528+trust-ci@users.noreply.github.com" +# commit_message: Auto fix all (sanity and consistency) diff --git a/.github/workflows/periodic-update.yml b/.github/workflows/periodic-update.yml 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/.golangci.yml b/.golangci.yml index 6633927eb229..e8bdcae7d09e 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -192,7 +192,6 @@ linters: - deadcode - depguard - dogsled - - dupl - errcheck - exportloopref - exhaustive 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 6d6f7105d031..4ebbac006363 100644 --- a/Makefile +++ b/Makefile @@ -1,54 +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 +check: build + bin/assets check -update-auto: - go run cmd/main.go update-auto +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/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/info.json b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/info.json new file mode 100644 index 000000000000..92e3febba90a --- /dev/null +++ b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/info.json @@ -0,0 +1,36 @@ +{ + "name": "USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://blockscout.acala.network/token/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe", + "type": "ACALAEVM", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/logo.png b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/logo.png new file mode 100644 index 000000000000..793e015fc930 Binary files /dev/null and b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/logo.png differ diff --git a/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/info.json b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/info.json new file mode 100644 index 000000000000..07cdf7a02024 --- /dev/null +++ b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/info.json @@ -0,0 +1,42 @@ +{ + "name": "Dai Stablecoin", + "website": "http://makerdao.com", + "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", + "explorer": "https://blockscout.acala.network/token/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE", + "research": "https://research.binance.com/en/projects/dai", + "type": "ACALAEVM", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MakerDAO" + }, + { + "name": "reddit", + "url": "https://reddit.com/MakerDAO/" + }, + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-collateral-dai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/logo.png b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/logo.png new file mode 100644 index 000000000000..b24cc9643d91 Binary files /dev/null and b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/logo.png differ diff --git a/blockchains/acalaevm/info/info.json b/blockchains/acalaevm/info/info.json new file mode 100644 index 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..23bb06049441 --- /dev/null +++ b/blockchains/agoric/info/info.json @@ -0,0 +1,28 @@ +{ + "name": "Agoric", + "website": "https://agoric.com", + "description": "Agoric is a Proof-of-Stake chain utilizing Hardened JavaScript smart contracts to rapidly build and deploy DeFi.", + "explorer": "https://atomscan.com/agoric/", + "research": "", + "symbol": "BLD", + "type": "coin", + "decimals": 6, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/Agoric" + }, + { + "name": "twitter", + "url": "https://twitter.com/agoric" + }, + { + "name": "whitepaper", + "url": "https://agoric.com/wp-content/uploads/2022/08/Agoric-White-Paper-v1.1.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/agoric/info/logo.png b/blockchains/agoric/info/logo.png new file mode 100644 index 000000000000..6d017640305e Binary files /dev/null and b/blockchains/agoric/info/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2/logo.png new file mode 100644 index 000000000000..36544b6fa262 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f/logo.png new file mode 100644 index 000000000000..ab2b2edab45e Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj/logo.png new file mode 100644 index 000000000000..036eb403bfbe Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5/logo.png new file mode 100644 index 000000000000..eaf66cb5cbb1 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5/logo.png new file mode 100644 index 000000000000..e11781707123 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5/logo.png differ diff --git a/blockchains/agoric/validators/list.json b/blockchains/agoric/validators/list.json new file mode 100644 index 000000000000..4e2deb519fee --- /dev/null +++ b/blockchains/agoric/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "id": "agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2", + "name": "0xFury", + "description": "0xFury - Enterprise-grade blockchain infrastructure solutions.", + "website": "https://0xfury.com/" + }, + { + "id": "agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj", + "name": "0base.vc", + "description": "0base.vc is a validator who doesn't trust any blockchain; we validate it ourselves.", + "website": "https://0base.vc/" + }, + { + "id": "agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f", + "name": "Agaram.ai", + "description": "Securing Agoric. 100% Slash protected", + "website": "https://agaram.ai/" + }, + { + "id": "agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + } +] diff --git a/blockchains/akash/info/info.json b/blockchains/akash/info/info.json new file mode 100644 index 000000000000..6163977836db --- /dev/null +++ b/blockchains/akash/info/info.json @@ -0,0 +1,31 @@ +{ + "name": "Akash Network", + "type": "coin", + "symbol": "AKT", + "decimals": 6, + "website": "https://akash.network/", + "description": "The world first decentralized open source cloud, and DeCloud for DeFi, built with the Cosmos SDK.", + "explorer": "https://www.mintscan.io/akash", + "status": "active", + "rpc_url": "https://akash-rpc.polkachu.com/", + "denom": "uakt", + "lcd_url": "https://akash-api.polkachu.com/", + "hrp": "akash", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/akash-network" + }, + { + "name": "whitepaper", + "url": "https://docs.akash.network/" + }, + { + "name": "twitter", + "url": "https://twitter.com/akashnet_" + } + ] +} \ No newline at end of file diff --git a/blockchains/akash/info/logo.png b/blockchains/akash/info/logo.png new file mode 100644 index 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/akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy/logo.png b/blockchains/akash/validators/assets/akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy/logo.png new file mode 100644 index 000000000000..eaf66cb5cbb1 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztqs903/logo.png b/blockchains/akash/validators/assets/akashvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztqs903/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztqs903/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh/logo.png b/blockchains/akash/validators/assets/akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh/logo.png new file mode 100644 index 000000000000..e11781707123 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073/logo.png b/blockchains/akash/validators/assets/akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073/logo.png new file mode 100644 index 000000000000..8a7efc94d8c2 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8/logo.png b/blockchains/akash/validators/assets/akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8/logo.png new file mode 100644 index 000000000000..102052714989 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz/logo.png b/blockchains/akash/validators/assets/akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d/logo.png b/blockchains/akash/validators/assets/akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d/logo.png new file mode 100644 index 000000000000..f9f1f5be4354 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs/logo.png b/blockchains/akash/validators/assets/akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs/logo.png new file mode 100644 index 000000000000..48eaf9adeb96 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g/logo.png b/blockchains/akash/validators/assets/akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g/logo.png differ diff --git a/blockchains/akash/validators/list.json b/blockchains/akash/validators/list.json new file mode 100644 index 000000000000..59655728a7cb --- /dev/null +++ b/blockchains/akash/validators/list.json @@ -0,0 +1,62 @@ +[ + { + "id": "akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "akashvaloper105nkdqgkj3hpgqss0elcec2t72ujg09w5mzhm8", + "name": "NodesByGirls", + "description": "We are a professional team with many years of experience in the crypto industry. Stake with us to get the best APR!", + "website": "https://nodesbygirls.com/" + }, + { + "id": "akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8", + "name": "Allnodes.com ⚡️ 0% fee", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/akt/staking" + }, + { + "id": "akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs", + "name": "kava_labs", + "description": "Kava is a decentralized blockchain that combines the speed and interoperability of Cosmos with the developer power of Ethereum.", + "website": "https://www.kava.io" + }, + { + "id": "akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073", + "name": "Forbole", + "description": "Forbole is a renown validator in blockchain ecosystems such as Cosmos, Solana and Polkadot. We are an early investor and recognized contributor in Akash. We will continuous our effort to build Akash ecosystem with stakers like you.", + "website": "https://www.forbole.com" + }, + { + "id": "akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d", + "name": "Chandra Station", + "description": "100% Uptime|100% Transparency|100% Slashing Protection", + "website": "https://www.chandrastation.com" + }, + { + "id": "akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "akashvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztqs903", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + } +] diff --git a/blockchains/algorand/assets/137594422/info.json b/blockchains/algorand/assets/137594422/info.json index 4055f4bb07fc..c599dcaffadd 100644 --- a/blockchains/algorand/assets/137594422/info.json +++ b/blockchains/algorand/assets/137594422/info.json @@ -5,7 +5,7 @@ "explorer": "https://algoexplorer.io/asset/137594422", "id": "137594422", "symbol": "HDL", - "type": "ALGORAND", + "type": "ASA", "decimals": 6, "status": "active", "links": [ diff --git a/blockchains/algorand/assets/312769/info.json b/blockchains/algorand/assets/312769/info.json new file mode 100644 index 000000000000..a45a0c68e70a --- /dev/null +++ b/blockchains/algorand/assets/312769/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tether USD", + "website": "https://tether.to", + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "explorer": "https://algoexplorer.io/asset/312769", + "type": "ASA", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "312769", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tether/" + } + ] +} diff --git a/blockchains/algorand/assets/312769/logo.png b/blockchains/algorand/assets/312769/logo.png new file mode 100644 index 000000000000..b873452b2a32 Binary files /dev/null and b/blockchains/algorand/assets/312769/logo.png differ diff --git a/blockchains/algorand/assets/31566704/info.json b/blockchains/algorand/assets/31566704/info.json new file mode 100644 index 000000000000..d563abd1f738 --- /dev/null +++ b/blockchains/algorand/assets/31566704/info.json @@ -0,0 +1,37 @@ +{ + "name": "USD Coin", + "website": "https://www.centre.io", + "description": "USDC provides a fully collateralized US dollar stablecoin, and is based on the open source asset-backed stablecoin framework developed by Centre.", + "explorer": "https://algoexplorer.io/asset/31566704", + "research": "https://research.binance.com/en/projects/usd-coin", + "type": "ASA", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "31566704", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + } + ] +} diff --git a/blockchains/algorand/assets/31566704/logo.png b/blockchains/algorand/assets/31566704/logo.png new file mode 100644 index 000000000000..b74fafb2d2b4 Binary files /dev/null and b/blockchains/algorand/assets/31566704/logo.png differ diff --git a/blockchains/aptos/assets/0x1000000fa32d122c18a6a31c009ce5e71674f22d06a581bb0a15575e6addadcc::usda::USDA/info.json b/blockchains/aptos/assets/0x1000000fa32d122c18a6a31c009ce5e71674f22d06a581bb0a15575e6addadcc::usda::USDA/info.json new file mode 100644 index 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 index 736b4a3ffc97..342a379bbb2e 100644 --- a/blockchains/aptos/info/info.json +++ b/blockchains/aptos/info/info.json @@ -8,7 +8,8 @@ "decimals": 8, "status": "active", "tags": [ - "defi" + "defi", + "dapp" ], "links": [ { 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/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66/info.json b/blockchains/arbitrum/assets/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66/info.json new file mode 100644 index 000000000000..bbcd3d0349f7 --- /dev/null +++ b/blockchains/arbitrum/assets/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66/info.json @@ -0,0 +1,21 @@ +{ + "name": "Xai", + "type": "ARBITRUM", + "symbol": "XAI", + "decimals": 18, + "website": "https://xai.games/", + "description": "The Xai token has a dual role on the Xai blockchain. It serves as the gas token for transactions and rewards validator nodes. Moreover, it is the main currency in the gaming ecosystem, accepted for game purchases and in-game items.", + "explorer": "https://arbiscan.io/token/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66", + "status": "active", + "id": "0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xai-games/" + }, + { + "name": "twitter", + "url": "https://twitter.com/xai_games" + } + ] + } \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66/logo.png b/blockchains/arbitrum/assets/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66/logo.png new file mode 100644 index 000000000000..bd835bcb7d4c Binary files /dev/null and b/blockchains/arbitrum/assets/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66/logo.png differ diff --git a/blockchains/arbitrum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/info.json b/blockchains/arbitrum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/info.json new file mode 100644 index 000000000000..65b7ae2114a5 --- /dev/null +++ b/blockchains/arbitrum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/info.json @@ -0,0 +1,25 @@ +{ + "name": "MUX Protocol", + "website": "https://mux.network", + "description": "MUX Protocol is the first decentralized perpetual aggregator; it offers deep aggregated liquidity, optimized trading cost, up to 100x leverage, diverse market options and unique aggregator features like smart position routing, aggregated position, leverage boosting and liquidation price optimization.", + "explorer": "https://arbiscan.io/token/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42", + "type": "ARBITRUM", + "symbol": "MCB", + "decimals": 18, + "status": "active", + "id": "0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/muxprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mcdex/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mux-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/logo.png b/blockchains/arbitrum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/logo.png new file mode 100644 index 000000000000..ee172cac16fc Binary files /dev/null and b/blockchains/arbitrum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/logo.png differ diff --git a/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/info.json b/blockchains/arbitrum/assets/0x50E401255275dc405A99d3281f396cCa681eEa9d/info.json new file mode 100644 index 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/0x539bdE0d7Dbd336b79148AA742883198BBF60342/info.json b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/info.json new file mode 100644 index 000000000000..c445b4bbfe9c --- /dev/null +++ b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/info.json @@ -0,0 +1,29 @@ +{ + "name": "MAGIC", + "symbol": "MAGIC", + "type": "ARBITRUM", + "decimals": 18, + "description": "MAGIC is the utility token that connects gaming communities in the Treasure Metaverse: a decentralized NFT ecosystem which sits on Arbitrum, one of Ethereum’s Layer 2 scaling solutions.", + "website": "https://treasure.lol/", + "explorer": "https://arbiscan.io/token/0x539bdE0d7Dbd336b79148AA742883198BBF60342", + "status": "active", + "id": "0x539bdE0d7Dbd336b79148AA742883198BBF60342", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Treasure_NFT" + }, + { + "name": "medium", + "url": "https://medium.com/@TreasureNFT" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/magic-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/magic/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/logo.png b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/logo.png new file mode 100644 index 000000000000..16844a459a5a Binary files /dev/null and b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/logo.png differ diff --git a/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json b/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json new file mode 100644 index 000000000000..6a612a01f548 --- /dev/null +++ b/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json @@ -0,0 +1,25 @@ +{ + "name": "SeedifyFund", + "type": "ARBITRUM", + "symbol": "SFUND", + "decimals": 18, + "website": "https://seedify.fund", + "description": "A Blockchain Innovation Ecosystem, with a Seed Stage Fund, Decentralized Incubator, and Launchpad", + "explorer": "https://arbiscan.io/token/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60", + "status": "active", + "id": "0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/seedifyfund" + }, + { + "name": "telegram", + "url": "https://t.me/seedifyfundofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/seedify-fund/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/logo.png b/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/logo.png new file mode 100644 index 000000000000..149d2563079d Binary files /dev/null and b/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/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/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/info.json b/blockchains/arbitrum/assets/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/info.json new file mode 100644 index 000000000000..f6d4f7ef6658 --- /dev/null +++ b/blockchains/arbitrum/assets/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/info.json @@ -0,0 +1,52 @@ +{ + "name": "Openleverage Token V2", + "website": "https://openleverage.finance/", + "description": "OpenLeverage is a permissionless money market protocol enabling decentralized lending, borrowing, and margin trading across a diverse range of cryptocurrency pairs, fostering an accessible and efficient DeFi ecosystem.", + "explorer": "https://arbiscan.io/token/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864", + "type": "ARBITRUM", + "symbol": "OLE", + "decimals": 18, + "status": "active", + "id": "0x7Be5Dd337CC6cE3e474F64E2A92A566445290864", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/OpenLeverage" + }, + { + "name": "discord", + "url": "https://discord.com/invite/openleverage" + }, + { + "name": "medium", + "url": "https://openleverage.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openleverage/" + }, + { + "name": "docs", + "url": "https://docs.openleverage.finance/main/" + }, + { + "name": "telegram", + "url": "https://t.me/openleverageofficial" + }, + { + "name": "github", + "url": "https://github.com/OpenLeverageDev/openleverage-contracts" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openleverage" + }, + { + "name": "youtube", + "url": "https://youtube.com/@openleverageprotocol9047" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/logo.png b/blockchains/arbitrum/assets/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/logo.png new file mode 100644 index 000000000000..c43b83973316 Binary files /dev/null and b/blockchains/arbitrum/assets/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/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/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646/info.json b/blockchains/arbitrum/assets/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646/info.json new file mode 100644 index 000000000000..35c6d505c6ba --- /dev/null +++ b/blockchains/arbitrum/assets/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646/info.json @@ -0,0 +1,33 @@ +{ + "name": "Alpha Finance Lab", + "website": "https://alphafinance.io", + "description": "Alpha Finance Lab is an ecosystem of cross-chain DeFi products that will interoperate to bring optimal alpha returns to users. Alpha products focus on capturing unaddressed demand in DeFi in an innovative and user friendly way.", + "explorer": "https://arbiscan.io/token/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646", + "data_source": "crowd", + "type": "ARBITRUM", + "symbol": "ALPHA", + "decimals": 18, + "status": "active", + "id": "0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/AlphaFinanceLab" + }, + { + "name": "twitter", + "url": "https://twitter.com/alphafinancelab" + }, + { + "name": "telegram", + "url": "https://t.me/AlphaFinanceLab" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Z2vuKDT" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646/logo.png b/blockchains/arbitrum/assets/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646/logo.png new file mode 100644 index 000000000000..c6fa133d0e3f Binary files /dev/null and b/blockchains/arbitrum/assets/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646/logo.png differ diff --git a/blockchains/arbitrum/assets/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1/info.json b/blockchains/arbitrum/assets/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1/info.json new file mode 100644 index 000000000000..c44a77b92abf --- /dev/null +++ b/blockchains/arbitrum/assets/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1/info.json @@ -0,0 +1,52 @@ +{ + "name": "Openleverage Token (Old)", + "website": "https://openleverage.finance/", + "description": "OpenLeverage is a permissionless money market protocol enabling decentralized lending, borrowing, and margin trading across a diverse range of cryptocurrency pairs, fostering an accessible and efficient DeFi ecosystem.", + "explorer": "https://arbiscan.io/token/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1", + "type": "ARBITRUM", + "symbol": "Old OLE", + "decimals": 18, + "status": "active", + "id": "0xD4d026322C88C2d49942A75DfF920FCfbC5614C1", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/OpenLeverage" + }, + { + "name": "discord", + "url": "https://discord.com/invite/openleverage" + }, + { + "name": "medium", + "url": "https://openleverage.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openleverage/" + }, + { + "name": "docs", + "url": "https://docs.openleverage.finance/main/" + }, + { + "name": "telegram", + "url": "https://t.me/openleverageofficial" + }, + { + "name": "github", + "url": "https://github.com/OpenLeverageDev/openleverage-contracts" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openleverage" + }, + { + "name": "youtube", + "url": "https://youtube.com/@openleverageprotocol9047" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1/logo.png b/blockchains/arbitrum/assets/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1/logo.png new file mode 100644 index 000000000000..c43b83973316 Binary files /dev/null and b/blockchains/arbitrum/assets/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1/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/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json b/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json index b505b8991e2e..28eecb3f4ea3 100644 --- a/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json +++ b/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json @@ -1,7 +1,7 @@ { - "name": "USD Coin (Arb1)", + "name": "Bridged USDC", "type": "ARBITRUM", - "symbol": "USDC", + "symbol": "USDC.e", "decimals": 6, "website": "https://www.centre.io/usdc", "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", 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/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/info.json b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/info.json new file mode 100644 index 000000000000..c2de58649d1e --- /dev/null +++ b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/info.json @@ -0,0 +1,28 @@ +{ + "name": "USD Coin", + "type": "ARBITRUM", + "symbol": "USDC", + "decimals": 6, + "website": "https://www.centre.io/usdc", + "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", + "explorer": "https://arbiscan.io/token/0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "status": "active", + "id": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/usd-coin/" + }, + { + "name": "blog", + "url": "https://centre.io/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/logo.png b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/logo.png new file mode 100644 index 000000000000..a135c887a861 Binary files /dev/null and b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/logo.png differ diff --git a/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json b/blockchains/arbitrum/assets/0xd3Ac016b1B8C80EeAdDe4D186A9138C9324e4189/info.json new file mode 100644 index 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/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/info.json b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/info.json new file mode 100644 index 000000000000..add0e210f82b --- /dev/null +++ b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/info.json @@ -0,0 +1,30 @@ +{ + "name": "SushiSwap", + "website": "https://sushiswap.fi", + "description": "SushiSwap claims to be an evolution of #Uniswap with $SUSHI tokenomics.", + "explorer": "https://arbiscan.io/token/0xd4d42f0b6def4ce0383636770ef773390d85c61a", + "type": "ARBITRUM", + "symbol": "SUSHI", + "decimals": 18, + "status": "active", + "id": "0xd4d42F0b6DEF4CE0383636770eF773390d85c61A", + "tags": [ + "defi", + "governance", + "nft" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/sushiswap" + }, + { + "name": "twitter", + "url": "https://twitter.com/sushiswap" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sushi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/logo.png b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/logo.png new file mode 100644 index 000000000000..37523b87fe8a Binary files /dev/null and b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/logo.png differ diff --git a/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/info.json b/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/info.json new file mode 100644 index 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/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/info.json b/blockchains/arbitrum/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/info.json new file mode 100644 index 000000000000..1adf0d0b19f1 --- /dev/null +++ b/blockchains/arbitrum/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/info.json @@ -0,0 +1,29 @@ +{ + "name": "Marlin POND", + "website": "https://www.marlin.pro/", + "description": "Marlin is an open protocol that provides a high-performance programmable network infrastructure for Web 3.0", + "explorer": "https://arbiscan.io/token/0xda0a57b710768ae17941a9fa33f8b720c8bd9ddd", + "type": "ARBITRUM", + "symbol": "POND", + "decimals": 18, + "status": "active", + "id": "0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/marlinprotocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/marlin/" + }, + { + "name": "telegram", + "url": "https://t.me/marlinprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/marlin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/logo.png b/blockchains/arbitrum/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/logo.png new file mode 100644 index 000000000000..5bf18545dfb5 Binary files /dev/null and b/blockchains/arbitrum/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/logo.png differ diff --git a/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/info.json b/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/info.json new file mode 100644 index 000000000000..467d842ad05e --- /dev/null +++ b/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/info.json @@ -0,0 +1,28 @@ +{ + "name": "MOBOX", + "website": "https://mobox.io", + "description": "An Optimized Yield-Farming platform combining the best of DeFi and Gaming NFTs. Creating a truly Free To Play Play To Earn Ecosystem on the Binance Smart Chain", + "explorer": "https://arbiscan.io/token/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36", + "type": "ARBITRUM", + "symbol": "MBOX", + "decimals": 18, + "status": "active", + "id": "0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MOBOX_Official" + }, + { + "name": "telegram", + "url": "https://t.me/mobox_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mobox/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/logo.png b/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/logo.png new file mode 100644 index 000000000000..be41fceadd36 Binary files /dev/null and b/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/logo.png differ diff --git a/blockchains/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/info.json b/blockchains/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/info.json new file mode 100644 index 000000000000..91194f2418cd --- /dev/null +++ b/blockchains/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/info.json @@ -0,0 +1,25 @@ +{ + "name": "Orbs", + "website": "https://orbs.com", + "description": "Orbs is a blockchain infrastructure-as-a-service built for large scale consumer applications to meet their business and technological requirements.", + "explorer": "https://arbiscan.io/token/0xf3C091ed43de9c270593445163a41A876A0bb3dd", + "type": "ARBITRUM", + "symbol": "ORBS", + "decimals": 18, + "status": "active", + "id": "0xf3C091ed43de9c270593445163a41A876A0bb3dd", + "links": [ + { + "name": "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/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/logo.png b/blockchains/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/logo.png new file mode 100644 index 000000000000..ba89f2dd8dd0 Binary files /dev/null and b/blockchains/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/logo.png differ diff --git a/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/info.json b/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/info.json new file mode 100644 index 000000000000..0b39d1bc370a --- /dev/null +++ b/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/info.json @@ -0,0 +1,32 @@ +{ + "name": "Chainlink", + "website": "https://chain.link", + "description": "Chainlink is a decentralized oracle service, which aims to connect smart contracts with data from the real world. Oracles are needed to function as data feeds in smart contracts. Oracles provide external data (e.g. temperature, weather) that can drive smart contract executions. Participants on the network are incentivized (through rewards) to provide smart contracts with access to external data feeds.", + "explorer": "https://arbiscan.io/token/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4", + "type": "ARBITRUM", + "symbol": "LINK", + "decimals": 18, + "status": "active", + "id": "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/smartcontractkit/chainlink" + }, + { + "name": "twitter", + "url": "https://twitter.com/chainlink" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/chainlink" + }, + { + "name": "whitepaper", + "url": "https://link.smartcontract.com/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/logo.png b/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/logo.png new file mode 100644 index 000000000000..ab55f5e21fae Binary files /dev/null and b/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/logo.png differ diff --git a/blockchains/arbitrum/info/info.json b/blockchains/arbitrum/info/info.json index 6f8e9fa49ac8..c76d729d474c 100644 --- a/blockchains/arbitrum/info/info.json +++ b/blockchains/arbitrum/info/info.json @@ -10,6 +10,9 @@ "type": "coin", "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "twitter", diff --git a/blockchains/arbitrum/tokenlist.json b/blockchains/arbitrum/tokenlist.json index 2a38c3e4f6e3..4b0809ad13cc 100644 --- a/blockchains/arbitrum/tokenlist.json +++ b/blockchains/arbitrum/tokenlist.json @@ -17,8 +17,8 @@ "asset": "c10042221_t0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8", "type": "ARBITRUM", "address": "0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8", - "name": "USD Coin (Arb1)", - "symbol": "USDC", + "name": "Bridged USDC", + "symbol": "USDC.e", "decimals": 6, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/logo.png", "pairs": [] @@ -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..60766601bb90 100644 --- a/blockchains/aurora/info/info.json +++ b/blockchains/aurora/info/info.json @@ -7,7 +7,11 @@ "symbol": "ETH", "type": "coin", "decimals": 18, + "rpc_url": "https://mainnet.aurora.dev", "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "twitter", 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..9b77240f671c 100644 --- a/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json +++ b/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json @@ -2,10 +2,10 @@ "name": "Binance USD", "symbol": "BUSD.e", "type": "AVALANCHE", - "decimals": 6, + "decimals": 18, "description": "The Avalanche Bridge Wrapped Binance USD. BUSD is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.", "website": "http://www.paxos.com/busd", - "explorer": "https://snowtrace.io/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/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json b/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json new file mode 100644 index 000000000000..0abfbcdd4789 --- /dev/null +++ b/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json @@ -0,0 +1,46 @@ +{ + "name": "Dypius", + "type": "AVALANCHE", + "symbol": "DYP", + "decimals": 18, + "website": "https://www.dypius.com/", + "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", + "explorer": "https://snowtrace.io/token/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4", + "status": "active", + "id": "0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dypius" + }, + { + "name": "github", + "url": "https://github.com/dypfinance/" + }, + { + "name": "medium", + "url": "https://dypius.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defi-yield-protocol-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dypius" + }, + { + "name": "discord", + "url": "https://discord.com/invite/worldofdypians" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/drive/folders/1PprliiDlNB6Cx-35eaEun-gmjk0-a1O4" + } + ], + "tags": [ + "governance", + "nft", + "defi" + ] +} diff --git a/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/logo.png b/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/logo.png new file mode 100644 index 000000000000..b86b0fca332a Binary files /dev/null and b/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/logo.png differ diff --git a/blockchains/avalanchec/assets/0x1f1E7c893855525b303f99bDF5c3c05Be09ca251/info.json b/blockchains/avalanchec/assets/0x1f1E7c893855525b303f99bDF5c3c05Be09ca251/info.json new file mode 100644 index 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/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json new file mode 100644 index 000000000000..ad47979fbe7a --- /dev/null +++ b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json @@ -0,0 +1,28 @@ +{ + "name": "StargateToken", + "website": "https://stargate.finance", + "description": "Stargate is a fully composable liquidity transport protocol that lives at the heart of Omnichain DeFi.", + "explorer": "https://snowtrace.io/token/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590", + "type": "AVALANCHE", + "symbol": "STG", + "decimals": 18, + "status": "active", + "id": "0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590", + "links": [ + { + "name": "medium", + "url": "https://medium.com/stargate-official" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/LEM0ELklmO1kODdh" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stargate-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png new file mode 100644 index 000000000000..f983849d90c4 Binary files /dev/null and b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png differ diff --git a/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json b/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json new file mode 100644 index 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/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json new file mode 100644 index 000000000000..aac2e77689e7 --- /dev/null +++ b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json @@ -0,0 +1,21 @@ +{ + "name": "FantasyGold", + "website": "https://fantasygold.co/cgi-sys/suspendedpage.cgi", + "description": "FantasyGold was built to become a multi-purpose platform offering Ethereum Virtual Machine based smart contracts and lightning fast transactions.", + "explorer": "https://snowtrace.io/token/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "type": "AVALANCHE", + "symbol": "FGC", + "decimals": 18, + "status": "active", + "id": "0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/fantasygoldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantasygold/" + } + ] +} diff --git a/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png new file mode 100644 index 000000000000..6876a666683e Binary files /dev/null and b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png differ diff --git a/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/info.json b/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/info.json new file mode 100644 index 000000000000..fdf947d991e9 --- /dev/null +++ b/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/info.json @@ -0,0 +1,21 @@ +{ + "name": "Coq Inu", + "website": "https://coqinu.com/", + "description": "We are the #1 meme coin on AVAX. Founded by well respected members of the community.", + "explorer": "https://snowtrace.io/token/0x420fca0121dc28039145009570975747295f2329", + "type": "AVALANCHE", + "symbol": "COQ", + "decimals": 18, + "status": "active", + "id": "0x420FcA0121DC28039145009570975747295f2329", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/coqinuavax" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coq-inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/logo.png b/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/logo.png new file mode 100644 index 000000000000..0ca1800e3335 Binary files /dev/null and b/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/logo.png differ diff --git a/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/info.json b/blockchains/avalanchec/assets/0x442F7f22b1EE2c842bEAFf52880d4573E9201158/info.json 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/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/info.json b/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/info.json new file mode 100644 index 000000000000..018532267374 --- /dev/null +++ b/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/info.json @@ -0,0 +1,21 @@ +{ + "name": "BENQI", + "type": "AVALANCHE", + "symbol": "QI", + "decimals": 18, + "website": "https://benqi.fi/", + "description": "BENQI is a decentralized non-custodial liquidity market as well as a liquid staking protocol built on the high-speed Avalanche smart contract network.", + "explorer": "https://snowtrace.io/token/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5", + "status": "active", + "id": "0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BenqiFinance" + }, + { + "name": "telegram", + "url": "https://t.me/BenqiFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/logo.png b/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/logo.png new file mode 100644 index 000000000000..fa649485b6b0 Binary files /dev/null and b/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/logo.png differ diff --git a/blockchains/avalanchec/assets/0x88128fd4b259552A9A1D457f435a6527AAb72d42/info.json b/blockchains/avalanchec/assets/0x88128fd4b259552A9A1D457f435a6527AAb72d42/info.json 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..930928378729 --- /dev/null +++ b/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json @@ -0,0 +1,46 @@ +{ + "name": "Dypius", + "type": "AVALANCHE", + "symbol": "DYP", + "decimals": 18, + "website": "https://www.dypius.com/", + "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", + "explorer": "https://snowtrace.io/token/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "status": "abandoned", + "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "links": [ + { + "name": "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/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/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json new file mode 100644 index 000000000000..023861a4f288 --- /dev/null +++ b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json @@ -0,0 +1,41 @@ +{ + "name": "BNB pegged BUSD", + "website": "https://paxos.com/busd", + "description": "BNB pegged BUSD is a token issued by Binance on Smart Chain; its price is pegged to BUSD (BUSD ERC20) at a ratio of 1:1.", + "explorer": "https://snowtrace.io/token/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "AVALANCHE", + "symbol": "BUSD", + "decimals": 18, + "status": "active", + "id": "0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/binance-chain/" + }, + { + "name": "twitter", + "url": "https://twitter.com/binance_dex" + }, + { + "name": "blog", + "url": "https://binance.org/en/blog/" + }, + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binance-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png new file mode 100644 index 000000000000..76d02e370b6d Binary files /dev/null and b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png differ diff --git a/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/info.json b/blockchains/avalanchec/assets/0x9eAaC1B23d935365bD7b542Fe22cEEe2922f52dc/info.json index 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/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/info.json b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/info.json new file mode 100644 index 000000000000..370acd27093c --- /dev/null +++ b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/info.json @@ -0,0 +1,36 @@ +{ + "name": "Wootrade Network", + "type": "AVALANCHE", + "symbol": "WOO", + "decimals": 18, + "website": "https://woo.network", + "description": "Wootrade aims to provide deep liquidity and superior order execution at the lowest cost for traders, exchanges, institutions, and DeFi platforms. Its flagship, WOO X, is a professional trading platform featuring customizable modules, and zero-fees with deep liquidity across spot and margin. Wootrade was founded by Kronos Research, a quantitative trading firm generating $10-15B in daily volume, with the goal of democratizing access to deep liquidity and yield strategies through various products.", + "explorer": "https://snowtrace.io/token/0xabc9547b534519ff73921b1fba6e672b5f58d083", + "status": "active", + "id": "0xaBC9547B534519fF73921b1FBA6E672b5f58D083", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/wootrade" + }, + { + "name": "blog", + "url": "https://medium.com/@wootrade" + }, + { + "name": "facebook", + "url": "https://facebook.com/Wootrade" + }, + { + "name": "whitepaper", + "url": "https://woo.network/Litepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wootrade-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/logo.png b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/logo.png new file mode 100644 index 000000000000..5cd7c3995430 Binary files /dev/null and b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/logo.png differ diff --git a/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/info.json b/blockchains/avalanchec/assets/0xb599c3590F42f8F995ECfa0f85D2980B76862fc1/info.json index 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..b3f6d9180578 100644 --- a/blockchains/avalanchec/info/info.json +++ b/blockchains/avalanchec/info/info.json @@ -6,10 +6,12 @@ "research": "https://research.binance.com/en/projects/avalanche", "symbol": "AVAX", "type": "coin", + "rpc_url": "https://api.avax.network/ext/bc/C/rpc", "decimals": 18, "status": "active", "tags": [ - "defi" + "defi", + "dapp" ], "links": [ { diff --git a/blockchains/avalanchec/tokenlist.json b/blockchains/avalanchec/tokenlist.json index 49058e20c9bf..edc714adc89d 100644 --- a/blockchains/avalanchec/tokenlist.json +++ b/blockchains/avalanchec/tokenlist.json @@ -279,7 +279,7 @@ "address": "0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98", "name": "Binance USD", "symbol": "BUSD.e", - "decimals": 6, + "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/logo.png", "pairs": [] }, @@ -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/axelar/validators/assets/axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud/logo.png b/blockchains/axelar/validators/assets/axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu/logo.png new file mode 100644 index 000000000000..3404c78765f7 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4/logo.png new file mode 100644 index 000000000000..585324aa57dc Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1uf7s2v44qqpe9lpnsjy6cfjueqytakuzayfg0h/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1uf7s2v44qqpe9lpnsjy6cfjueqytakuzayfg0h/logo.png new file mode 100644 index 000000000000..eaf66cb5cbb1 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1uf7s2v44qqpe9lpnsjy6cfjueqytakuzayfg0h/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg/logo.png new file mode 100644 index 000000000000..477fe8df88ae Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg/logo.png differ diff --git a/blockchains/axelar/validators/list.json b/blockchains/axelar/validators/list.json new file mode 100644 index 000000000000..eb37338cb00a --- /dev/null +++ b/blockchains/axelar/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "id": "axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg", + "name": "Figment", + "description": "The complete staking solution for 250+ institutional clients including asset managers, custodians, exchanges, foundations, and wallets to earn rewards on their digital assets.", + "website": "https://figment.io" + }, + { + "id": "axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4", + "name": "Imperator.co", + "description": "100% refund on downtime slashing -- Professional Delegated Proof-of-Stake Network Validator", + "website": "https://imperator.co/" + }, + { + "id": "axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu", + "name": "Brightlystake", + "description": "Stake with Confidence with Brightlystake. Custom monitoring and alerting solutions with quick response times.", + "website": "https://brightlystake.com/" + }, + { + "id": "axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "axelarvaloper1uf7s2v44qqpe9lpnsjy6cfjueqytakuzayfg0h", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + } +] \ No newline at end of file diff --git a/blockchains/band/validators/assets/bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv/logo.png b/blockchains/band/validators/assets/bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6/logo.png b/blockchains/band/validators/assets/bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6/logo.png new file mode 100644 index 000000000000..0888af01c5da Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper1hcu2spr3r80v36us40mg938f5qhaqq2qeajtfv/logo.png b/blockchains/band/validators/assets/bandvaloper1hcu2spr3r80v36us40mg938f5qhaqq2qeajtfv/logo.png new file mode 100644 index 000000000000..95674f5ffbf9 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1hcu2spr3r80v36us40mg938f5qhaqq2qeajtfv/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m/logo.png b/blockchains/band/validators/assets/bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m/logo.png new file mode 100644 index 000000000000..e11781707123 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl/logo.png b/blockchains/band/validators/assets/bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl/logo.png differ diff --git a/blockchains/band/validators/list.json b/blockchains/band/validators/list.json index f3718bdfd6a5..d9b048341ee0 100644 --- a/blockchains/band/validators/list.json +++ b/blockchains/band/validators/list.json @@ -1,4 +1,10 @@ [ + { + "id": "bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, { "id": "bandvaloper1qgvcttnjx3enjqg9pnhclt6d4z7qdknavg4q9c", "name": "WeStaking", @@ -10,5 +16,29 @@ "name": "Smart Stake", "description": "Transparent & professional staking validator with automated monitoring tools to ensure high uptime. Dedicated support @ t.me/SmartStake", "website": "https://smartstake.io/" + }, + { + "id": "bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "bandvaloper1hcu2spr3r80v36us40mg938f5qhaqq2qeajtfv", + "name": "Stakewolle.com | Auto-compound", + "description": "🚀 Professional Cosmos validator 🔁Auto-compound with REStakeapp 🛡100% Slashing protection 🎁 All & Special Airdrops for our delegators http://linktr.ee/stakewolle", + "website": "https://stakewolle.com/" + }, + { + "id": "bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" } -] \ No newline at end of file +] diff --git a/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/info.json b/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/info.json new file mode 100644 index 000000000000..99e39cd7cf64 --- /dev/null +++ b/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/info.json @@ -0,0 +1,21 @@ +{ + "name": "Coinbase Wrapped Staked ETH", + "website": "https://www.coinbase.com/", + "description": "Coinbase Wrapped Staked ETH (“cbETH”) is a utility token that represents Ethereum 2 (ETH2), which is ETH staked through Coinbase.", + "explorer": "https://basescan.org/token/0x2ae3f1ec7f1f5012cfeab0185bfc7aa3cf0dec22", + "type": "BASE", + "symbol": "cbETH", + "decimals": 18, + "status": "active", + "id": "0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CoinbaseAssets" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coinbase-wrapped-staked-eth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/logo.png b/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/logo.png new file mode 100644 index 000000000000..1520a569a3d9 Binary files /dev/null and b/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/logo.png differ diff --git a/blockchains/base/assets/0x4200000000000000000000000000000000000006/info.json b/blockchains/base/assets/0x4200000000000000000000000000000000000006/info.json new file mode 100644 index 000000000000..ef20976738d6 --- /dev/null +++ b/blockchains/base/assets/0x4200000000000000000000000000000000000006/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped Ether", + "symbol": "WETH", + "type": "BASE", + "decimals": 18, + "description": "wETH is wrapped ETH", + "website": "https://weth.io/", + "explorer": "https://basescan.org/token/0x4200000000000000000000000000000000000006", + "status": "active", + "id": "0x4200000000000000000000000000000000000006", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/weth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x4200000000000000000000000000000000000006/logo.png b/blockchains/base/assets/0x4200000000000000000000000000000000000006/logo.png new file mode 100644 index 000000000000..f9328d9550a0 Binary files /dev/null and b/blockchains/base/assets/0x4200000000000000000000000000000000000006/logo.png differ diff --git a/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json b/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json new file mode 100644 index 000000000000..179b70ada8b6 --- /dev/null +++ b/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json @@ -0,0 +1,42 @@ +{ + "name": "Dai", + "website": "http://makerdao.com", + "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", + "explorer": "https://basescan.org/token/0x50c5725949a6f0c72e6c4a641f24049a917db0cb", + "research": "https://research.binance.com/en/projects/dai", + "type": "BASE", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MakerDAO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MakerDAO/" + }, + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-collateral-dai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png b/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png new file mode 100644 index 000000000000..1fd956cb12fc Binary files /dev/null and b/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png differ diff --git a/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/info.json b/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/info.json new file mode 100644 index 000000000000..2eee9fa66e65 --- /dev/null +++ b/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/info.json @@ -0,0 +1,25 @@ +{ + "name": "Rai.Finance", + "website": "https://rai.finance/", + "description": "RAI Finance is the hub for everything trading. Since 2020, our team has developed various DeFi, NFTFi, and Social Trading products that operate across multiple blockchain networks.", + "explorer": "https://basescan.org/token/0x703d57164ca270b0b330a87fd159cfef1490c0a5", + "type": "BASE", + "symbol": "SOFI", + "decimals": 18, + "status": "active", + "id": "0x703D57164CA270b0B330A87FD159CfEF1490c0a5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/RaiFinance" + }, + { + "name": "telegram", + "url": "https://t.me/RaiFinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rai-finance-sofi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/logo.png b/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/logo.png new file mode 100644 index 000000000000..4c77387dd377 Binary files /dev/null and b/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/logo.png differ diff --git a/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/info.json b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/info.json new file mode 100644 index 000000000000..8dea7ebfcb8d --- /dev/null +++ b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/info.json @@ -0,0 +1,25 @@ +{ + "name": "Baseswap", + "symbol": "BSWAP", + "type": "BASE", + "decimals": 18, + "description": "Decentralized finance leverages the individual and collective capacity of all of us, without interference.Join us on BASE chain now.", + "website": "https://baseswap.fi", + "explorer": "https://basescan.org/token/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9", + "status": "active", + "id": "0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BaseswapFi" + }, + { + "name": "twitter", + "url": "https://twitter.com/BaseSwap_Fi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baseswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/logo.png b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/logo.png new file mode 100644 index 000000000000..d2dd3f183670 Binary files /dev/null and b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/logo.png differ diff --git a/blockchains/base/assets/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9/info.json b/blockchains/base/assets/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9/info.json new file mode 100644 index 000000000000..5bd4afa34743 --- /dev/null +++ b/blockchains/base/assets/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9/info.json @@ -0,0 +1,24 @@ +{ + "name": "member", + "symbol": "member", + "type": "BASE", + "decimals": 18, + "description": "member go up", + "website": "https://member.clinic", + "explorer": "https://basescan.org/token/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9", + "status": "active", + "id": "0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/mlmwtf" + }, + { + "name": "forum", + "url": "https://warpcast.com/~/channel/members-only" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/base/assets/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9/logo.png b/blockchains/base/assets/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9/logo.png new file mode 100644 index 000000000000..534aeb60936f Binary files /dev/null and b/blockchains/base/assets/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9/logo.png differ diff --git a/blockchains/base/assets/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913/info.json b/blockchains/base/assets/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913/info.json new file mode 100644 index 000000000000..9767d94df842 --- /dev/null +++ b/blockchains/base/assets/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913/info.json @@ -0,0 +1,36 @@ +{ + "name": "USD Coin", + "symbol": "USDC", + "type": "BASE", + "decimals": 6, + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "website": "https://centre.io/usdc", + "explorer": "https://basescan.org/token/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913", + "status": "active", + "id": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913", + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913/logo.png b/blockchains/base/assets/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913/logo.png new file mode 100644 index 000000000000..a135c887a861 Binary files /dev/null and b/blockchains/base/assets/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913/logo.png differ diff --git a/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/info.json b/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/info.json new file mode 100644 index 000000000000..464d9fe678e9 --- /dev/null +++ b/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/info.json @@ -0,0 +1,36 @@ +{ + "name": "yearn.finance", + "symbol": "YFI", + "type": "BASE", + "decimals": 18, + "description": "DeFi made simple.", + "website": "https://yearn.finance/", + "explorer": "https://basescan.org/token/0x9eaf8c1e34f05a589eda6bafdf391cf6ad3cb239", + "status": "active", + "id": "0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/iearnfinance" + }, + { + "name": "medium", + "url": "https://medium.com/iearn" + }, + { + "name": "telegram", + "url": "https://t.me/iearnfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/yearn-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/yearn-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/logo.png b/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/logo.png new file mode 100644 index 000000000000..8f06d5eb88f5 Binary files /dev/null and b/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/logo.png differ diff --git a/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/info.json b/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/info.json new file mode 100644 index 000000000000..e4590373a91d --- /dev/null +++ b/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/info.json @@ -0,0 +1,40 @@ +{ + "name": "Toshi", + "symbol": "TOSHI", + "type": "BASE", + "decimals": 18, + "description": "Toshi aims to become the first Base-native token to get listed on Coinbase.", + "website": "https://www.toshithecat.com", + "explorer": "https://basescan.org/token/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4", + "status": "active", + "id": "0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4", + "links": [ + { + "name": "github", + "url": "https://github.com/ToshiTheCat" + }, + { + "name": "twitter", + "url": "https://twitter.com/toshi_base" + }, + { + "name": "whitepaper", + "url": "https://medium.com/@ToshiBase/toshi-roadmap-the-face-of-base-3451b399aa27" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/toshi-/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/toshi/" + }, + { + "name": "medium", + "url": "https://medium.com/@Toshi_Base" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/logo.png b/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/logo.png new file mode 100644 index 000000000000..0fd6617ffaa6 Binary files /dev/null and b/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/logo.png differ diff --git a/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/info.json b/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/info.json new file mode 100644 index 000000000000..91dcef0e6861 --- /dev/null +++ b/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/info.json @@ -0,0 +1,25 @@ +{ + "name": "Rocket Pool ETH", + "symbol": "rETH", + "type": "BASE", + "decimals": 18, + "description": "Rocket Pool is a decentralised Ethereum Proof of Stake pool.", + "website": "https://www.rocketpool.net/", + "explorer": "https://basescan.org/token/0xb6fe221fe9eef5aba221c348ba20a1bf5e73624c", + "status": "active", + "id": "0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Rocket_Pool" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rocket-pool-eth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rocket-pool-eth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/logo.png b/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/logo.png new file mode 100644 index 000000000000..b66ede27403b Binary files /dev/null and b/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/logo.png differ diff --git a/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/info.json b/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/info.json new file mode 100644 index 000000000000..24c8eb857fd9 --- /dev/null +++ b/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/info.json @@ -0,0 +1,28 @@ +{ + "name": "StargateToken", + "website": "https://stargate.finance", + "description": "Stargate is a fully composable liquidity transport protocol that lives at the heart of Omnichain DeFi.", + "explorer": "https://basescan.org/token/0xe3b53af74a4bf62ae5511055290838050bf764df", + "type": "BASE", + "symbol": "STG", + "decimals": 18, + "status": "active", + "id": "0xE3B53AF74a4BF62Ae5511055290838050bf764Df", + "links": [ + { + "name": "medium", + "url": "https://medium.com/stargate-official" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/LEM0ELklmO1kODdh" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stargate-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/logo.png b/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/logo.png new file mode 100644 index 000000000000..f983849d90c4 Binary files /dev/null and b/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/logo.png differ diff --git a/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 000000000000..37f28d3cb616 --- /dev/null +++ b/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,69 @@ +{ + "name": "Axelar Wrapped USDC", + "type": "BASE", + "symbol": "axlUSDC", + "decimals": 6, + "website": "https://axelar.network/", + "description": "Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click.", + "explorer": "https://basescan.org/token/0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "status": "active", + "id": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "links": [ + { + "name": "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/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 000000000000..69911caea54f Binary files /dev/null and b/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/info.json b/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/info.json new file mode 100644 index 000000000000..0857a08ba8dd --- /dev/null +++ b/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/info.json @@ -0,0 +1,28 @@ +{ + "name": "SmarDex", + "symbol": "SDEX", + "type": "BASE", + "decimals": 18, + "description": "SMARDEX is an Automated Market Maker (AMM) that addresses the issue of Impermanent Loss (IL) and in some cases transforms it into Impermanent Gain (IG).", + "website": "https://smardex.io/", + "explorer": "https://basescan.org/token/0xfd4330b0312fdeec6d4225075b82e00493ff2e3f", + "status": "active", + "id": "0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SmarDex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/smardex/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/smardex/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/logo.png b/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/logo.png new file mode 100644 index 000000000000..ca284f82fac6 Binary files /dev/null and b/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/logo.png differ diff --git a/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/info.json b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/info.json new file mode 100644 index 000000000000..eee19c179ccf --- /dev/null +++ b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/info.json @@ -0,0 +1,37 @@ +{ + "name": "USD Base Coin", + "symbol": "USDC", + "type": "BASE", + "decimals": 6, + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "website": "https://www.centre.io", + "explorer": "https://basescan.org/token/0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca", + "research": "https://research.binance.com/en/projects/usd-coin", + "status": "active", + "id": "0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA", + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/logo.png b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/logo.png new file mode 100644 index 000000000000..819922b52bcd Binary files /dev/null and b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/logo.png differ diff --git a/blockchains/base/info/info.json b/blockchains/base/info/info.json new file mode 100644 index 000000000000..ca603c5d01fb --- /dev/null +++ b/blockchains/base/info/info.json @@ -0,0 +1,26 @@ +{ + "name": "Base", + "website": "https://base.org", + "description": "Base is a secure, low-cost, builder-friendly Ethereum L2 built to bring the next billion users onchain.", + "explorer": "https://basescan.org", + "research": "https://base.mirror.xyz", + "symbol": "ETH", + "type": "coin", + "coin_type": 8453, + "decimals": 18, + "status": "active", + "rpc_url": "https://base-mainnet.public.blastapi.io", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/buildonbase" + }, + { + "name": "github", + "url": "https://github.com/base-org" + } + ] +} diff --git a/blockchains/base/info/logo.png b/blockchains/base/info/logo.png new file mode 100644 index 000000000000..c5a23cea247f Binary files /dev/null and b/blockchains/base/info/logo.png differ diff --git a/blockchains/binance/assets/RUNE-B1A/info.json b/blockchains/binance/assets/RUNE-B1A/info.json index 2c52f35574bf..e9fbacc464ad 100644 --- a/blockchains/binance/assets/RUNE-B1A/info.json +++ b/blockchains/binance/assets/RUNE-B1A/info.json @@ -12,4 +12,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} diff --git a/blockchains/binance/assets/TWT-8C2/logo.png b/blockchains/binance/assets/TWT-8C2/logo.png index 8e97855518bf..276a83baae8d 100644 Binary files a/blockchains/binance/assets/TWT-8C2/logo.png and b/blockchains/binance/assets/TWT-8C2/logo.png differ diff --git a/blockchains/binance/assets/XVS-795/logo.png b/blockchains/binance/assets/XVS-795/logo.png index 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/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg/logo.png b/blockchains/binance/validators/assets/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg/logo.png new file mode 100644 index 000000000000..529434877a76 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg/logo.png differ 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/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png b/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png index 158d6b01d52f..f5f3ada9451c 100644 Binary files a/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png and b/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r/logo.png b/blockchains/binance/validators/assets/bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r/logo.png new file mode 100644 index 000000000000..5d267ae6f79a Binary files /dev/null and b/blockchains/binance/validators/assets/bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag/logo.png b/blockchains/binance/validators/assets/bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag/logo.png new file mode 100644 index 000000000000..a907d86b4c99 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh/logo.png b/blockchains/binance/validators/assets/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh/logo.png new file mode 100644 index 000000000000..8ebdc3023c8b Binary files /dev/null and b/blockchains/binance/validators/assets/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1we4frydjkyejdzp506gzpljaqpqu5fs0flu60p/logo.png b/blockchains/binance/validators/assets/bva1we4frydjkyejdzp506gzpljaqpqu5fs0flu60p/logo.png new file mode 100644 index 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..61300089e571 100644 --- a/blockchains/binance/validators/list.json +++ b/blockchains/binance/validators/list.json @@ -1,4 +1,10 @@ [ + { + "id": "bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, { "id": "bva1m02zrj77ahdz3597nscq7a6dhxnwsuutsljcvj", "name": "Synclub", @@ -89,12 +95,6 @@ "description": "Seoraksan validator", "website": "https://www.binance.org/en/staking/validator/bva1ghewcuxuunp4g0xj6yznnk6j2ccgxxhtf6h0r2" }, - { - "id": "bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785", - "name": "TW Staking", - "description": "The most trusted & secure crypto wallet", - "website": "https://trustwallet.com" - }, { "id": "bva1t42gtf6hawqgpmdpjzmvlzvmlttlqtkvlmgjxt", "name": "BscScan", @@ -170,21 +170,39 @@ { "id": "bva142lu7y78yk23cdeujduy9g8gqxp7xl3wrz4ska", "name": "Legend", - "description": "Low Commission. High APR %. Reliable.", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", "website": "https://www.binance.org/en/staking/validator/bva142lu7y78yk23cdeujduy9g8gqxp7xl3wrz4ska" }, { "id": "bva16usf4rcvk9dyzpe8n82gq4nw9x5emlhhs2fftr", "name": "Legend II", - "description": "Low Commission. High APR %. Reliable.", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", "website": "https://www.binance.org/en/staking/validator/bva16usf4rcvk9dyzpe8n82gq4nw9x5emlhhs2fftr" }, { "id": "bva1z0g0cg8dkgczr6r8t6khva3srn5mwj8w5tlu7h", "name": "Legend III", - "description": "Low Commission. High APR %. Reliable.", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", "website": "https://www.binance.org/en/staking/validator/bva1z0g0cg8dkgczr6r8t6khva3srn5mwj8w5tlu7h" }, + { + "id": "bva1we4frydjkyejdzp506gzpljaqpqu5fs0flu60p", + "name": "Legend IV - Alternate", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/staking/validator/bva1we4frydjkyejdzp506gzpljaqpqu5fs0flu60p" + }, + { + "id": "bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r", + "name": "Legend V - Alternate", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/staking/validator/bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r" + }, + { + "id": "bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh", + "name": "Legend VI - Alternate", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/staking/validator/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh" + }, { "id": "bva139vgg7x68z3z7mjcyg6q02h3y0pvah678vr0y3", "name": "HashQuark", @@ -196,5 +214,17 @@ "name": "Tranchess", "description": "Tranchess protocol enables BNB holders to earn delegator rewards on top of protocol token (CHESS) airdrops.", "website": "https://tranchess.com/" + }, + { + "id": "bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg", + "name": "Legend VII - Alternate", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/staking/validator/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg" + }, + { + "id": "bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag", + "name": "Legend VIII - Alternate", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/staking/validator/bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag" } ] diff --git a/blockchains/bitcoin/assets/btcs/info.json b/blockchains/bitcoin/assets/btcs/info.json new file mode 100644 index 000000000000..77e9f7f885ac --- /dev/null +++ b/blockchains/bitcoin/assets/btcs/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTCs", + "symbol": "BTCS", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/btcs", + "status": "active", + "id": "btcs" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/btcs/logo.png b/blockchains/bitcoin/assets/btcs/logo.png new file mode 100644 index 000000000000..461dba63aeab Binary files /dev/null and b/blockchains/bitcoin/assets/btcs/logo.png differ diff --git a/blockchains/bitcoin/assets/ligo/info.json b/blockchains/bitcoin/assets/ligo/info.json new file mode 100644 index 000000000000..3a84c3b6352c --- /dev/null +++ b/blockchains/bitcoin/assets/ligo/info.json @@ -0,0 +1,11 @@ +{ + "name": "ligo", + "symbol": "LIGO", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/ligo", + "status": "active", + "id": "ligo" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/ligo/logo.png b/blockchains/bitcoin/assets/ligo/logo.png new file mode 100644 index 000000000000..45774bb94680 Binary files /dev/null and b/blockchains/bitcoin/assets/ligo/logo.png differ diff --git a/blockchains/bitcoin/assets/ordi/info.json b/blockchains/bitcoin/assets/ordi/info.json new file mode 100644 index 000000000000..e8c062adf2e5 --- /dev/null +++ b/blockchains/bitcoin/assets/ordi/info.json @@ -0,0 +1,11 @@ +{ + "name": "ordi", + "symbol": "ORDI", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/ordi", + "status": "active", + "id": "ordi" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/ordi/logo.png b/blockchains/bitcoin/assets/ordi/logo.png new file mode 100644 index 000000000000..7bf5c3469777 Binary files /dev/null and b/blockchains/bitcoin/assets/ordi/logo.png differ diff --git a/blockchains/bitcoin/assets/piin/info.json b/blockchains/bitcoin/assets/piin/info.json new file mode 100644 index 000000000000..c8d99d33518f --- /dev/null +++ b/blockchains/bitcoin/assets/piin/info.json @@ -0,0 +1,11 @@ +{ + "name": "piin", + "symbol": "piin", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/piin", + "status": "active", + "id": "piin" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/piin/logo.png b/blockchains/bitcoin/assets/piin/logo.png new file mode 100644 index 000000000000..864b13b3b188 Binary files /dev/null and b/blockchains/bitcoin/assets/piin/logo.png differ diff --git a/blockchains/bitcoin/assets/rats/info.json b/blockchains/bitcoin/assets/rats/info.json new file mode 100644 index 000000000000..e8c062adf2e5 --- /dev/null +++ b/blockchains/bitcoin/assets/rats/info.json @@ -0,0 +1,11 @@ +{ + "name": "ordi", + "symbol": "ORDI", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/ordi", + "status": "active", + "id": "ordi" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/rats/logo.png b/blockchains/bitcoin/assets/rats/logo.png new file mode 100644 index 000000000000..8e736469d758 Binary files /dev/null and b/blockchains/bitcoin/assets/rats/logo.png differ diff --git a/blockchains/bitcoin/assets/sats/info.json b/blockchains/bitcoin/assets/sats/info.json new file mode 100644 index 000000000000..3eb1af0d432c --- /dev/null +++ b/blockchains/bitcoin/assets/sats/info.json @@ -0,0 +1,11 @@ +{ + "name": "sats", + "symbol": "SATS", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/sats", + "status": "active", + "id": "sats" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/sats/logo.png b/blockchains/bitcoin/assets/sats/logo.png new file mode 100644 index 000000000000..f2e82f29725f Binary files /dev/null and b/blockchains/bitcoin/assets/sats/logo.png differ 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/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/info.json b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/info.json new file mode 100644 index 000000000000..c3fd044cb517 --- /dev/null +++ b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/info.json @@ -0,0 +1,21 @@ +{ + "name": "Snek", + "website": "https://www.snek.com", + "description": "Our vision is to create a sustainable and inclusive token on the Cardano blockchain, providing a fun and rewarding experience to our community.", + "explorer": "https://cexplorer.io/asset/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk", + "type": "CARDANO", + "symbol": "SNEK", + "decimals": 6, + "status": "active", + "id": "asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snek/" + }, + { + "name": "twitter", + "url": "https://twitter.com/snekcoinada" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/logo.png b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/logo.png new file mode 100644 index 000000000000..229cbdc6e1e0 Binary files /dev/null and b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/logo.png differ diff --git a/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/info.json b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/info.json new file mode 100644 index 000000000000..59b3e599e96a --- /dev/null +++ b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/info.json @@ -0,0 +1,37 @@ +{ + "name": "USD Coin", + "website": "https://www.centre.io", + "description": "USDC provides a fully collateralized US dollar stablecoin, and is based on the open source asset-backed stablecoin framework developed by Centre.", + "explorer": "https://cexplorer.io/asset/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23", + "research": "https://research.binance.com/en/projects/usd-coin", + "type": "CARDANO", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/logo.png b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/logo.png new file mode 100644 index 000000000000..1c05ab87710a Binary files /dev/null and b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/logo.png differ diff --git a/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/info.json b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/info.json new file mode 100644 index 000000000000..6a1928384e7e --- /dev/null +++ b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tether USD", + "website": "https://tether.to", + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "explorer": "https://cexplorer.io/asset/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743", + "type": "CARDANO", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/logo.png b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/logo.png new file mode 100644 index 000000000000..dab9b67b68b3 Binary files /dev/null and b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/logo.png differ diff --git a/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/info.json b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/info.json new file mode 100644 index 000000000000..fe576de6b259 --- /dev/null +++ b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/info.json @@ -0,0 +1,21 @@ +{ + "name": "ADA Shiba Inu", + "website": "https://ashib.io/", + "description": "ADA Shiba Inu is the 2.0 version of Shiba Inu built on Cardano", + "explorer": "https://cexplorer.io/asset/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8", + "type": "CARDANO", + "symbol": "ASHIB", + "decimals": 6, + "status": "active", + "id": "asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-inu/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Shibtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/logo.png b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/logo.png new file mode 100644 index 000000000000..285c0d3cf767 Binary files /dev/null and b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/logo.png differ diff --git a/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/info.json b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/info.json new file mode 100644 index 000000000000..c793cd242a81 --- /dev/null +++ b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/info.json @@ -0,0 +1,21 @@ +{ + "name": "MELD", + "website": "https://meld.com/", + "description": "Deprecated version of the governance token of the MELD protocol.", + "explorer": "https://cexplorer.io/asset/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw", + "type": "CARDANO", + "symbol": "MELD", + "decimals": 6, + "status": "active", + "id": "asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meld/" + }, + { + "name": "twitter", + "url": "https://twitter.com/MELD_Defi" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/logo.png b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/logo.png new file mode 100644 index 000000000000..68d2410a48bd Binary files /dev/null and b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/logo.png differ diff --git a/blockchains/cardano/info/info.json b/blockchains/cardano/info/info.json index 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/info/logo.png b/blockchains/cardano/info/logo.png index 1ab80529f702..b463a55eb2e3 100644 Binary files a/blockchains/cardano/info/logo.png and b/blockchains/cardano/info/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/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/pool194usk2h8vcq6yw89xs5asrvw22g08kcfy72xyfrnnkg6qrhtlfw/logo.png b/blockchains/cardano/validators/assets/pool194usk2h8vcq6yw89xs5asrvw22g08kcfy72xyfrnnkg6qrhtlfw/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool194usk2h8vcq6yw89xs5asrvw22g08kcfy72xyfrnnkg6qrhtlfw/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1du3r4a7xq60hg2x0wcz7lw5ya3qs74rk258c8kanp93rsqdqu45/logo.png b/blockchains/cardano/validators/assets/pool1du3r4a7xq60hg2x0wcz7lw5ya3qs74rk258c8kanp93rsqdqu45/logo.png new file mode 100644 index 000000000000..102052714989 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1du3r4a7xq60hg2x0wcz7lw5ya3qs74rk258c8kanp93rsqdqu45/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm/logo.png b/blockchains/cardano/validators/assets/pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm/logo.png new file mode 100644 index 000000000000..f5f3ada9451c Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1ljywsch33t7gaf02aeeqkqpuku0ngpwl9fm04t7u5sl5xyunmgp/logo.png b/blockchains/cardano/validators/assets/pool1ljywsch33t7gaf02aeeqkqpuku0ngpwl9fm04t7u5sl5xyunmgp/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1ljywsch33t7gaf02aeeqkqpuku0ngpwl9fm04t7u5sl5xyunmgp/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1yet04d4ykpp7me8uc2jx2glxrx88kt9uhmv6jeh7xkmtu5zucna/logo.png b/blockchains/cardano/validators/assets/pool1yet04d4ykpp7me8uc2jx2glxrx88kt9uhmv6jeh7xkmtu5zucna/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1yet04d4ykpp7me8uc2jx2glxrx88kt9uhmv6jeh7xkmtu5zucna/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1zz7x8ergn02chznayj9fjds2gk5q6prmpdr49faspd65kzqsrjs/logo.png b/blockchains/cardano/validators/assets/pool1zz7x8ergn02chznayj9fjds2gk5q6prmpdr49faspd65kzqsrjs/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1zz7x8ergn02chznayj9fjds2gk5q6prmpdr49faspd65kzqsrjs/logo.png differ diff --git a/blockchains/cardano/validators/list.json b/blockchains/cardano/validators/list.json index 1f06d5574136..8eb7c3158288 100644 --- a/blockchains/cardano/validators/list.json +++ b/blockchains/cardano/validators/list.json @@ -1,4 +1,10 @@ [ + { + "id": "pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, { "id": "pool1vx9tzlkgafernd9vpjpxkenutx2gncj4yn88fpq69823qlwcqrt", "name": "CARDANIANS.io", @@ -35,6 +41,30 @@ "description": "", "website": "https://nordicpool.org/" }, + { + "id": "pool1zz7x8ergn02chznayj9fjds2gk5q6prmpdr49faspd65kzqsrjs", + "name": "AutoStake I", + "description": "Earn higher yields with AutoStake.com", + "website": "https://autostake.com" + }, + { + "id": "pool1ljywsch33t7gaf02aeeqkqpuku0ngpwl9fm04t7u5sl5xyunmgp", + "name": "AutoStake II", + "description": "Earn higher yields with AutoStake.com", + "website": "https://autostake.com" + }, + { + "id": "pool194usk2h8vcq6yw89xs5asrvw22g08kcfy72xyfrnnkg6qrhtlfw", + "name": "AutoStake III", + "description": "Earn higher yields with AutoStake.com", + "website": "https://autostake.com" + }, + { + "id": "pool1yet04d4ykpp7me8uc2jx2glxrx88kt9uhmv6jeh7xkmtu5zucna", + "name": "AutoStake IV", + "description": "Earn higher yields with AutoStake.com", + "website": "https://autostake.com" + }, { "id": "pool19w5khsnmu27au0kprw0kjm8jr7knneysj7lfkqvnu66hyz0jxsx", "name": "ATADA-2 Stakepool in Austria", @@ -58,5 +88,23 @@ "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..8ba9e1f9a072 100644 --- a/blockchains/celo/info/info.json +++ b/blockchains/celo/info/info.json @@ -6,8 +6,12 @@ "research": "https://docs.celo.org/", "symbol": "CELO", "type": "coin", - "decimals": 8, + "rpc_url": "https://forno.celo.org", + "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "github", @@ -22,4 +26,4 @@ "url": "https://celo.org/papers" } ] -} \ No newline at end of file +} diff --git a/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/info.json b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/info.json new file mode 100644 index 000000000000..053cc055028c --- /dev/null +++ b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/info.json @@ -0,0 +1,30 @@ +{ + "name": "Ethereum", + "symbol": "ETH", + "type": "CONFLUX", + "decimals": 18, + "description": "Ethereum is a global, open-source platform for decentralized applications. Eth is fueling transactions on the Chain.", + "website": "https://ethereum.org/", + "explorer": "https://evm.confluxscan.net/address/0xa47f43de2f9623acb395ca4905746496d2014d57", + "research": "https://research.binance.com/en/projects/ethereum", + "status": "active", + "id": "0xa47f43DE2f9623aCb395CA4905746496D2014d57", + "links": [ + { + "name": "github", + "url": "https://github.com/ethereum/ethereum-org-website" + }, + { + "name": "twitter", + "url": "https://twitter.com/ethdotorg" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g" + }, + { + "name": "discord", + "url": "https://discord.com/invite/CetY6Y4" + } + ] +} \ No newline at end of file diff --git a/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/logo.png b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/logo.png new file mode 100644 index 000000000000..df4a0f3a19b3 Binary files /dev/null and b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/logo.png differ diff --git a/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/info.json b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/info.json new file mode 100644 index 000000000000..23bcb2c48fb5 --- /dev/null +++ b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "symbol": "USDT", + "type": "CONFLUX", + "decimals": 18, + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "website": "https://tether.to", + "explorer": "https://evm.confluxscan.net/address/0xfe97e85d13abd9c1c33384e796f10b73905637ce", + "status": "active", + "id": "0xfe97E85d13ABD9c1c33384E796F10B73905637cE", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/logo.png b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/logo.png new file mode 100644 index 000000000000..4a53c2480431 Binary files /dev/null and b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/logo.png differ diff --git a/blockchains/cfxevm/info/info.json b/blockchains/cfxevm/info/info.json new file mode 100644 index 000000000000..7c3e510e3582 --- /dev/null +++ b/blockchains/cfxevm/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Conflux eSpace", + "website": "https://confluxnetwork.org", + "description": "Conflux enables creators, communities, and markets to connect across borders and protocols", + "explorer": "https://evm.confluxscan.net", + "symbol": "CFX", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/conflux-chain" + }, + { + "name": "twitter", + "url": "https://twitter.com/Conflux_Network" + } + ] +} \ No newline at end of file diff --git a/blockchains/cfxevm/info/logo.png b/blockchains/cfxevm/info/logo.png new file mode 100644 index 000000000000..c8907ec9be62 Binary files /dev/null and b/blockchains/cfxevm/info/logo.png differ 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/comdex/validators/assets/comdexvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcpt5ph/logo.png b/blockchains/comdex/validators/assets/comdexvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcpt5ph/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcpt5ph/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper16jaa0d8tth8v5ae48s4a5zqjvdp768nqft9h5r/logo.png b/blockchains/comdex/validators/assets/comdexvaloper16jaa0d8tth8v5ae48s4a5zqjvdp768nqft9h5r/logo.png new file mode 100644 index 000000000000..0888af01c5da Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper16jaa0d8tth8v5ae48s4a5zqjvdp768nqft9h5r/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd/logo.png b/blockchains/comdex/validators/assets/comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper1g6zz4d7j6fvxy24nsqkjrcxqrt7hwp6p6hws7c/logo.png b/blockchains/comdex/validators/assets/comdexvaloper1g6zz4d7j6fvxy24nsqkjrcxqrt7hwp6p6hws7c/logo.png new file mode 100644 index 000000000000..4b09813738a9 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper1g6zz4d7j6fvxy24nsqkjrcxqrt7hwp6p6hws7c/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3/logo.png b/blockchains/comdex/validators/assets/comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3/logo.png differ diff --git a/blockchains/comdex/validators/list.json b/blockchains/comdex/validators/list.json new file mode 100644 index 000000000000..31d08a4bfcd8 --- /dev/null +++ b/blockchains/comdex/validators/list.json @@ -0,0 +1,32 @@ +[ + { + "id": "comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "comdexvaloper16jaa0d8tth8v5ae48s4a5zqjvdp768nqft9h5r", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "comdexvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcpt5ph", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "comdexvaloper1g6zz4d7j6fvxy24nsqkjrcxqrt7hwp6p6hws7c", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + } +] \ No newline at end of file diff --git a/blockchains/coreum/info/info.json b/blockchains/coreum/info/info.json new file mode 100644 index 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/coreum/validators/assets/corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5/logo.png b/blockchains/coreum/validators/assets/corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/coreum/validators/assets/corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5/logo.png differ diff --git a/blockchains/coreum/validators/list.json b/blockchains/coreum/validators/list.json new file mode 100644 index 000000000000..6eba4002b5ca --- /dev/null +++ b/blockchains/coreum/validators/list.json @@ -0,0 +1,8 @@ +[ + { + "id": "corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + } +] \ No newline at end of file diff --git a/blockchains/cosmos/chainlist.json b/blockchains/cosmos/chainlist.json new file mode 100644 index 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/cosmosvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zfd832j/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zfd832j/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zfd832j/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5/logo.png new file mode 100644 index 000000000000..dc486ae388c5 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5/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/cosmosvaloper1gpx52r9h3zeul45amvcy2pysgvcwddxrgx6cnv/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1gpx52r9h3zeul45amvcy2pysgvcwddxrgx6cnv/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1gpx52r9h3zeul45amvcy2pysgvcwddxrgx6cnv/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1hjadhj9nqzpye2vkmkz4thahhd0z8dh3udhq74/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1hjadhj9nqzpye2vkmkz4thahhd0z8dh3udhq74/logo.png new file mode 100644 index 000000000000..0dc38d6a8122 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1hjadhj9nqzpye2vkmkz4thahhd0z8dh3udhq74/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1k6e7l0lz497l8njqjxpd3g4wlkdfwe93uqf03k/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1k6e7l0lz497l8njqjxpd3g4wlkdfwe93uqf03k/logo.png new file mode 100644 index 000000000000..f5f3ada9451c Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1k6e7l0lz497l8njqjxpd3g4wlkdfwe93uqf03k/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/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png index 3c29ee005d51..0888af01c5da 100644 Binary files a/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png and b/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png differ diff --git a/blockchains/cosmos/validators/list.json b/blockchains/cosmos/validators/list.json index 539e39277f73..df36998ba679 100644 --- a/blockchains/cosmos/validators/list.json +++ b/blockchains/cosmos/validators/list.json @@ -1,4 +1,16 @@ [ + { + "id": "cosmosvaloper1k6e7l0lz497l8njqjxpd3g4wlkdfwe93uqf03k", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "cosmosvaloper1gpx52r9h3zeul45amvcy2pysgvcwddxrgx6cnv", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.fr" + }, { "id": "cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q", "name": "Swiss Staking", @@ -7,7 +19,7 @@ }, { "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/" }, @@ -17,6 +29,12 @@ "description": "We provide staking and validator services for crypto networks to increase the value of the network for all.", "website": "https://mythos.services" }, + { + "id": "cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, { "id": "cosmosvaloper1j0vaeh27t4rll7zhmarwcuq8xtrmvqhudrgcky", "name": "Chainflow", @@ -248,7 +266,7 @@ { "id": "cosmosvaloper1rcp29q3hpd246n6qak7jluqep4v006cdsc2kkl", "name": "in3s.com", - "description": "Trusted by the ICF; decentralization advocate; Game-Of-Stakes winner; active Cosmos community member since 2017.", + "description": "Trusted by the ICF; genesis validator; never slashed; decentralization advocate; Game-Of-Stakes winner; Game-Of-Chains winner; active Cosmos community member since 2017.", "website": "https://in3s.com" }, { @@ -260,7 +278,7 @@ { "id": "cosmosvaloper1fhr7e04ct0zslmkzqt9smakg3sxrdve6ulclj2", "name": "Stakin", - "description": "Your Trusted Crypto Rewards", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", "website": "https://stakin.com/" }, { @@ -319,9 +337,9 @@ }, { "id": "cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna", - "name": "Genesis Lab", - "description": "Genesis Lab is a validation nodes operator in PoS networks and blockchain-focused software development company", - "website": "https://genesislab.net" + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" }, { "id": "cosmosvaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcvrj90c", @@ -353,10 +371,34 @@ "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" + }, + { + "id": "cosmosvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zfd832j", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" } -] \ 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/crescent/validators/assets/crevaloper126nxgyruw03fyr3rmxg76squcy08pjtm9zkl5d/logo.png b/blockchains/crescent/validators/assets/crevaloper126nxgyruw03fyr3rmxg76squcy08pjtm9zkl5d/logo.png new file mode 100644 index 000000000000..4b09813738a9 Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper126nxgyruw03fyr3rmxg76squcy08pjtm9zkl5d/logo.png differ diff --git a/blockchains/crescent/validators/assets/crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f/logo.png b/blockchains/crescent/validators/assets/crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f/logo.png differ diff --git a/blockchains/crescent/validators/assets/crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc/logo.png b/blockchains/crescent/validators/assets/crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc/logo.png new file mode 100644 index 000000000000..0888af01c5da Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc/logo.png differ diff --git a/blockchains/crescent/validators/assets/crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf/logo.png b/blockchains/crescent/validators/assets/crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf/logo.png differ diff --git a/blockchains/crescent/validators/list.json b/blockchains/crescent/validators/list.json new file mode 100644 index 000000000000..269ff481956b --- /dev/null +++ b/blockchains/crescent/validators/list.json @@ -0,0 +1,26 @@ +[ + { + "id": "crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "crevaloper126nxgyruw03fyr3rmxg76squcy08pjtm9zkl5d", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + } +] \ No newline at end of file diff --git a/blockchains/cronos/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/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json b/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json similarity index 83% rename from blockchains/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json rename to blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json index 3af4070c1996..a5bb571b6a3f 100644 --- a/blockchains/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json +++ b/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json @@ -4,8 +4,8 @@ "type": "CRC20", "decimals": 6, "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", - "website": "https://cronos.org/", - "explorer": "https://cronos.org/explorer/address/0x66e428c3f67a68878562e79A0234c1F83c208770/token-transfers", + "website": "https://crypto.org/", + "explorer": "https://crypto.org/explorer/account/0x66e428c3f67a68878562e79A0234c1F83c208770", "status": "active", "id": "0x66e428c3f67a68878562e79A0234c1F83c208770", "links": [ diff --git a/blockchains/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png b/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png similarity index 100% rename from blockchains/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png rename to blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png diff --git a/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json b/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json new file mode 100644 index 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/info/logo.png b/blockchains/cryptoorg/info/logo.png index ae4b44e69452..08d6bd8efb35 100644 Binary files a/blockchains/cryptoorg/info/logo.png and b/blockchains/cryptoorg/info/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj/logo.png new file mode 100644 index 000000000000..9f0f2ffb1580 Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h/logo.png b/blockchains/cryptoorg/validators/assets/crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h/logo.png new file mode 100644 index 000000000000..eaf66cb5cbb1 Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1td4trxpsa3992sqh70erxyeuyjdxdce2kmuzrt/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1td4trxpsa3992sqh70erxyeuyjdxdce2kmuzrt/logo.png new file mode 100644 index 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..cc74839f6479 --- /dev/null +++ b/blockchains/cryptoorg/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "id": "crocncl1u5ryf5jwc2jhd9xyvmasfqzacxp03v8dcj8xry", + "name": "Allnodes.com ⚡️ Auto-compound (Ledger or Keplr)", + "description": "A non-custodial platform where you can host Masternodes, Validator Nodes, Super Nodes, Sentry Nodes, Full Nodes, and partake in Staking in over 70 protocols.", + "website": "https://www.allnodes.com" + }, + { + "id": "crocncl1yr3pm394j5yz3zsz5gjc28eqhvnre9389seafz", + "name": "Crypto.bzh", + "description": "Here is the address to use to delegate your funds (staking) on ​​the Crypto.bzh validator.", + "website": "https://crypto.bzh" + }, + { + "id": "crocncl1up72gll847cqf5wrdedp66pklvpmqxcctr63nh", + "name": "nebkas.ro", + "description": "The company is a limited liability company, incorporated and functioning according to Romanian laws.", + "website": "https://nebkas.ro" + }, + { + "id": "crocncl1td4trxpsa3992sqh70erxyeuyjdxdce2kmuzrt", + "name": "Veno.finance", + "description": "Earn more rewards with Veno! Boost extra APY with our ecosystem partners!", + "website": "https://veno.finance" + }, + { + "id": "crocncl1vk5zc056nfngucy69eyveupytkhkr2ya3yj9r0", + "name": "Making.cash", + "description": "Validator on Celo, Solana, Certik, Dock, Regen and more", + "website": "https://making.cash" + }, + { + "id": "crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com" + }, + { + "id": "crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj", + "name": "Kingstaker", + "description": "Reliable and experienced EU validator. Just the minimum commission is charged to cover infrastructure cost. Thank you for staking with us!", + "website": "https://kingstaker.com" + } +] diff --git a/blockchains/elrond/assets/ASH-a642d1/info.json b/blockchains/elrond/assets/ASH-a642d1/info.json new file mode 100644 index 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 index 62bdbfa9980e..a8e4190c2379 100644 --- a/blockchains/elrond/assets/QWT-46ac01/info.json +++ b/blockchains/elrond/assets/QWT-46ac01/info.json @@ -1,13 +1,13 @@ { "type": "ESDT", "id": "QWT-46ac01", - "name": "QoWatt", + "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.elrond.com/tokens/QWT-46ac01", + "explorer": "https://explorer.multiversx.com/tokens/QWT-46ac01", "links": [ { "name": "twitter", 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/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/info.json b/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/info.json new file mode 100644 index 000000000000..2f958fba8a50 --- /dev/null +++ b/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/info.json @@ -0,0 +1,32 @@ +{ + "name": "Pepe 2.0", + "type": "ERC20", + "symbol": "PEPE2.0", + "decimals": 18, + "website": "https://pepe20.vip/", + "description": "Learning from past other tokens mistakes, Pepe2.0 wants to make things right and redo his billion-dollar run.", + "explorer": "https://etherscan.io/token/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B", + "status": "active", + "id": "0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/pepe2coineth" + }, + { + "name": "github", + "url": "https://github.com/pepe2coineth" + }, + { + "name": "telegram", + "url": "https://t.me/Pepe2Portal" + }, + { + "name": "source_code", + "url": "https://github.com/pepe2coineth/SmartContract" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/logo.png b/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/logo.png new file mode 100644 index 000000000000..6a1e743f2d4c Binary files /dev/null and b/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/logo.png differ diff --git a/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/info.json b/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/info.json new file mode 100644 index 000000000000..9c384044ade6 --- /dev/null +++ b/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/info.json @@ -0,0 +1,21 @@ +{ + "name": "EML Protocol", + "symbol": "EML", + "type": "ERC20", + "decimals": 18, + "description": "The EML Protocol is an end-to-end payment platform that integrates the permissioned private blockchain form of Hyperledger Fabric which allows only approved users to participate.", + "website": "https://emlprotocol.io", + "explorer": "https://etherscan.io/token/0x03dde9e5bb31ee40a471476e2fccf75c67921062", + "status": "active", + "id": "0x03dDe9e5BB31ee40A471476e2FCcF75C67921062", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/EMLprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/EMLprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/logo.png b/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/logo.png new file mode 100644 index 000000000000..40eda8f2f790 Binary files /dev/null and b/blockchains/ethereum/assets/0x03dDe9e5BB31ee40A471476e2FCcF75C67921062/logo.png differ diff --git a/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/info.json b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/info.json new file mode 100644 index 000000000000..3794873ada4e --- /dev/null +++ b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/info.json @@ -0,0 +1,25 @@ +{ + "name": "Rollbit Coin", + "website": "https://rollbit.com/", + "description": "RLB is Rollbit's native token. It introduces 'RLB Lottery' which includes a prize pool grown from a share of Rollbit's casino profits.", + "explorer": "https://etherscan.io/token/0x046eee2cc3188071c02bfc1745a6b17c656e3f3d", + "type": "ERC20", + "symbol": "RLB", + "decimals": 18, + "status": "active", + "id": "0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rollbit-coin/" + }, + { + "name": "twitter", + "url": "https://twitter.com/rollbitcom" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rollbit-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/logo.png b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/logo.png new file mode 100644 index 000000000000..85082663b096 Binary files /dev/null and b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/logo.png differ diff --git a/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/info.json b/blockchains/ethereum/assets/0x04C17b9D3b29A78F7Bd062a57CF44FC633e71f85/info.json new file mode 100644 index 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/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/info.json b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/info.json new file mode 100644 index 000000000000..15948e26ec33 --- /dev/null +++ b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/info.json @@ -0,0 +1,24 @@ +{ + "name": "HarryPotterObamaPacMan8Inu", + "website": "https://hpop8i.com/", + "description": "HarryPotterObamaPacMan8Inu is an enchanting and whimsical meme project that recently took its first steps onto the Ethereum blockchain. Inspired by a fusion of iconic characters from popular culture, this unique and lighthearted project brings together the worlds of Harry Potter, Barack Obama, Pac-Man, and the Inu meme trend in an unexpected and delightful way.", + "explorer": "https://etherscan.io/token/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae", + "type": "ERC20", + "symbol": "XRP", + "decimals": 8, + "status": "active", + "id": "0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae", + "tags": [ + "memes" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/HPOP8I" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/harrypotterobamapacman8inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/logo.png b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/logo.png new file mode 100644 index 000000000000..8761450401a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/logo.png differ diff --git a/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/info.json b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/info.json new file mode 100644 index 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/0x089453742936dd35134383aee9d78bEe63A69b01/info.json b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/info.json new file mode 100644 index 000000000000..b4da9a02a32c --- /dev/null +++ b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/info.json @@ -0,0 +1,29 @@ +{ + "name": "GOLD", + "website": "https://hodl.gold/", + "description": "Gold has been the symbol of power, wealth, & beauty in all of humanity’s recorded history. It is also widely used in internet culture to convey digital currencies. The GOLD coin is the ethereum project for one of the most valuable resources in the world. It’s also a meme. That’s all it’ll ever be. Launched stealth with no presale, low taxes, & LP burnt. Contract will be renounced. GOLD is here to bring back the golden era of crypto.", + "explorer": "https://etherscan.io/token/0x089453742936dd35134383aee9d78bee63a69b01", + "type": "ERC20", + "symbol": "GOLD", + "decimals": 18, + "status": "active", + "id": "0x089453742936dd35134383aee9d78bEe63A69b01", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GoldCoinETH" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gold-2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-gold-token/" + }, + { + "name": "telegram", + "url": "https://t.me/GoldCoinETH" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/logo.png b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/logo.png new file mode 100644 index 000000000000..190fc89bfc38 Binary files /dev/null and b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/logo.png differ diff --git a/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json b/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json new file mode 100644 index 000000000000..b799d40a1e1e --- /dev/null +++ b/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json @@ -0,0 +1,27 @@ +{ + "name": "Unagi Token (UNA)", + "type": "ERC20", + "symbol": "UNA", + "decimals": 18, + "website": "https://unagi.games/", + "description": "UNA token is Unagi's web3 gaming ecosystem token. It is your universal ticket to the entire range of Unagi games, offering a seamless experience across various genres and platforms including Ultimate Champions, Persona and more to come! We’re creating a cohesive, interconnected gaming environment.", + "explorer": "https://etherscan.io/token/0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9", + "status": "active", + "id": "0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9", + "links": [ + { + "name": "medium", + "url": "https://ultimatechampions.medium.com/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Unagi_studio" + } + ], + "tags": [ + "gamefi", + "deflationary", + "staking", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png b/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png new file mode 100644 index 000000000000..5dd9cbe12c47 Binary files /dev/null and b/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/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/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/info.json b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/info.json new file mode 100644 index 000000000000..bf51ba1f62b9 --- /dev/null +++ b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/info.json @@ -0,0 +1,34 @@ +{ + "name": "ATOR Protocol", + "type": "ERC20", + "symbol": "ATOR", + "decimals": 18, + "website": "https://ator.io/", + "description": "ATOR empowers The Onion Router (Tor) through on-chain incentives, and facilitates wider adoption of secure network relay protocols through hardware products.", + "explorer": "https://etherscan.io/token/0x0f7b3f5a8fed821c5eb60049538a548db2d479ce", + "status": "active", + "id": "0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/atorprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/atorofficialportal" + }, + { + "name": "github", + "url": "https://github.com/ATOR-Development" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ator" + } + ], + "tags": [ + "defi", + "privacy", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/logo.png b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/logo.png new file mode 100644 index 000000000000..fae0e2380b15 Binary files /dev/null and b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/logo.png differ diff --git a/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/info.json b/blockchains/ethereum/assets/0x0a661F6AD63a1500D714ED1EeEdb64ec493a54A8/info.json new file mode 100644 index 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/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/info.json b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/info.json new file mode 100644 index 000000000000..766fa1a137fb --- /dev/null +++ b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/info.json @@ -0,0 +1,25 @@ +{ + "name": "Shiba V Pepe", + "type": "ERC20", + "symbol": "SHEPE", + "decimals": 9, + "website": "https://shibavspepe.io/", + "description": "$SHEPE is aiming to start the communities battle between Shiba VS Pepe.", + "explorer": "https://etherscan.io/token/0x0b0a8c7c34374c1d0c649917a97eee6c6c929b1b", + "status": "active", + "id": "0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b", + "links": [ + { + "name": "telegram", + "url": "https://t.me/shibavspepe" + }, + { + "name": "twitter", + "url": "https://twitter.com/shibavspepe" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-v-pepe/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/logo.png b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/logo.png new file mode 100644 index 000000000000..ee3a40be30e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/info.json b/blockchains/ethereum/assets/0x0b38210ea11411557c13457D4dA7dC6ea731B88a/info.json new file mode 100644 index 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/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/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/info.json b/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/info.json new file mode 100644 index 000000000000..6f815b359ce1 --- /dev/null +++ b/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cybria", + "website": "https://www.cybria.io/", + "description": "Cybria is a Layer 2 blockchain platform built on top of the Ethereum network.", + "explorer": "https://etherscan.io/token/0x1063181dc986f76f7ea2dd109e16fc596d0f522a", + "symbol": "CYBA", + "type": "ERC20", + "decimals": 9, + "status": "active", + "id": "0x1063181dc986F76F7eA2Dd109e16fc596d0f522A", + "links": [ + { + "name": "telegram", + "url": "https://t.me/cybriacoin" + }, + { + "name": "twitter", + "url": "https://twitter.com/cybriacoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/logo.png b/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/logo.png new file mode 100644 index 000000000000..f3f72e02f18b Binary files /dev/null and b/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/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/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json b/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json new file mode 100644 index 000000000000..d4c7b4e0fc28 --- /dev/null +++ b/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Fideum", + "website": "https://blockbank.ai/", + "description": "Fideum (previously blockbank) offers regulatory-compliant infrastructure tailored to the needs of financial institutions, banks, and SMEs. Its adaptable microservice architecture facilitates a wide range of financial services, enabling businesses to smoothly transition into the digital asset era.", + "explorer": "https://etherscan.io/token/0x1294f4183763743c7c9519Bec51773fb3aCD78FD", + "type": "ERC20", + "symbol": "FI", + "decimals": 18, + "status": "active", + "id": "0x1294f4183763743c7c9519Bec51773fb3aCD78FD", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BlockBankApp" + }, + { + "name": "twitter", + "url": "https://twitter.com/BLOCKBANKapp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fideum/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/logo.png b/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/logo.png new file mode 100644 index 000000000000..9939ad9e0321 Binary files /dev/null and b/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/logo.png differ diff --git a/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/info.json b/blockchains/ethereum/assets/0x12970E6868f88f6557B76120662c1B3E50A646bf/info.json new file mode 100644 index 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 index 8b3023642618..e05f98d39b84 100644 --- a/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/info.json +++ b/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/info.json @@ -4,7 +4,7 @@ "symbol": "TAMA", "decimals": 18, "website": "https://tamadoge.io", - "description": "TAMA is the utility token for the Tamadoge ecosystem", + "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", @@ -13,29 +13,25 @@ "name": "twitter", "url": "https://twitter.com/Tamadogecoin" }, + { + "name": "discord", + "url": "https://discord.com/invite/Z2PqFvsXJa" + }, { "name": "telegram", "url": "https://t.me/TamadogeOfficial" }, { - "name": "discord", - "url": "https://discord.com/4WNqpuSp" + "name": "whitepaper", + "url": "https://tamadoge.io/wp-content/uploads/2022/10/Tamadoge-Whitepaper-ENG.pdf" }, { "name": "youtube", "url": "https://youtube.com/channel/UCivYe1JIbVcVq2wXtFYarjA" }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/tamadoge/" - }, { "name": "coingecko", - "url": "https://coingecko.com/coins/tamadoge?clickId=fx_b17159_71833c0c7bd40a8c04ff4b7232914904_1" - }, - { - "name": "whitepaper", - "url": "https://tamadoge.io/wp-content/uploads/2022/08/Tamadoge-Whitepaper-V1-EN-1.pdf" + "url": "https://coingecko.com/en/coins/tamadoge" } ], "tags": [ diff --git a/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/logo.png b/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/logo.png index 18c276864d3c..4476222ced2a 100644 Binary files a/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/logo.png and b/blockchains/ethereum/assets/0x12b6893cE26Ea6341919FE289212ef77e51688c8/logo.png differ diff --git a/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json new file mode 100644 index 000000000000..4025c077720d --- /dev/null +++ b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json @@ -0,0 +1,25 @@ +{ + "name": "CyberConnect", + "type": "ERC20", + "symbol": "CYBER", + "decimals": 18, + "website": "https://cyberconnect.me/", + "description": "CyberConnect is a Web3 social network that enables developers to create social applications empowering users to own their digital identity, content, connections, and interactions.", + "explorer": "https://etherscan.io/token/0x14778860e937f509e651192a90589de711fb88a9", + "status": "active", + "id": "0x14778860E937f509e651192a90589dE711Fb88a9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CyberConnectHQ" + }, + { + "name": "github", + "url": "https://github.com/cyberconnecthq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cyberconnect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png new file mode 100644 index 000000000000..b26b7b808fb1 Binary files /dev/null and b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png differ diff --git a/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/info.json b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/info.json new file mode 100644 index 000000000000..8a787ce91ca7 --- /dev/null +++ b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/info.json @@ -0,0 +1,25 @@ +{ + "name": "PAAL AI", + "website": "https://paalai.io/", + "description": "Paal is an advanced chatbot built on AI and ML technologies, designed to streamline tasks that typically require human intellect, such as natural language understanding, image recognition, decision-making, and problem-solving.", + "explorer": "https://etherscan.io/token/0x14fee680690900ba0cccfc76ad70fd1b95d10e16", + "type": "ERC20", + "symbol": "PAAL", + "decimals": 9, + "status": "active", + "id": "0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paal-ai/" + }, + { + "name": "twitter", + "url": "https://twitter.com/PaalMind" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/paal-ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/logo.png b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/logo.png new file mode 100644 index 000000000000..5005332b2a23 Binary files /dev/null and b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/logo.png differ diff --git a/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/info.json b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/info.json new file mode 100644 index 000000000000..e3c8847b61a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/info.json @@ -0,0 +1,25 @@ +{ + "name": "HXAcoin", + "website": "https://www.hxacoin.io/", + "description": "HXA coin is the native utility token of the Herencia Artifex project - a revolutionary NFT project that aims to bridge the gap between real-world items and blockchain technology.", + "explorer": "https://etherscan.io/token/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396", + "type": "ERC20", + "symbol": "HXA", + "decimals": 18, + "status": "active", + "id": "0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/HXAcoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hxacoin/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hxacoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/logo.png b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/logo.png new file mode 100644 index 000000000000..f262f107dd89 Binary files /dev/null and b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/logo.png differ diff --git a/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/info.json b/blockchains/ethereum/assets/0x15D4c048F83bd7e37d49eA4C83a07267Ec4203dA/info.json index 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/0x163f8C2467924be0ae7B5347228CABF260318753/info.json b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/info.json new file mode 100644 index 000000000000..f1967724a8af --- /dev/null +++ b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/info.json @@ -0,0 +1,25 @@ +{ + "name": "Worldcoin", + "website": "https://worldcoin.org/", + "description": "The Worldcoin system revolves around World ID, a privacy-preserving global identity network. World ID enables users to verify their humanness online (`Proof of Personhood`) while maintaining their privacy through zero-knowledge proofs.", + "explorer": "https://etherscan.io/token/0x163f8c2467924be0ae7b5347228cabf260318753", + "type": "ERC20", + "symbol": "WLD", + "decimals": 18, + "status": "active", + "id": "0x163f8C2467924be0ae7B5347228CABF260318753", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/worldcoin" + }, + { + "name": "telegram", + "url": "https://t.me/worldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/worldcoin-org/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/logo.png b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/logo.png new file mode 100644 index 000000000000..cb7f6e3935a8 Binary files /dev/null and b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/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/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/info.json b/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/info.json new file mode 100644 index 000000000000..03ab1761c2fc --- /dev/null +++ b/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/info.json @@ -0,0 +1,52 @@ +{ + "name": "Openleverage Token V2", + "website": "https://openleverage.finance/", + "description": "OpenLeverage is a permissionless money market protocol enabling decentralized lending, borrowing, and margin trading across a diverse range of cryptocurrency pairs, fostering an accessible and efficient DeFi ecosystem.", + "explorer": "https://etherscan.io/token/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A", + "type": "ERC20", + "symbol": "OLE", + "decimals": 18, + "status": "active", + "id": "0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/OpenLeverage" + }, + { + "name": "discord", + "url": "https://discord.com/invite/openleverage" + }, + { + "name": "medium", + "url": "https://openleverage.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openleverage/" + }, + { + "name": "docs", + "url": "https://docs.openleverage.finance/main/" + }, + { + "name": "telegram", + "url": "https://t.me/openleverageofficial" + }, + { + "name": "github", + "url": "https://github.com/OpenLeverageDev/openleverage-contracts" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openleverage" + }, + { + "name": "youtube", + "url": "https://youtube.com/@openleverageprotocol9047" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/logo.png b/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/logo.png new file mode 100644 index 000000000000..c43b83973316 Binary files /dev/null and b/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/logo.png differ diff --git a/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/info.json b/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/info.json new file mode 100644 index 000000000000..f6da3268cec3 --- /dev/null +++ b/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/info.json @@ -0,0 +1,21 @@ +{ + "name": "EURC", + "type": "ERC20", + "symbol": "EURC", + "decimals": 6, + "website": "https://www.circle.com/en/eurc", + "description": "EURC is a euro-backed stablecoin issued by Circle. EURC is designed to provide a faster, safer, and more efficient way to send, spend, and exchange money around the world.", + "explorer": "https://etherscan.io/token/0x1abaea1f7c830bd89acc67ec4af516284b1bc33c", + "status": "active", + "id": "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/circle" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/euro-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/logo.png b/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/logo.png new file mode 100644 index 000000000000..f23fbed3cbe9 Binary files /dev/null and b/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/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/0x20e7125677311Fca903A8897042b9983f22Ea295/info.json b/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/info.json new file mode 100644 index 000000000000..67eaf0ab3c30 --- /dev/null +++ b/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/info.json @@ -0,0 +1,24 @@ +{ + "name": "Freeway Token", + "symbol": "FWT", + "type": "ERC20", + "decimals": 18, + "description": "Freeway Tokens (FWT) are the native utility tokens for AuBit Freeway — a ground-breaking new asset management platform built for greater total returns on the world’s top investment products with no additional risk.", + "website": "https://aubit.io/", + "explorer": "https://etherscan.io/token/0x20e7125677311Fca903A8897042b9983f22Ea295", + "status": "active", + "id": "0x20e7125677311Fca903A8897042b9983f22Ea295", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/FreewayFi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/freeway/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/logo.png b/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/logo.png similarity index 100% rename from blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/logo.png rename to blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/logo.png diff --git a/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/info.json b/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/info.json index c35a2217418f..f0f40c03c8d3 100644 --- a/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/info.json +++ b/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/info.json @@ -1,44 +1,42 @@ { - "name": "OVR", - "symbol": "OVR", - "type": "ERC20", - "decimals": 18, - "description": "OVR is the decentralized infrastructure for the spatial web, merging physical and virtual world through Augmented Reality, creating a new dimension where everything is possible.", - "website": "https://www.ovr.ai", - "explorer": "https://etherscan.io/token/0x21bfbda47a0b4b5b1248c767ee49f7caa9b23697", - "status": "active", - "id": "0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697", - "tags": [ - "nft" - ], - "links": [ - { - "name": "telegram", - "url": "https://t.me/OVRtheReality" - }, - { - "name": "twitter", - "url": "https://twitter.com/OVRtheReality" - }, - { - "name": "facebook", - "url": "https://facebook.com/OVRmetaverse/" - }, - { - "name": "telegram_news", - "url": "https://t.me/ovrannouncements" - }, - { - "name": "medium", - "url": "https://medium.com/ovrthereality" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/ovr" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/ovr/" - } - ] + "name": "OVR", + "symbol": "OVR", + "type": "ERC20", + "decimals": 18, + "description": "OVR is the decentralized infrastructure for the spatial web, merging physical and virtual world through Augmented Reality, creating a new dimension where everything is possible.", + "website": "https://www.overthereality.ai/", + "explorer": "https://etherscan.io/token/0x21bfbda47a0b4b5b1248c767ee49f7caa9b23697", + "status": "active", + "id": "0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697", + "tags": ["nft"], + "links": [ + { + "name": "telegram", + "url": "https://t.me/OVRtheReality" + }, + { + "name": "twitter", + "url": "https://twitter.com/OVRtheReality" + }, + { + "name": "facebook", + "url": "https://facebook.com/Overmetaverse" + }, + { + "name": "telegram_news", + "url": "https://t.me/ovrannouncements" + }, + { + "name": "medium", + "url": "https://medium.com/ovrthereality" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ovr" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ovr/" + } + ] } diff --git a/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png b/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png index c3045348fbd1..5bc8414cd246 100644 Binary files a/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png and b/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png differ diff --git a/blockchains/ethereum/assets/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/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/info.json b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/info.json new file mode 100644 index 000000000000..92a5919782f2 --- /dev/null +++ b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Four", + "symbol": "FOUR", + "type": "ERC20", + "decimals": 18, + "description": "It all started with a tweet. Then it became a rallying cry to fight FUD. Now it's a memecoin.", + "website": "https://www.4thecoin.com/", + "explorer": "https://etherscan.io/token/0x244b797d622d4dee8b188b03546acaabd0cf91a0", + "status": "active", + "id": "0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/4thecoin" + }, + { + "name": "telegram", + "url": "https://t.me/TheCoin4" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/logo.png b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/logo.png new file mode 100644 index 000000000000..9a4147093b5a Binary files /dev/null and b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/logo.png differ diff --git a/blockchains/ethereum/assets/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC/info.json b/blockchains/ethereum/assets/0x2467AA6B5A2351416fD4C3DeF8462d841feeecEC/info.json index 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/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/info.json b/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/info.json new file mode 100644 index 000000000000..474bc9c404d6 --- /dev/null +++ b/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/info.json @@ -0,0 +1,40 @@ +{ + "name": "Heroes of Mavia", + "type": "ERC20", + "symbol": "MAVIA", + "decimals": 18, + "website": "https://mavia.com", + "description": "Heroes of Mavia is a mobile free-to-play Web3 MMO Strategy game developed by Skrice Studios. The game takes place in a fantasy-themed island called Mavia, where players build bases on plots of land and battle neighboring bases and armies to earn in-game resources, such as Gold, Oil and Ruby.", + "explorer": "https://etherscan.io/token/0x24fcFC492C1393274B6bcd568ac9e225BEc93584", + "status": "active", + "id": "0x24fcFC492C1393274B6bcd568ac9e225BEc93584", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MaviaGame" + }, + { + "name": "telegram_news", + "url": "https://t.me/MaviaAnnouncements" + }, + { + "name": "discord", + "url": "https://discord.com/invite/maviaofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/heroes-of-mavia/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/heroes-of-mavia" + }, + { + "name": "medium", + "url": "https://medium.com/heroes-of-mavia" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/logo.png b/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/logo.png new file mode 100644 index 000000000000..29a95e25f9b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/logo.png differ diff --git a/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json new file mode 100644 index 000000000000..f08eed0be369 --- /dev/null +++ b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json @@ -0,0 +1,28 @@ +{ + "name": "Alvey Chain", + "type": "ERC20", + "symbol": "wALV", + "decimals": 18, + "website": "https://www.alveychain.com", + "description": "Alvey Coin is a decentralized blockchain project built on Bitcoin's UTXO model, with support for Ethereum Virtual Machine based smart contracts, and secured by a Proof of Stake consensus.", + "explorer": "https://etherscan.io/token/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497", + "status": "active", + "id": "0x256D1fCE1b1221e8398f65F9B36033CE50B2D497", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/AlveyChain" + }, + { + "name": "github", + "url": "https://github.com/AlveyCoin" + }, + { + "name": "telegram", + "url": "https://t.me/AlveyChain" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png new file mode 100644 index 000000000000..697332506680 Binary files /dev/null and b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png differ diff --git a/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/info.json b/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/info.json new file mode 100644 index 000000000000..a9c3d7881b9f --- /dev/null +++ b/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/info.json @@ -0,0 +1,29 @@ +{ + "name": "ChainGPT", + "type": "ERC20", + "symbol": "CGPT", + "decimals": 18, + "website": "https://www.chaingpt.org/", + "description": "ChainGPT is an advanced AI model designed specifically for Blockchain, Crypto, and the Web3 space. ChainGPT offers variety of features such as no-code smart contract generator, auditor, fast and reliable source of information, AI trading, and more. ChainGPT is backed by the CGPT utility token.", + "explorer": "https://etherscan.io/token/0x25931894a86d47441213199621f1f2994e1c39aa", + "status": "active", + "id": "0x25931894a86D47441213199621F1F2994e1c39Aa", + "links": [ + { + "name": "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/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/logo.png b/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/logo.png new file mode 100644 index 000000000000..11296a606fc2 Binary files /dev/null and b/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/logo.png differ diff --git a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json index 031556649b84..0a551ae8aea5 100644 --- a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json +++ b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json @@ -1,14 +1,42 @@ { - "name": "BitcoinSoV", + "name": "BSOV Token", "symbol": "BSOV", "type": "ERC20", "decimals": 8, - "description": "-", - "website": "https://www.btcsov.com/", + "description": "BSOV Token is not a Bitcoin fork, but shares Bitcoin’s supply distribution with a deflationary design. This cryptocurrency is the first mineable and deflationary-by-design crypto commodity built on the Ethereum blockchain (ERC20).", + "website": "https://www.bsovtoken.com/", "explorer": "https://etherscan.io/token/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1", "status": "active", "id": "0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1", "tags": [ - "deflationary" + "deflationary", + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/BitcoinSoVCommunity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoinsov/" + }, + { + "name": "whitepaper", + "url": "https://bsovtoken.com/wp-content/uploads/2020/06/BitcoinSoV-BSoV_-A-Mineable-Deflationary-Store-of-Value-1.pdf" + }, + { + "name": "telegram_news", + "url": "https://t.me/BSOVnews" + }, + { + "name": "blog", + "url": "https://bsovtoken.com/stories" + }, + { + "name": "twitter", + "url": "https://twitter.com/bsov_" + } ] -} \ No newline at end of file +} + diff --git a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png index 94f2855f0948..525f7eb1d24f 100644 Binary files a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png and b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png differ diff --git a/blockchains/ethereum/assets/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/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/info.json b/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/info.json new file mode 100644 index 000000000000..c5976116da57 --- /dev/null +++ b/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/info.json @@ -0,0 +1,21 @@ +{ + "name": "WHITE RHINOCEROS", + "symbol": "WHRH", + "type": "ERC20", + "decimals": 18, + "description": "The White Rhinoceros symbolizes strength, resilience, and communal bonds – qualities that reflect our project's core values. Much like the majestic creature it is named after, WHRH seeks to establish a lasting presence in the crypto space.", + "website": "https://whrh-token.com/", + "explorer": "https://etherscan.io/token/0x2dc917b722184ece1dcb9bb9dddfb1d63ccd25eb", + "status": "active", + "id": "0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Whrh_token" + }, + { + "name": "telegram", + "url": "https://t.me/WhiteRhinocerosToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/logo.png b/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/logo.png new file mode 100644 index 000000000000..67e5504e3d6a Binary files /dev/null and b/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/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..ce5db10d495d --- /dev/null +++ b/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/info.json @@ -0,0 +1,33 @@ +{ + "name": "PLANET", + "website": "https://joinourplanet.com", + "description": "A state of the art platform to tokenize Real-World Assets (RWA), bringing yields into the web3, all while striving for sustainable growth #RWA #ReFi", + "explorer": "https://etherscan.io/token/0x2ad9addd0d97ec3cdba27f92bf6077893b76ab0b", + "type": "ERC20", + "symbol": "PLANET", + "decimals": 18, + "status": "active", + "id": "0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/JoinOurPlanet/" + }, + { + "name": "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/" + } + ] +} 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/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json b/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json index 738e01958d58..f3e92c0a8830 100644 --- a/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json +++ b/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json @@ -7,6 +7,6 @@ "type": "ERC20", "symbol": "RUNE", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x3155BA85D5F96b2d030a4966AF206230e46849cb" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/info.json b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/info.json new file mode 100644 index 000000000000..23e4b1e101ca --- /dev/null +++ b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/info.json @@ -0,0 +1,25 @@ +{ + "name": "Monerium EUR emoney", + "website": "https://monerium.com", + "description": "The Monerium EURe is the first fully authorized and regulated euro stablecoin. It's the only onchain fiat directly transferable between bank accounts and web3 wallets.", + "explorer": "https://etherscan.io/token/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f", + "type": "ERC20", + "symbol": "EURe", + "decimals": 18, + "status": "active", + "id": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/monerium" + }, + { + "name": "telegram", + "url": "https://t.me/+o89F3aj9PsUzMDQ0" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monerium/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/logo.png b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/logo.png new file mode 100644 index 000000000000..20268b491a66 Binary files /dev/null and b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/logo.png differ diff --git a/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/info.json b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/info.json new file mode 100644 index 000000000000..83622f280970 --- /dev/null +++ b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/info.json @@ -0,0 +1,25 @@ +{ + "name": "Adventure Gold", + "type": "ERC20", + "symbol": "AGLD", + "decimals": 18, + "website": "https://www.lootproject.com/", + "description": "Adventure Gold is the native ERC-20 token of the Loot non-fungible token (NFT) project. Loot is a text-based, randomized adventure gear generated and stored on-chain, created by social media network Vine co-founder Dom Hofmann.", + "explorer": "https://etherscan.io/token/0x32353a6c91143bfd6c7d363b546e62a9a2489a20", + "status": "active", + "id": "0x32353A6C91143bfd6C7d363B546e62a9A2489A20", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/lootproject" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/adventure-gold/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/adventure-gold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/logo.png b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/logo.png new file mode 100644 index 000000000000..7651d7bba1d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/logo.png differ diff --git a/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/info.json b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/info.json new file mode 100644 index 000000000000..d1a683d1eb40 --- /dev/null +++ b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/info.json @@ -0,0 +1,47 @@ +{ + "name": "Bad Idea AI", + "type": "ERC20", + "symbol": "BAD", + "decimals": 18, + "website": "https://www.badidea.ai", + "description": "$BAD is a decentralized experiment combining Blockchain, AI, and DAOs. Aiming to ensure AI works for humanity, it's a risky yet innovative approach. Created for education, entertainment, and experimentation, it represents a unique response to AI's growing influence.", + "explorer": "https://etherscan.io/token/0x32b86b99441480a7e5bd3a26c124ec2373e3f015", + "status": "active", + "id": "0x32b86b99441480a7E5BD3A26c124ec2373e3F015", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/badideaai" + }, + { + "name": "source_code", + "url": "https://gitlab.com/badideacoin/badideai/-/blob/main/Badideai" + }, + { + "name": "discord", + "url": "https://discord.com/invite/badideaai" + }, + { + "name": "whitepaper", + "url": "https://static1.squarespace.com/static/64568e2523471d05956228f1/t/64570517d89163351580ef5c/1683424539459/BAD+IDEA+AI+WHITEPAPER+v1.0.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bad-idea-ai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bad-idea-ai/" + }, + { + "name": "telegram", + "url": "https://t.me/badideaai" + } + ], + "tags": [ + "governance", + "memes", + "deflationary", + "staking" + ] +} diff --git a/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/logo.png b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/logo.png new file mode 100644 index 000000000000..afcd7c796124 Binary files /dev/null and b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/logo.png differ diff --git a/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json b/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json index c384d0616b9b..ba94351537ca 100644 --- a/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json +++ b/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json @@ -4,11 +4,31 @@ "symbol": "AKITA", "decimals": 18, "website": "https://akita.network", - "description": "AKITA INU 秋田犬 is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik Buterin and the other half were locked to a Uniswap pool and the keys burned. It is same as SHIBA INU but with different tokenmetrics.", - "explorer": "https://etherscan.io/token/0x3301ee63fb29f863f2333bd4466acb46cd8323e6", + "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/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/info.json b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/info.json new file mode 100644 index 000000000000..c8470458c813 --- /dev/null +++ b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/info.json @@ -0,0 +1,32 @@ +{ + "name": "ElmoERC", + "symbol": "ELMO", + "type": "ERC20", + "decimals": 18, + "description": "ELMOERC is all about the things we love about meme, burn and earn! We reward our long-term diamond holders through massive burns paid by the sellers through tax. we have a combined experience of over 15 years in the Memespace.", + "website": "https://www.elmoerc.io/", + "explorer": "https://etherscan.io/token/0x335f4e66b9b61cee5ceade4e727fcec20156b2f0", + "status": "active", + "id": "0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/RealElmoERC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elmoerc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/elmoerc" + }, + { + "name": "telegram", + "url": "https://t.me/RealElmoERC" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/logo.png b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/logo.png new file mode 100644 index 000000000000..a8a733267a8d Binary files /dev/null and b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/logo.png differ diff --git a/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/info.json b/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/info.json new file mode 100644 index 000000000000..1072357d22b8 --- /dev/null +++ b/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/info.json @@ -0,0 +1,25 @@ +{ + "name": "Gorilla", + "type": "ERC20", + "symbol": "GORILLA", + "decimals": 9, + "website": "https://gorillatoken.io/", + "description": "$GORILLA, a meme token poised to revolutionize the crypto landscape by combining viral appeal with substantial utility, creating an investment opportunity that transcends traditional meme tokens.", + "explorer": "https://etherscan.io/token/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0", + "status": "active", + "id": "0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/gorillatokenio" + }, + { + "name": "telegram", + "url": "https://t.me/gorillatokenio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gorilla-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/logo.png b/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/logo.png new file mode 100644 index 000000000000..21e38dbc619b Binary files /dev/null and b/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/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/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/info.json b/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/info.json new file mode 100644 index 000000000000..b3bc9a2996d5 --- /dev/null +++ b/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/info.json @@ -0,0 +1,21 @@ +{ + "name": "PIXEL", + "type": "ERC20", + "symbol": "PIXEL", + "decimals": 18, + "website": "https://www.pixels.xyz/", + "description": "Pixels (PIXEL) is a social casual web3 game powered by the Ronin Network, It involves a mesmerizing open-world game that revolves around farming, exploration, and creation.", + "explorer": "https://etherscan.io/token/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31", + "status": "active", + "id": "0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/pixels_online" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pixels/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/logo.png b/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/logo.png new file mode 100644 index 000000000000..1b74f8438e14 Binary files /dev/null and b/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/logo.png differ diff --git a/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/info.json b/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/info.json index d3b8c57fc244..79f626a88c2b 100644 --- a/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/info.json +++ b/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/info.json @@ -1,5 +1,5 @@ { - "name": "MANTRA DAO", + "name": "MANTRA", "website": "http://mantradao.com", "description": "MANTRA DAO leverages the wisdom of the crowd to create a community-governed, transparent, and decentralized ecosystem for Web 3.0", "explorer": "https://etherscan.io/token/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d", diff --git a/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png b/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png index 2a061ac5484a..e879c18c6349 100644 Binary files a/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png and b/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png differ diff --git a/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json b/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json index c9aecb96a527..782e72d49939 100644 --- a/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json +++ b/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json @@ -6,6 +6,6 @@ "website": "", "description": "-", "explorer": "https://etherscan.io/token/0x3883f5e181fccaf8410fa61e12b59bad963fb645", - "status": "active", + "status": "abandoned", "id": "0x3883f5e181fccaF8410FA61e12b59BAd963fb645" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/logo.png b/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/logo.png deleted file mode 100644 index 4c6687735e29..000000000000 Binary files a/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json b/blockchains/ethereum/assets/0x389999216860AB8E0175387A0c90E5c52522C945/info.json index 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/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json b/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json new file mode 100644 index 000000000000..024d168f7c53 --- /dev/null +++ b/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json @@ -0,0 +1,41 @@ +{ + "name": "MUBI", + "symbol": "MUBI", + "type": "ERC20", + "decimals": 18, + "website": "https://multibit.exchange/", + "description": "MultiBit is the first-ever dual-sided bridge designed for easy cross-network transfers between BRC20 and ERC20 tokens.", + "explorer": "https://etherscan.io/token/0x38e382f74dfb84608f3c1f10187f6bef5951de93", + "status": "active", + "id": "0x38e382F74dfb84608F3C1F10187f6bEf5951DE93", + "links": [ + { + "name": "github", + "url": "https://github.com/multibit-repo" + }, + { + "name": "twitter", + "url": "https://twitter.com/Multibit_Bridge" + }, + { + "name": "telegram", + "url": "https://t.me/multibitprotocol" + }, + { + "name": "medium", + "url": "https://medium.com/@Multibit_Bridge" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multibit/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/multibit" + } + ], + "tags": [ + "wrapped", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/logo.png b/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/logo.png new file mode 100644 index 000000000000..9fa7dad0ee02 Binary files /dev/null and b/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/logo.png differ diff --git a/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/info.json b/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/info.json new file mode 100644 index 000000000000..66015b98175a --- /dev/null +++ b/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/info.json @@ -0,0 +1,46 @@ +{ + "name": "Dypius", + "type": "ERC20", + "symbol": "DYP", + "decimals": 18, + "website": "https://www.dypius.com/", + "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", + "explorer": "https://etherscan.io/token/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3", + "status": "active", + "id": "0x39b46B212bDF15b42B166779b9d1787A68b9D0c3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dypius" + }, + { + "name": "github", + "url": "https://github.com/dypfinance/" + }, + { + "name": "medium", + "url": "https://dypius.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defi-yield-protocol-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dypius" + }, + { + "name": "discord", + "url": "https://discord.com/invite/worldofdypians" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/drive/folders/1PprliiDlNB6Cx-35eaEun-gmjk0-a1O4" + } + ], + "tags": [ + "governance", + "nft", + "defi" + ] +} diff --git a/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/logo.png b/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/logo.png new file mode 100644 index 000000000000..b86b0fca332a Binary files /dev/null and b/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/logo.png 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/0x3B604747ad1720C01ded0455728b62c0d2F100F0/info.json b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/info.json new file mode 100644 index 000000000000..c384b4797186 --- /dev/null +++ b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/info.json @@ -0,0 +1,25 @@ +{ + "name": "WAGMI GAMES", + "type": "ERC20", + "symbol": "WAGMIGAMES", + "decimals": 18, + "website": "https://www.wagmigame.io/", + "description": "WAGMI Defense is being developed as the Clash Royale of crypto with a futuristic twist. This epic aliens versus humans game is being built on unity as a browser based, mobile responsive game with plans to launch on IOS and Apple Store when it becomes crypto accepted.", + "explorer": "https://etherscan.io/token/0x3b604747ad1720c01ded0455728b62c0d2f100f0", + "status": "active", + "id": "0x3B604747ad1720C01ded0455728b62c0d2F100F0", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WAGMIOfficialGroup" + }, + { + "name": "twitter", + "url": "https://twitter.com/wagmigameco" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wagmi-game-2/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/logo.png b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/logo.png new file mode 100644 index 000000000000..53ef7ec341ee Binary files /dev/null and b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/logo.png differ diff --git a/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/info.json b/blockchains/ethereum/assets/0x3D382228C54736d831FAC2748F4734D9177c7332/info.json new file mode 100644 index 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/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/info.json b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/info.json new file mode 100644 index 000000000000..45fa8b91ba31 --- /dev/null +++ b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mantle", + "type": "ERC20", + "symbol": "MNT", + "decimals": 18, + "website": "https://www.mantle.xyz/", + "description": "Mantle is a DAO-led web3 ecosystem whose goal is the mass adoption of decentralized and token-governed technologies. It comprises Mantle products such as Mantle Network, Mantle Governance (DAO), and Mantle Treasury. Mantle token ($MNT) is the unified product and governance token of the ecosystem.", + "explorer": "https://etherscan.io/token/0x3c3a81e81dc49a522a592e7622a7e711c06bf354", + "status": "active", + "id": "0x3c3a81e81dc49A522A592e7622A7E711c06bf354", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/0xMantle" + }, + { + "name": "telegram", + "url": "https://t.me/mantlenetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/logo.png b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/logo.png new file mode 100644 index 000000000000..d9721da402f6 Binary files /dev/null and b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/logo.png differ diff --git a/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/info.json b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/info.json new file mode 100644 index 000000000000..992bb23a5f91 --- /dev/null +++ b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Gho", + "website": "https://gho.xyz/", + "description": "GHO is a native decentralized, overcollateralized digital asset pegged to USD.", + "explorer": "https://etherscan.io/token/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f", + "type": "ERC20", + "symbol": "GHO", + "decimals": 18, + "status": "active", + "id": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GHOAave" + }, + { + "name": "github", + "url": "https://github.com/aave/gho-core/" + } + ] +} diff --git a/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/logo.png b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/logo.png new file mode 100644 index 000000000000..ff0877b424ba Binary files /dev/null and b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/logo.png differ diff --git a/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/info.json b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/info.json new file mode 100644 index 000000000000..369c60409f8b --- /dev/null +++ b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/info.json @@ -0,0 +1,52 @@ +{ + "name": "HELLO", + "type": "ERC20", + "symbol": "HELLO", + "decimals": 18, + "website": "https://www.hello.one/", + "description": "HELLO Labs is the future of crypto and entertainment creating TV shows, games, NFTs and much more. The ecosystem is built on the HELLO Token allowing exclusive access to watch our shows, play our games and own our NFTs.", + "explorer": "https://etherscan.io/token/0x411099C0b413f4fedDb10Edf6a8be63BD321311C", + "status": "active", + "id": "0x411099C0b413f4fedDb10Edf6a8be63BD321311C", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/thehellolabs" + }, + { + "name": "github", + "url": "https://github.com/Hello1Official" + }, + { + "name": "telegram", + "url": "https://t.me/HELLOLabs" + }, + { + "name": "blog", + "url": "https://www.hello.one/news" + }, + { + "name": "discord", + "url": "https://discord.com/hellolabs" + }, + { + "name": "medium", + "url": "https://helloclub.medium.com" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/HELLOLabs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hello-labs/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hello" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/logo.png b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/logo.png new file mode 100644 index 000000000000..fedfcf6cb027 Binary files /dev/null and b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/logo.png differ diff --git a/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/info.json b/blockchains/ethereum/assets/0x41545f8b9472D758bB669ed8EaEEEcD7a9C4Ec29/info.json new file mode 100644 index 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/0x415ff1afc201EeC50BeFF210a2F456674046920b/info.json b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/info.json new file mode 100644 index 000000000000..7045ac6bfd1e --- /dev/null +++ b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/info.json @@ -0,0 +1,25 @@ +{ + "name": "Refund", + "website": "https://refundcoin.fund/", + "description": "Refund is an exciting new crypto project that has recently made its debut on the Ethereum blockchain, poised to ignite another explosion in the ever-evolving world of cryptocurrencies.", + "explorer": "https://etherscan.io/token/0x415ff1afc201EeC50BeFF210a2F456674046920b", + "type": "ERC20", + "symbol": "REFUND", + "decimals": 18, + "status": "active", + "id": "0x415ff1afc201EeC50BeFF210a2F456674046920b", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/refundcoin/" + }, + { + "name": "twitter", + "url": "https://twitter.com/RefundCoinErc20" + }, + { + "name": "telegram", + "url": "https://t.me/RefundErc20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/logo.png b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/logo.png new file mode 100644 index 000000000000..037c1f4fba98 Binary files /dev/null and b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/logo.png differ diff --git a/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json new file mode 100644 index 000000000000..c2dcf43681c5 --- /dev/null +++ b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json @@ -0,0 +1,21 @@ +{ + "name": "FantasyGold", + "website": "https://fantasygold.co/cgi-sys/suspendedpage.cgi", + "description": "FantasyGold was built to become a multi-purpose platform offering Ethereum Virtual Machine based smart contracts and lightning fast transactions.", + "explorer": "https://etherscan.io/token/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "type": "ERC20", + "symbol": "FGC", + "decimals": 18, + "status": "active", + "id": "0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/fantasygoldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantasygold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png new file mode 100644 index 000000000000..6876a666683e Binary files /dev/null and b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png differ diff --git a/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json b/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json index 465d4f98cdc5..e1a1b619765a 100644 --- a/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json +++ b/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json @@ -7,5 +7,19 @@ "symbol": "LOOM", "decimals": 18, "status": "active", - "id": "0x42476F744292107e34519F9c357927074Ea3F75D" + "id": "0x42476F744292107e34519F9c357927074Ea3F75D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/loomnetwork" + }, + { + "name": "twitter", + "url": "https://twitter.com/loomnetwork" + }, + { + "name": "github", + "url": "https://github.com/loomnetwork" + } + ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json b/blockchains/ethereum/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json new file mode 100644 index 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/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/info.json b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/info.json new file mode 100644 index 000000000000..c17fb3110e63 --- /dev/null +++ b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/info.json @@ -0,0 +1,25 @@ +{ + "name": "Shiba Saga", + "type": "ERC20", + "symbol": "SHIA", + "decimals": 18, + "website": "https://www.shibasaga.com/", + "description": "Unveil Shiba Saga: Where gaming meets blockchain magic. Earn SHIA tokens while playing, redeem for rewards, trade on exchanges, and participate in social impact initiatives. Level up your gaming experience with us!", + "explorer": "https://etherscan.io/token/0x43d7e65b8ff49698d9550a7f315c87e67344fb59", + "status": "active", + "id": "0x43D7E65B8fF49698D9550a7F315c87E67344FB59", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ShibaSaga" + }, + { + "name": "twitter", + "url": "https://twitter.com/shibasagaio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-saga/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/logo.png b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/logo.png new file mode 100644 index 000000000000..337b74854f20 Binary files /dev/null and b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/logo.png differ diff --git a/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/logo.png b/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/logo.png deleted file mode 100644 index 52a97499126e..000000000000 Binary files a/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/info.json b/blockchains/ethereum/assets/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/info.json new file mode 100644 index 000000000000..aaf6119588b6 --- /dev/null +++ b/blockchains/ethereum/assets/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/info.json @@ -0,0 +1,30 @@ +{ + "name": "Travala.com", + "website": "https://travala.com", + "description": "Travala.com claims to be the leading blockchain-based travel booking platform.", + "explorer": "https://etherscan.io/token/0x442b153f6f61c0c99a33aa4170dcb31e1abda1d0", + "research": "https://research.binance.com/en/projects/travala", + "type": "ERC20", + "symbol": "AVA", + "decimals": 18, + "status": "abandoned", + "id": "0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/travalacom" + }, + { + "name": "github", + "url": "https://github.com/travala" + }, + { + "name": "telegram", + "url": "https://t.me/travala" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/travala/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/info.json b/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/info.json new file mode 100644 index 000000000000..06df8d5c41e7 --- /dev/null +++ b/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/info.json @@ -0,0 +1,17 @@ +{ + "name": "TokenFi", + "website": "https://tokenfi.com", + "description": "TokenFi is the ultimate platform for crypto and asset tokenization. Our aim is to make tokenization seamless and easy for the masses!.", + "explorer": "https://etherscan.io/token/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528", + "symbol": "TOKEN", + "type": "ERC20", + "decimals": 9, + "status": "active", + "id": "0x4507cEf57C46789eF8d1a19EA45f4216bae2B528", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/tokenfi" + } + ] +} diff --git a/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png b/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png new file mode 100644 index 000000000000..69737a2c9591 Binary files /dev/null and b/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/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/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/info.json b/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/info.json index 01067ee5e4e8..4c72b1c68d36 100644 --- a/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/info.json +++ b/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/info.json @@ -3,39 +3,23 @@ "symbol": "FOUR", "type": "ERC20", "decimals": 18, - "description": "FOUR is 4thTech ecosystem utility token used as the primary means to enable services such as data file and instant messages wallet to wallet exchange.", - "website": "https://4thtech.io/", + "description": "FOUR token is a technical and incentive component dedicated to; (1) RTA (i.e. right-to-access), and; (2) MTO (i.e. multiple-transfer option) models in the ecosystem of Web3 communication.", + "website": "https://the4thpillar.io/", "explorer": "https://etherscan.io/token/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0", "status": "active", "id": "0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0", "links": [ { "name": "twitter", - "url": "https://twitter.com/4thtechProject" + "url": "https://twitter.com/4pfour" }, { "name": "coingecko", "url": "https://coingecko.com/en/coins/the-4th-pillar" - }, - { - "name": "medium", - "url": "https://medium.com/the4thpillar" - }, - { - "name": "telegram", - "url": "https://t.me/the4thpillarofficial" - }, - { - "name": "youtube", - "url": "https://youtube.com/c/4thpillartechnologies" - }, - { - "name": "whitepaper", - "url": "https://github.com/4thtech/static-assets/raw/main/pdf/whitepaper.pdf" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/4thpillar-technologies/" } + ], + "tags": [ + "governance", + "staking" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/logo.png b/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/logo.png index 7acec2d200f0..b0d3e287349f 100644 Binary files a/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/logo.png and b/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json b/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json index 48ec3dd6c970..37828e16f323 100644 --- a/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json +++ b/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json @@ -6,6 +6,6 @@ "website": "https://tether.to/", "description": "Each XAU₮ token represents ownership of one troy fine ounce of physical gold on a specific gold bar. Furthermore, Tether Gold (XAU₮) is the only product among the competition that offers zero custody fees and has direct control over the physical gold storage.", "explorer": "https://etherscan.io/token/0x4922a015c4407F87432B179bb209e125432E4a2A", - "status": "active", + "status": "abandoned", "id": "0x4922a015c4407F87432B179bb209e125432E4a2A" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json new file mode 100644 index 000000000000..47c421d87b16 --- /dev/null +++ b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json @@ -0,0 +1,32 @@ +{ + "name": "DinoLFG (DINO)", + "type": "ERC20", + "symbol": "DINO", + "decimals": 18, + "website": "https://dinolfg.com", + "description": "$DINO - Building Bridges Between Crypto, Games, and Financial Adventure!", + "explorer": "https://etherscan.io/token/0x49642110B712C1FD7261Bc074105E9E44676c68F", + "status": "active", + "id": "0x49642110B712C1FD7261Bc074105E9E44676c68F", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DinoLFG" + }, + { + "name": "telegram", + "url": "https://t.me/OfficialDinoLFG" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dinolfg" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/dinolfg" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png new file mode 100644 index 000000000000..db3c7b86943a Binary files /dev/null and b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/info.json b/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/info.json new file mode 100644 index 000000000000..ed9d06e34712 --- /dev/null +++ b/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/info.json @@ -0,0 +1,21 @@ +{ + "name": "Jungle", + "type": "ERC20", + "symbol": "JNGL", + "decimals": 18, + "website": "https://jnglcoin.com/", + "description": "$JNGL powers the Jungle Labz ecosystem, consisting of Supreme Kong and 3 other collections that were initially rugged by previous team back in April 2022.", + "explorer": "https://etherscan.io/token/0x4c45bbec2ff7810ef4a77ad7bd4757c446fe4155", + "status": "active", + "id": "0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jungle-labz/" + }, + { + "name": "twitter", + "url": "https://twitter.com/jnglcoin" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/logo.png b/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/logo.png new file mode 100644 index 000000000000..e84ba5bf1ff6 Binary files /dev/null and b/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/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/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/info.json b/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/info.json new file mode 100644 index 000000000000..651e202ae90b --- /dev/null +++ b/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/info.json @@ -0,0 +1,33 @@ +{ + "name": "TRON", + "type": "ERC20", + "symbol": "TRX", + "decimals": 6, + "website": "https://tron.network/", + "description": "TRON is a dedicated to build the infrastructure for a truly decentralized Internet.", + "explorer": "https://etherscan.io/token/0x50327c6c5a14dcade707abad2e27eb517df87ab5", + "status": "active", + "id": "0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Tronfoundation" + }, + { + "name": "telegram", + "url": "https://t.me/tronnetworkEN" + }, + { + "name": "whitepaper", + "url": "https://tron.network/static/doc/white_paper_v_2_0.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tron/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tron/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B/logo.png b/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x85EAC5Ac2F758618dFa09bDbe0cf174e7d574D5B/logo.png rename to blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/logo.png diff --git a/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json b/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json index 8d3adabe6dfb..c05e86d54537 100644 --- a/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json +++ b/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json @@ -6,7 +6,7 @@ "website": "https://www.vlaunch.com", "description": "First Fully Influencer-Backed Multi-Chain Launchpad", "explorer": "https://etherscan.io/token/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc", - "status": "active", + "status": "abandoned", "id": "0x51FE2E572e97BFEB1D719809d743Ec2675924EDc", "links": [ { diff --git a/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/logo.png b/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/logo.png deleted file mode 100644 index 62b8c4918469..000000000000 Binary files a/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/logo.png and /dev/null 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/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json b/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json new file mode 100644 index 000000000000..db918c385fe8 --- /dev/null +++ b/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json @@ -0,0 +1,25 @@ +{ + "name": "SeedifyFund", + "type": "ERC20", + "symbol": "SFUND", + "decimals": 18, + "website": "https://seedify.fund", + "description": "A Blockchain Innovation Ecosystem, with a Seed Stage Fund, Decentralized Incubator, and Launchpad", + "explorer": "https://etherscan.io/token/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60", + "status": "active", + "id": "0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/seedifyfund" + }, + { + "name": "telegram", + "url": "https://t.me/seedifyfundofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/seedify-fund/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/logo.png b/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/logo.png new file mode 100644 index 000000000000..149d2563079d Binary files /dev/null and b/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/logo.png differ diff --git a/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/info.json b/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/info.json new file mode 100644 index 000000000000..2bf1201c590e --- /dev/null +++ b/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/info.json @@ -0,0 +1,25 @@ +{ + "name": "MAGA", + "website": "https://magamemecoin.com/", + "description": "Maga is a deflationary meme coin launched on Ethereum. Cryptocurrency was created as a tribute to the trump the Maga.", + "explorer": "https://etherscan.io/token/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7", + "type": "ERC20", + "symbol": "TRUMP", + "decimals": 9, + "status": "active", + "id": "0x576e2BeD8F7b46D34016198911Cdf9886f78bea7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MAGAMemecoin" + }, + { + "name": "telegram", + "url": "https://t.me/MAGAMemecoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maga/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/logo.png b/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/logo.png new file mode 100644 index 000000000000..4d1fc39fdc6c Binary files /dev/null and b/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/logo.png differ diff --git a/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/info.json b/blockchains/ethereum/assets/0x579CEa1889991f68aCc35Ff5c3dd0621fF29b0C9/info.json 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..16737cbff2a6 --- /dev/null +++ b/blockchains/ethereum/assets/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3/info.json @@ -0,0 +1,21 @@ +{ + "name": "SCAM", + "website": "http://scamcoin.io", + "description": "SCAM is a revolutionary much needed movement in the blockchain industry. We aim to expose fraudulent behavior and raise awareness of scamming activities.", + "explorer": "https://etherscan.io/token/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3", + "type": "ERC20", + "symbol": "SCAM", + "decimals": 18, + "status": "abandoned", + "id": "0x590f00eDc668D5af987c6076c7302C42B6FE9DD3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/scamcoin_eth" + }, + { + "name": "telegram", + "url": "https://t.me/SCAMCOIN_ETH" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/info.json b/blockchains/ethereum/assets/0x5919DeA604631016c15c805e3D948A0384879892/info.json new file mode 100644 index 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..d6a82c33aede 100644 --- a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json +++ b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json @@ -3,31 +3,26 @@ "symbol": "OS", "type": "ERC20", "decimals": 18, - "description": "Governance token of the EthOS (Ethereans Operating System) organization. The EthOS is a layer for building any kind of application on Ethereum, powered by extendable factories for DeFi, NFTs and on-chain governance.", - "website": "https://ethos.eth.link/", + "description": "Governance Token of EthereansOS (EthOS) protocol. More info: https://ethos.eth", + "website": "https://ethereans.app", "explorer": "https://etherscan.io/token/0x6100dd79fCAA88420750DceE3F735d168aBcB771", "status": "active", "id": "0x6100dd79fCAA88420750DceE3F735d168aBcB771", + "tags": [ + "governance" + ], "links": [ - { - "name": "github", - "url": "https://github.com/ethereansos" - }, { "name": "twitter", - "url": "https://twitter.com/ethereansos" + "url": "https://twitter.com/ethereansOS" }, { "name": "discord", - "url": "https://discord.com/nHZ2bUd" - }, - { - "name": "medium", - "url": "https://medium.com/ethereansos" + "url": "https://discord.com/invite/ncbK6nYdFU" }, { "name": "youtube", - "url": "https://youtube.com/channel/UCeC1Qr2i-t4x4RGO0MwkIDQ" + "url": "https://youtube.com/@EthereansOS" } ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png index ae490a1e927c..86ffb8db7a51 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/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json b/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json new file mode 100644 index 000000000000..b3e88c342ebd --- /dev/null +++ b/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json @@ -0,0 +1,64 @@ +{ + "name": "Beam", + "type": "ERC20", + "symbol": "BEAM", + "decimals": 18, + "website": "https://meritcircle.io/", + "description": "Beam is a sovereign network focused on gaming brought to you by the Merit Circle DAO.", + "explorer": "https://etherscan.io/token/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE", + "status": "active", + "id": "0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/buildonbeam" + }, + { + "name": "github", + "url": "https://github.com/Merit-Circle" + }, + { + "name": "telegram", + "url": "https://t.me/meritcircle" + }, + { + "name": "telegram_news", + "url": "https://t.me/meritcircle_ann" + }, + { + "name": "docs", + "url": "https://docs.onbeam.com" + }, + { + "name": "blog", + "url": "https://medium.com/@meritcircle" + }, + { + "name": "forum", + "url": "https://gov.meritcircle.io/" + }, + { + "name": "medium", + "url": "https://medium.com/@meritcircle" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/beam-2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/onbeam/" + }, + { + "name": "whitepaper", + "url": "https://meritcircle.gitbook.io/merit-circle/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/meritcircle" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/logo.png b/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/logo.png new file mode 100644 index 000000000000..df55519f7a2d Binary files /dev/null and b/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/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/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/info.json b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/info.json new file mode 100644 index 000000000000..a69822bf8942 --- /dev/null +++ b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/info.json @@ -0,0 +1,25 @@ +{ + "name": "Big Time", + "website": "https://bigtime.gg/", + "description": "The $BIGTIME Token is the main cryptocurrency that drives Big Time’s in-game economy. $BIGTIME randomly drops in-game by playing with at least one charged Hourglass equipped.", + "explorer": "https://etherscan.io/token/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194", + "type": "ERC20", + "symbol": "BIGTIME", + "decimals": 18, + "status": "active", + "id": "0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/big-time/" + }, + { + "name": "twitter", + "url": "https://twitter.com/playbigtime" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/big-time/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/logo.png b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/logo.png new file mode 100644 index 000000000000..2b3a70086c73 Binary files /dev/null and b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/logo.png differ diff --git a/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/info.json b/blockchains/ethereum/assets/0x65Ef703f5594D2573eb71Aaf55BC0CB548492df4/info.json new file mode 100644 index 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/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/info.json b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/info.json new file mode 100644 index 000000000000..9654264451a2 --- /dev/null +++ b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/info.json @@ -0,0 +1,28 @@ +{ + "name": "Wrapped Pocket (wPOKT)", + "type": "ERC20", + "symbol": "wPOKT", + "decimals": 6, + "website": "https://www.pokt.network", + "description": "Reliable, performant, and cost-effective RPC infrastructure that is owned and governed by its users. Unstoppable Open Data, powered by decentralization.", + "explorer": "https://etherscan.io/token/0x67F4C72a50f8Df6487720261E188F2abE83F57D7", + "status": "active", + "id": "0x67F4C72a50f8Df6487720261E188F2abE83F57D7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/POKTnetwork" + }, + { + "name": "github", + "url": "https://github.com/pokt-network" + }, + { + "name": "forum", + "url": "https://forum.pokt.network/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/logo.png b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/logo.png new file mode 100644 index 000000000000..5c1ecf3df85b Binary files /dev/null and b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/logo.png differ diff --git a/blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/info.json b/blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/info.json new file mode 100644 index 000000000000..f1518b7f3a2c --- /dev/null +++ b/blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tether Gold", + "type": "ERC20", + "symbol": "XAUt", + "decimals": 6, + "website": "https://gold.tether.to/", + "description": "Each XAU₮ token represents ownership of one troy fine ounce of physical gold on a specific gold bar. Furthermore, Tether Gold (XAU₮) is the only product among the competition that offers zero custody fees and has direct control over the physical gold storage.", + "explorer": "https://etherscan.io/token/0x68749665FF8D2d112Fa859AA293F07A622782F38", + "status": "active", + "id": "0x68749665FF8D2d112Fa859AA293F07A622782F38", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/tethergold/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether-gold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/logo.png b/blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/logo.png similarity index 100% rename from blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/logo.png rename to blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/logo.png diff --git a/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/info.json b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/info.json new file mode 100644 index 000000000000..75823d452be3 --- /dev/null +++ b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/info.json @@ -0,0 +1,25 @@ +{ + "name": "Tectum Emission Token", + "website": "https://softnote.com/", + "description": "Tectum is the Worlds Fastest Layer 1 Blockchain functioning at 1.3 million tps with instant immutability. The Softnote is its Layer 2 solution that makes Bitcoin and other cryptocurrencies instant, free and boundless.", + "explorer": "https://etherscan.io/token/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a", + "type": "ERC20", + "symbol": "TET", + "decimals": 8, + "status": "active", + "id": "0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/tectumsocial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tectum/" + }, + { + "name": "telegram", + "url": "https://t.me/tectumglobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/logo.png b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/logo.png new file mode 100644 index 000000000000..b58cc8e660fc Binary files /dev/null and b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/logo.png differ diff --git a/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/info.json b/blockchains/ethereum/assets/0x6982508145454Ce325dDbE47a25d4ec3d2311933/info.json new file mode 100644 index 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/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/info.json b/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/info.json index 6396dd4fb7ed..9232d09307cb 100644 --- a/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/info.json +++ b/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "POOLZ", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23", "links": [ { diff --git a/blockchains/ethereum/assets/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98/info.json b/blockchains/ethereum/assets/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98/info.json new file mode 100644 index 000000000000..b935f2f48067 --- /dev/null +++ b/blockchains/ethereum/assets/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98/info.json @@ -0,0 +1,21 @@ +{ + "name": "OpSec", + "type": "ERC20", + "symbol": "OPSEC", + "decimals": 18, + "website": "https://opsec.software/", + "description": "OpSec, Cloud security with decentralized servers, private networks, RDPs, GPUs, One-Click Setup Nodes, DePIN hardware – shaping security-oriented future.", + "explorer": "https://etherscan.io/token/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98", + "status": "active", + "id": "0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/OpSecCloud" + }, + { + "name": "telegram", + "url": "https://t.me/opseccloud" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98/logo.png b/blockchains/ethereum/assets/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98/logo.png new file mode 100644 index 000000000000..05b66f4fac54 Binary files /dev/null and b/blockchains/ethereum/assets/0x6A7eFF1e2c355AD6eb91BEbB5ded49257F3FED98/logo.png differ diff --git a/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/info.json b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/info.json new file mode 100644 index 000000000000..26e79b996466 --- /dev/null +++ b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/info.json @@ -0,0 +1,24 @@ +{ + "name": "McPepes", + "website": "https://mcpepes.com/", + "description": "McPepe’s is the infinite Pepe image generator. Generated images are available as NFTs on Ethereum or can be inscribed as Ordinals on Bitcoin. $PEPES incentivizes the generation of the highest quality Pepes possible and manages the resource constraints of generating millions of Pepes per day.", + "explorer": "https://etherscan.io/token/0x6bf765c43030387a983f429c1438e9d2025b7e12", + "type": "ERC20", + "symbol": "PEPES", + "decimals": 18, + "status": "active", + "id": "0x6BF765C43030387a983f429c1438e9D2025B7E12", + "tags": [ + "memes" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/McPepes_AI" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mcpepe-s/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/logo.png b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/logo.png new file mode 100644 index 000000000000..da782d14c8ab Binary files /dev/null and b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/info.json b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/info.json new file mode 100644 index 000000000000..0d4acbd7e7ce --- /dev/null +++ b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/info.json @@ -0,0 +1,25 @@ +{ + "name": "SnailBrook", + "website": "https://www.snailbrook.ai/", + "description": "SnailBrook (SNAIL) is a decentralized utopian cryptocurrency project that aims to unite various meme coin communities under a single, inclusive platform. By fostering equal opportunity and collaborative growth, SNAIL seeks to create a utopia for all meme coin enthusiasts and investors.", + "explorer": "https://etherscan.io/token/0x6bc40d4099f9057b23af309c08d935b890d7adc0", + "type": "ERC20", + "symbol": "SNAIL", + "decimals": 18, + "status": "active", + "id": "0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SnailBrookAI" + }, + { + "name": "telegram", + "url": "https://t.me/Snailbrook_Entry" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snailbrook/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/logo.png b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/logo.png new file mode 100644 index 000000000000..bd6830350358 Binary files /dev/null and b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/logo.png differ diff --git a/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/info.json b/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/info.json new file mode 100644 index 000000000000..463b85154ba7 --- /dev/null +++ b/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/info.json @@ -0,0 +1,25 @@ +{ + "name": "Spyro", + "symbol": "SPYRO", + "type": "ERC20", + "decimals": 18, + "description": "Spyro is the most memeable meme dragon in existence, deployed on the ERC20 network in the year of the Dragon.", + "website": "https://spyro.vip/", + "explorer": "https://etherscan.io/token/0x6d7497751656618fc38cfb5478994a20f7e235df", + "status": "active", + "id": "0x6D7497751656618Fc38CfB5478994a20F7E235df", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/spyrocoineth?s=21" + }, + { + "name": "telegram", + "url": "https://t.me/Spyro_Portal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spyro/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/logo.png b/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/logo.png new file mode 100644 index 000000000000..0f7ec388c9b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/logo.png differ diff --git a/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/info.json b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/info.json new file mode 100644 index 000000000000..e3a3e0cb2f69 --- /dev/null +++ b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/info.json @@ -0,0 +1,25 @@ +{ + "name": "Arkham", + "type": "ERC20", + "symbol": "ARKM", + "decimals": 18, + "website": "https://www.arkhamintelligence.com/", + "description": "ARKM is an intel-to-earn and incentive system that help to balance the token economy, with ARKM entering circulation via intel-to-earn payments and ARKM rewards, and cycling out of circulation via pay-in-ARKM platform purchases and exchange fees.", + "explorer": "https://etherscan.io/token/0x6e2a43be0b1d33b726f0ca3b8de60b3482b8b050", + "status": "active", + "id": "0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/arkhamintel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arkham/" + }, + { + "name": "telegram", + "url": "https://t.me/arkhamintelligence" + } + ] +} diff --git a/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/logo.png b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/logo.png new file mode 100644 index 000000000000..0abe387bb7fe Binary files /dev/null and b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/logo.png differ diff --git a/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/info.json b/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/info.json index 95bb74c7bbb7..95e16240fe76 100644 --- a/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/info.json +++ b/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "QUICK", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x6c28AeF8977c9B773996d0e8376d2EE379446F2f", "links": [ { 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/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/info.json b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/info.json new file mode 100644 index 000000000000..94c48aef5139 --- /dev/null +++ b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/info.json @@ -0,0 +1,29 @@ +{ + "name": "Shido", + "symbol": "SHIDO", + "type": "ERC20", + "decimals": 18, + "description": "Shido is an infinitely scalable Layer 1 in the interoperable Cosmos, powered by Tendermint Consensus, EVM and WebAssembly.", + "website": "https://shido.io/", + "explorer": "https://etherscan.io/token/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed", + "status": "active", + "id": "0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ShidoGlobal" + }, + { + "name": "github", + "url": "https://github.com/ShidoGlobal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shido-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shido-2/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/logo.png b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/logo.png new file mode 100644 index 000000000000..c01f437dcf42 Binary files /dev/null and b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/logo.png differ diff --git a/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/info.json b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/info.json new file mode 100644 index 000000000000..1e50554b5e4b --- /dev/null +++ b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Maverick Token", + "website": "https://www.mav.xyz/", + "description": "Maverick Protocol offers a new infrastructure for decentralized finance, built to facilitate the most liquid markets for traders, liquidity providers, DAO treasuries, and developers, powered by a revolutionary Dynamic Distribution Automated Market Maker (AMM).", + "explorer": "https://etherscan.io/token/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD", + "type": "ERC20", + "symbol": "MAV", + "decimals": 18, + "status": "active", + "id": "0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/mavprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/maverickprotocolofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maverick-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/logo.png b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/logo.png new file mode 100644 index 000000000000..f21e40bef227 Binary files /dev/null and b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/logo.png differ diff --git a/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/info.json b/blockchains/ethereum/assets/0x745407c86DF8DB893011912d3aB28e68B62E49B0/info.json new file mode 100644 index 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/0x766a824314BD1D9FA27C8461754C276772BC666A/info.json b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/info.json new file mode 100644 index 000000000000..ca5d9e1ff6f7 --- /dev/null +++ b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/info.json @@ -0,0 +1,21 @@ +{ + "name": "SCAM", + "website": "http://scamcoin.io", + "description": "SCAM is a revolutionary much needed movement in the blockchain industry. We aim to expose fraudulent behavior and raise awareness of scamming activities.", + "explorer": "https://etherscan.io/token/0x766a824314BD1D9FA27C8461754C276772BC666A", + "type": "ERC20", + "symbol": "SCAM", + "decimals": 18, + "status": "active", + "id": "0x766a824314BD1D9FA27C8461754C276772BC666A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/scamcoin_eth" + }, + { + "name": "telegram", + "url": "https://t.me/SCAMCOIN_ETH" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/logo.png b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/logo.png new file mode 100644 index 000000000000..3599f8faa7e4 Binary files /dev/null and b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/logo.png differ diff --git a/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/info.json b/blockchains/ethereum/assets/0x76BC677d444f1E9d57dAf5187ee2b7dC852745aE/info.json new file mode 100644 index 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/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/info.json b/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/info.json new file mode 100644 index 000000000000..35774d97d386 --- /dev/null +++ b/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/info.json @@ -0,0 +1,35 @@ +{ + "name": "ICE Token", + "website": "https://icetoken.io/", + "description": "Ice represents the next generation of digital currency, mineable on any mobile device. At its core, Ice Network fosters a trusted community, proliferating the belief that digital currencies can maintain value across diverse use cases. Membership is initiated through invitations, enabling new users to earn and build micro-communities immediately.", + "explorer": "https://etherscan.io/token/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c", + "type": "ERC20", + "symbol": "ICE", + "decimals": 18, + "status": "active", + "id": "0x79F05c263055BA20EE0e814ACD117C20CAA10e0c", + "links": [ + { + "name": "github", + "url": "https://github.com/ice-blockchain" + }, + { + "name": "twitter", + "url": "https://twitter.com/ice_blockchain" + }, + { + "name": "telegram", + "url": "https://t.me/iceblockchain" + }, + { + "name": "website", + "url": "https://ice.io/" + } + { + "name": "reddit", + "url": "https://reddit.com/r/iceblockchain" + } + ], + "tags": [ + ] +} diff --git a/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/logo.png b/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/logo.png new file mode 100644 index 000000000000..985650b0545c Binary files /dev/null and b/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/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/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/info.json b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/info.json new file mode 100644 index 000000000000..69ea69c16b1a --- /dev/null +++ b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/info.json @@ -0,0 +1,25 @@ +{ + "name": "Golem", + "website": "https://golem.network", + "description": "Golem (GNT) is a peer-to-peer decentralized marketplace for computing power. The project aims to be an alternative to centralized cloud service providers with its lower price point and open-source community of developers.", + "explorer": "https://etherscan.io/token/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429", + "type": "ERC20", + "symbol": "GNT", + "decimals": 18, + "status": "active", + "id": "0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/golemproject" + }, + { + "name": "github", + "url": "https://github.com/golemfactory/golem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/golem-network-tokens/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/logo.png b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/logo.png new file mode 100644 index 000000000000..644070628b3d Binary files /dev/null and b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/logo.png differ diff --git a/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json b/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json index 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/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/info.json b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/info.json new file mode 100644 index 000000000000..319e8534b9fc --- /dev/null +++ b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/info.json @@ -0,0 +1,25 @@ +{ + "name": "El Hippo", + "website": "https://hipptoken.com/", + "description": "El Hippo is a transparent meme coin project that focuses first and foremost on building a happy, long-term community. $HIPP is BIG, Watch out - here comes El Hippo!", + "explorer": "https://etherscan.io/token/0x7b744eea1deca2f1b7b31f15ba036fa1759452d7", + "type": "ERC20", + "symbol": "HIPP", + "decimals": 18, + "status": "active", + "id": "0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/elhippomeme" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/el-hippo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/el-hippo/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/logo.png b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/logo.png new file mode 100644 index 000000000000..1536e72253a0 Binary files /dev/null and b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/logo.png differ diff --git a/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/info.json b/blockchains/ethereum/assets/0x7bb1A6b19e37028B3aA5c580339c640720E35203/info.json new file mode 100644 index 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/0x7e877b99897D514da01bD1d177E693EC639961Af/info.json b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/info.json new file mode 100644 index 000000000000..1576add7018a --- /dev/null +++ b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/info.json @@ -0,0 +1,25 @@ +{ + "name": "Oggy Inu (ETH)", + "website": "https://oggyinu.com/", + "description": "OggyInu is a token derived from the impromptu meme market. Not affiliated with any broadcast or production agency.", + "explorer": "https://etherscan.io/token/0x7e877b99897D514da01bD1d177E693EC639961Af", + "type": "ERC20", + "symbol": "OGGY", + "decimals": 9, + "status": "active", + "id": "0x7e877b99897D514da01bD1d177E693EC639961Af", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oggy-inu-eth/" + }, + { + "name": "twitter", + "url": "https://twitter.com/OggyInuLTD" + }, + { + "name": "telegram", + "url": "https://t.me/oggy_inu" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/logo.png b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/logo.png new file mode 100644 index 000000000000..1b0f2381e704 Binary files /dev/null and b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/logo.png differ diff --git a/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json b/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json index 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/0x8248270620Aa532E4d64316017bE5E873E37cc09/info.json b/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/info.json new file mode 100644 index 000000000000..8eee1c65c341 --- /dev/null +++ b/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/info.json @@ -0,0 +1,21 @@ +{ + "name": "DevvE", + "website": "https://www.devve.io", + "description": " DevvE is a next-gen cryptocurrency that is 1/3bn energy use of Bitcoin, 1/10M cost of Ethereum, 8M tps with patents around fraud, theft, loss, privacy and regulatory compliance.", + "explorer": "https://etherscan.io/token/0x8248270620aa532e4d64316017be5e873e37cc09", + "type": "EFC20", + "symbol": "DEVVE", + "decimals": 18, + "status": "active", + "id": "0x8248270620Aa532E4d64316017bE5E873E37cc09", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DevveEcosystem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/devve/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/logo.png b/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/logo.png new file mode 100644 index 000000000000..dd84efefc1de Binary files /dev/null and b/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/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/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/info.json b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/info.json new file mode 100644 index 000000000000..97792c37e334 --- /dev/null +++ b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/info.json @@ -0,0 +1,40 @@ +{ + "name": "ELF wallet (ELF)", + "type": "ERC20", + "symbol": "ELF", + "decimals": 18, + "website": "https://www.elfwallets.com/", + "description": "Multi-chain Wallet in WEB3.Multi-chain Wallet, Security First, Full Control by User.", + "explorer": "https://etherscan.io/token/0x831be1970511c069ddedc452ffbbee55eeb70170", + "status": "active", + "id": "0x831bE1970511C069ddEdc452fFbbEE55eEB70170", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ElfWallet" + }, + { + "name": "github", + "url": "https://github.com/ELF-Wallet" + }, + { + "name": "telegram", + "url": "https://t.me/ElfWallet_Global" + }, + { + "name": "whitepaper", + "url": "https://www.elfwallets.com/ELF.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elf-wallet/" + }, + { + "name": "medium", + "url": "https://medium.com/@elfwallet" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/logo.png b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/logo.png new file mode 100644 index 000000000000..2f9cdfc5cb30 Binary files /dev/null and b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/logo.png differ diff --git a/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/info.json b/blockchains/ethereum/assets/0x839e71613f9aA06E5701CF6de63E303616B0DDE3/info.json new file mode 100644 index 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/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/info.json b/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/info.json new file mode 100644 index 000000000000..f853ebd98c1c --- /dev/null +++ b/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/info.json @@ -0,0 +1,25 @@ +{ + "name": "AltLayer", + "website": "https://altlayer.io/", + "description": "AltLayer is an open and decentralised protocol for rollups.", + "explorer": "https://etherscan.io/token/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB", + "type": "ERC20", + "symbol": "ALT", + "decimals": 18, + "status": "active", + "id": "0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/alt_layer" + }, + { + "name": "telegram", + "url": "https://t.me/altlayer" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/altlayer/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/logo.png b/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/logo.png new file mode 100644 index 000000000000..55ecb67cfcb6 Binary files /dev/null and b/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/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/0x8AB2ff0116A279a99950C66A12298962D152B83c/info.json b/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/info.json new file mode 100644 index 000000000000..f6a5b6e1ab64 --- /dev/null +++ b/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/info.json @@ -0,0 +1,25 @@ +{ + "name": "Ordiswap", + "website": "https://ordiswap.fi/", + "description": "Ordiswap is a pioneering protocol, merges the worlds of Bitcoin and DeFi by introducing the first AMM on Bitcoin's native layer through off-chain balance state logic.", + "explorer": "https://etherscan.io/token/0x8AB2ff0116A279a99950C66A12298962D152B83c", + "type": "ERC20", + "symbol": "ORDS", + "decimals": 18, + "status": "active", + "id": "0x8AB2ff0116A279a99950C66A12298962D152B83c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/OrdiswapLabs" + }, + { + "name": "telegram", + "url": "https://t.me/ordiswaplabs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ordiswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/logo.png b/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/logo.png new file mode 100644 index 000000000000..6003c9af77b8 Binary files /dev/null and b/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/logo.png differ diff --git a/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json b/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json new file mode 100644 index 000000000000..53f895ff9374 --- /dev/null +++ b/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json @@ -0,0 +1,21 @@ +{ + "name": "VANRY", + "type": "ERC20", + "symbol": "VANRY", + "decimals": 18, + "website": "https://vanarchain.com/", + "description": "VANRY is the official token of the VANAR blockchain. Vanar offers a carbon-neutral, high-speed and low-cost L1 chain designed for entertainment and mainstream.", + "explorer": "https://etherscan.io/token/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624", + "status": "active", + "id": "0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/vanarchain" + }, + { + "name": "telegram", + "url": "https://t.me/vanarchain" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/logo.png b/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/logo.png new file mode 100644 index 000000000000..3bc1cf77897d Binary files /dev/null and b/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/logo.png differ 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/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/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/info.json b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/info.json new file mode 100644 index 000000000000..e73c91f542d1 --- /dev/null +++ b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/info.json @@ -0,0 +1,24 @@ +{ + "name": "Okage Inu", + "symbol": "OKAGE", + "type": "ERC20", + "decimals": 18, + "description": "Okage Inu is a project seeking to change the way the world interacts with memecoins by creating an infinitely scalable, future-proof, and highly secure ecosystem that is engineered around positive feedback loops between DEX, Chain, and Swap.", + "website": "https://okageinu.com/", + "explorer": "https://etherscan.io/token/0x8dfc8cc3201425669fae803e1eb125cddd4189ec", + "status": "active", + "id": "0x8dfc8cc3201425669FaE803e1eB125cddd4189eC", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/okageerc" + }, + { + "name": "telegram", + "url": "https://t.me/OkageInu" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/logo.png b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/logo.png new file mode 100644 index 000000000000..c5a86e41753d Binary files /dev/null and b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/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/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/info.json b/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/info.json new file mode 100644 index 000000000000..a3d377d2cbfa --- /dev/null +++ b/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/info.json @@ -0,0 +1,52 @@ +{ + "name": "Openleverage Token (Old)", + "website": "https://openleverage.finance/", + "description": "OpenLeverage is a permissionless money market protocol enabling decentralized lending, borrowing, and margin trading across a diverse range of cryptocurrency pairs, fostering an accessible and efficient DeFi ecosystem.", + "explorer": "https://etherscan.io/token/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e", + "type": "ERC20", + "symbol": "Old OLE", + "decimals": 18, + "status": "active", + "id": "0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/OpenLeverage" + }, + { + "name": "discord", + "url": "https://discord.com/invite/openleverage" + }, + { + "name": "medium", + "url": "https://openleverage.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openleverage/" + }, + { + "name": "docs", + "url": "https://docs.openleverage.finance/main/" + }, + { + "name": "telegram", + "url": "https://t.me/openleverageofficial" + }, + { + "name": "github", + "url": "https://github.com/OpenLeverageDev/openleverage-contracts" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openleverage" + }, + { + "name": "youtube", + "url": "https://youtube.com/@openleverageprotocol9047" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/logo.png b/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/logo.png new file mode 100644 index 000000000000..c43b83973316 Binary files /dev/null and b/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/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/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json b/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json index 7807396cbe78..01d68cc4010d 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, + "website": "https://www.dypius.com/", + "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", + "explorer": "https://etherscan.io/token/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "status": "abandoned", "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "status": "active", "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 deleted file mode 100644 index d4d1c9c8123b..000000000000 Binary files a/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png and /dev/null 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/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/info.json b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/info.json new file mode 100644 index 000000000000..027f530aab4e --- /dev/null +++ b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/info.json @@ -0,0 +1,21 @@ +{ + "name": "Flipped Pepe", + "website": "https://epep.gg", + "description": "Flipped Pepe $EPEP. The most memeable memecoin in existence, FLIPPED.", + "explorer": "https://etherscan.io/token/0x97e3c21f27182498382f81e32fbe0ea3a0e3d79b", + "type": "ERC20", + "symbol": "EPEP", + "decimals": 9, + "status": "active", + "id": "0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b", + "links": [ + { + "name": "telegram", + "url": "https://t.me/hteniocepeP" + }, + { + "name": "twitter", + "url": "https://twitter.com/FlippedPepe" + } + ] +} diff --git a/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/logo.png b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/logo.png new file mode 100644 index 000000000000..2f1a0dafec66 Binary files /dev/null and b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/logo.png differ diff --git a/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/info.json b/blockchains/ethereum/assets/0x9813037ee2218799597d83D4a5B6F3b6778218d9/info.json new file mode 100644 index 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/0x9B3A8159e119eb09822115AE08Ee1526849e1116/info.json b/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/info.json new file mode 100644 index 000000000000..b483ac634496 --- /dev/null +++ b/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/info.json @@ -0,0 +1,29 @@ +{ + "name": "Meme Alliance", + "website": "https://www.meme-alliance.com/", + "description": "Meme Alliance is a GameFI platform. The goal of Meme Alliance is to connect Meme communities trough gaming into one ecosystem.", + "explorer": "https://etherscan.io/token/0x9B3A8159e119eb09822115AE08Ee1526849e1116", + "type": "ERC20", + "symbol": "MMA", + "decimals": 9, + "status": "active", + "id": "0x9B3A8159e119eb09822115AE08Ee1526849e1116", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/memealliancefps" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meme-alliance/" + }, + { + "name": "telegram", + "url": "https://t.me/RealElmoERC" + }, + { + "name": "discord", + "url": "https://discord.com/ZuUy9d5XRn" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/logo.png b/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/logo.png new file mode 100644 index 000000000000..1035dc9aac23 Binary files /dev/null and b/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/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/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/info.json b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/info.json new file mode 100644 index 000000000000..c59ff05685f7 --- /dev/null +++ b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/info.json @@ -0,0 +1,29 @@ +{ + "name": "SSV", + "website": "https://ssv.network/", + "description": "ssv. the network is a decentralized staking infrastructure that enables the distributed operation of an Ethereum validator. An open-source protocol for simple and scalable access to decentralized ETH staking for all.", + "explorer": "https://etherscan.io/token/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54", + "type": "ERC20", + "symbol": "SSV", + "decimals": 18, + "status": "active", + "id": "0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54", + "links": [ + { + "name": "github", + "url": "https://github.com/bloxapp/ssv" + }, + { + "name": "twitter", + "url": "https://twitter.com/ssv_network" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ssv-network/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ssv-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/logo.png b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/logo.png new file mode 100644 index 000000000000..429bf6b6fec3 Binary files /dev/null and b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/info.json b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/info.json new file mode 100644 index 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/0x9E9FbDE7C7a83c43913BddC8779158F1368F0413/info.json b/blockchains/ethereum/assets/0x9E9FbDE7C7a83c43913BddC8779158F1368F0413/info.json new file mode 100644 index 000000000000..cb2d75b2d0d2 --- /dev/null +++ b/blockchains/ethereum/assets/0x9E9FbDE7C7a83c43913BddC8779158F1368F0413/info.json @@ -0,0 +1,28 @@ + { + "name": "Pandora", + "website": "https://www.pandora.build", + "description": "Pandora is the first ERC404, an experimental mixed ERC20/ERC721 implementation with native liquidity and fractionalization for non-fungible tokens.", + "explorer": "https://etherscan.io/token/0x9e9fbde7c7a83c43913bddc8779158f1368f0413", + "type": "ERC20", + "symbol": "PANDORA", + "decimals": 18, + "status": "abandoned", + "id": "0x9E9FbDE7C7a83c43913BddC8779158F1368F0413", + "links": [ + { + "name": "github", + "url": "https://github.com/Pandora-Labs-Org" + }, + { + "name": "twitter", + "url": "https://twitter.com/Pandora_ERC404" + }, + { + "name": "telegram", + "url": "https://t.me/pandora_404" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/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/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/info.json b/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/info.json new file mode 100644 index 000000000000..0c7104fcbba7 --- /dev/null +++ b/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/info.json @@ -0,0 +1,25 @@ +{ + "name": "InfinityBit Token", + "type": "ERC20", + "symbol": "IBIT", + "decimals": 8, + "website": "https://ibit.infinitybit.io/", + "description": "IBIT functions as the currency for InfinityBit, an on-chain CEX. It also provides access to an automated AI-powered trading system and the greater InfinityBit ecosystem.", + "explorer": "https://etherscan.io/token/0xA3cB87080e68AD54D00573983D935Fa85d168FDE", + "status": "active", + "id": "0xA3cB87080e68AD54D00573983D935Fa85d168FDE", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/infinitybit_io" + }, + { + "name": "telegram", + "url": "https://t.me/infinitybit_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/infinitybit-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/logo.png b/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/logo.png new file mode 100644 index 000000000000..f668e19d090b Binary files /dev/null and b/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/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/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json new file mode 100644 index 000000000000..0b0a9a32f3af --- /dev/null +++ b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json @@ -0,0 +1,25 @@ +{ + "name": "Bounce Token", + "website": "https://bounce.finance/", + "description": "Bounce is a decentralized auction platform, incorporating liquidity mining, decentralized governance and staking mechanisms. The first principle of Bounce is scarcity of resources, which creates a competitive swap environment.", + "explorer": "https://etherscan.io/token/0xa9b1eb5908cfc3cdf91f9b8b3a74108598009096", + "type": "ERC20", + "symbol": "Auction", + "decimals": 18, + "status": "active", + "id": "0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bounce_finance" + }, + { + "name": "telegram", + "url": "https://t.me/bounce_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bounce-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png new file mode 100644 index 000000000000..c05d45d42e9c Binary files /dev/null and b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png differ diff --git a/blockchains/ethereum/assets/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be/info.json b/blockchains/ethereum/assets/0xABe580E7ee158dA464b51ee1a83Ac0289622e6be/info.json index 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/0xAaAAAA20D9E0e2461697782ef11675f668207961/info.json b/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/info.json new file mode 100644 index 000000000000..fab2bcc3353d --- /dev/null +++ b/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/info.json @@ -0,0 +1,28 @@ +{ + "name": "Aurora", + "website": "https://aurora.dev/", + "description": "AURORA token is a governance token to ensure proper upgrades to the protocol. Aurora is governed by AuroraDAO which includes representatives from different ecosystems and sectors of the blockchain industry.", + "explorer": "https://etherscan.io/token/0xAaAAAA20D9E0e2461697782ef11675f668207961", + "type": "ERC20", + "symbol": "AURORA", + "decimals": 18, + "status": "active", + "id": "0xAaAAAA20D9E0e2461697782ef11675f668207961", + "tags": [ + "governance" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/auroraisnear" + }, + { + "name": "github", + "url": "https://github.com/aurora-is-near" + }, + { + "name": "telegram", + "url": "https://t.me/auroraisnear" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/logo.png b/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/logo.png new file mode 100644 index 000000000000..21df1e53ca4f Binary files /dev/null and b/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/logo.png differ diff --git a/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/info.json b/blockchains/ethereum/assets/0xAaEf88cEa01475125522e117BFe45cF32044E238/info.json new file mode 100644 index 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/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/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/info.json b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/info.json new file mode 100644 index 000000000000..515049ad539c --- /dev/null +++ b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/info.json @@ -0,0 +1,40 @@ +{ + "name": "Wall Street Memes", + "type": "ERC20", + "symbol": "WSM", + "decimals": 18, + "website": "https://wallstmemes.com", + "description": "Wall Street Memes is born out of the infamous GameStop fiasco of 2021, and the legacy of those brave Wall Street Bets heroes still endures today. It is the ultimate expression of the internet’s triumph over rampant capitalism. The token raised over $25m USD in the presale and recorded over $55m trading volume in the first 24hrs with listings on multiple tier 1 exchanges. Whilst the project initially started as a meme coin with meme only utility, there are big things coming, with announcements due on project updates very soon. ", + "explorer": "https://etherscan.io/token/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf", + "status": "active", + "id": "0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/wallstmemes" + }, + { + "name": "discord", + "url": "https://discord.com/invite/4E538pzeGX" + }, + { + "name": "telegram", + "url": "https://t.me/wallst_memes" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wall-street-memes/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCi-M8QFGjDbBQRY5lnl3x-g" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wall-street-memes" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/logo.png b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/logo.png new file mode 100644 index 000000000000..f9069e357e65 Binary files /dev/null and b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/logo.png differ diff --git a/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png b/blockchains/ethereum/assets/0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55/logo.png index 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..b4ea83b05d46 Binary files /dev/null and b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png differ diff --git a/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/info.json b/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/info.json index d0c7b9b6551e..44f0326b0630 100644 --- a/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/info.json +++ b/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/info.json @@ -1,22 +1,44 @@ { "name": "Chain Games", - "website": "https://chaingames.io", - "description": "Chain Games is a blockchain integrated gaming platform that incorporates non-custodial decentralized smart contract based wagering on games of skill.", - "explorer": "https://etherscan.io/token/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4", - "research": "https://chaingames.io", "type": "ERC20", "symbol": "CHAIN", "decimals": 18, + "website": "https://chaingames.io/", + "description": "Chain Games is a blockchain-integrated Web3 gaming network that allows for decentralized game of skills contests with real crypto payouts.", + "explorer": "https://etherscan.io/token/0xc4c2614e694cf534d407ee49f8e44d125e4681c4", "status": "active", "id": "0xC4C2614E694cF534D407Ee49F8E44D125E4681c4", "links": [ + { + "name": "twitter", + "url": "https://twitter.com/realchaingames" + }, + { + "name": "telegram", + "url": "https://t.me/chaingames" + }, { "name": "github", "url": "https://github.com/Chain-Games" }, { - "name": "whitepaper", - "url": "https://chaingames.io/wp-content/uploads/2020/08/Chain_Games-White-Paper-Aug-2020v4.pdf" + "name": "discord", + "url": "https://discord.com/invite/wAyMde8" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/chaingames/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC6HPAdSdpzTIn4DGryr315Q" + }, + { + "name": "facebook", + "url": "https://facebook.com/realchaingames/" } + ], + "tags": [ + "gamefi" ] -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png b/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png index b5a17306b591..2d4eebd8e09c 100644 Binary files a/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png and b/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png differ diff --git a/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/info.json b/blockchains/ethereum/assets/0xC4f6E93AEDdc11dc22268488465bAbcAF09399aC/info.json 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/0xC52C326331E9Ce41F04484d3B5E5648158028804/info.json b/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/info.json index 7ff931315b8d..d2e322fe3bf4 100644 --- a/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/info.json +++ b/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/info.json @@ -1,12 +1,33 @@ { - "name": "ZEN Exchange Token", + "name": "Unizen", "website": "https://unizen.io", - "description": "Utility token to at Unizen Smart Exchange Ecosystem.", + "description": "Seamless omni-chain enabled swapping with industry leading rates and access to millions of digital assets, from the moment of their inception.", "explorer": "https://etherscan.io/token/0xC52C326331E9Ce41F04484d3B5E5648158028804", - "research": "https://unizen.io/docs/unizen-v1-litepaper-2021-04-23-22-02.pdf", - "type": "ERC20", + "research": "https://docs.unizen.io", "symbol": "ZCX", + "type": "ERC20", "decimals": 18, "status": "active", - "id": "0xC52C326331E9Ce41F04484d3B5E5648158028804" -} \ No newline at end of file + "tags": [ + "staking-native" + ], + "id": "0xC52C326331E9Ce41F04484d3B5E5648158028804", + "links": [ + { + "name": "github", + "url": "https://github.com/unizen-io/" + }, + { + "name": "twitter", + "url": "https://twitter.com/unizen_io" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/unizen/" + }, + { + "name": "whitepaper", + "url": "https://docs.unizen.io" + } + ] +} diff --git a/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png b/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png index c7a1369fb271..4077cfed0772 100755 Binary files a/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png and b/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png differ diff --git a/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json b/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json index 9c238bd8b41e..49b38c5b6e07 100644 --- a/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json +++ b/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json @@ -6,6 +6,6 @@ "website": "", "description": "-", "explorer": "https://etherscan.io/token/0xc66ea802717bfb9833400264dd12c2bceaa34a6d", - "status": "active", + "status": "abandoned", "id": "0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d" -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/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/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json b/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json index f9c146eddfa7..9941d60f290c 100644 --- a/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json +++ b/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "SAITAMA", "decimals": 9, - "status": "active", + "status": "abandoned", "id": "0xCE3f08e664693ca792caCE4af1364D5e220827B2", "tags": [ "memes" diff --git a/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/logo.png b/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/logo.png deleted file mode 100644 index c9674e2f1073..000000000000 Binary files a/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/info.json b/blockchains/ethereum/assets/0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb/info.json 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/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/info.json b/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/info.json new file mode 100644 index 000000000000..6000e9b29d81 --- /dev/null +++ b/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/info.json @@ -0,0 +1,21 @@ +{ + "name": "Starknet", + "type": "ERC20", + "symbol": "STRK", + "decimals": 18, + "website": "https://starknet.io/", + "description": "StarkNet is a permissionless decentralized Validity-Rollup (also known as a “ZK-Rollup”). It operates as an L2 network over Ethereum, enabling any dApp to its computation – without compromising Ethereum’s composability and security, thanks to StarkNet’s cryptographic proof system – STARK.", + "explorer": "https://etherscan.io/token/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766", + "status": "active", + "id": "0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/StarkWareLtd" + }, + { + "name": "github", + "url": "https://github.com/orgs/starkware-libs/repositories" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/logo.png b/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/logo.png new file mode 100644 index 000000000000..9817ae9b9434 Binary files /dev/null and b/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/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/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/info.json b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/info.json new file mode 100644 index 000000000000..d8181de40293 --- /dev/null +++ b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bitgert", + "type": "ERC20", + "symbol": "BRISE", + "decimals": 9, + "website": "https://bitgert.com/", + "description": "Bitgert is a revolutionary crypto engineering organization that aims to revolutionize the way people interact with digital assets. Through their numerous projects, Bitgert has created a comprehensive ecosystem of products that cover all aspects of digital asset ownership.", + "explorer": "https://etherscan.io/token/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A", + "status": "active", + "id": "0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bitgertbrise" + }, + { + "name": "telegram", + "url": "https://t.me/bitgertbrise" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/logo.png b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/logo.png new file mode 100644 index 000000000000..4f1ec8dede0d Binary files /dev/null and b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/logo.png differ diff --git a/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json b/blockchains/ethereum/assets/0xF33893DE6eB6aE9A67442E066aE9aBd228f5290c/info.json new file mode 100644 index 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/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json b/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json index 65d342e8410d..1ab550b439c9 100644 --- a/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json +++ b/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "BBANK", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xF4b5470523cCD314C6B9dA041076e7D79E0Df267", "links": [ { diff --git a/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/logo.png b/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/logo.png deleted file mode 100644 index d7ce5e9cec87..000000000000 Binary files a/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/logo.png and /dev/null 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/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/info.json b/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/info.json index 93946fea60c7..541921ec66f7 100644 --- a/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/info.json +++ b/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/info.json @@ -6,7 +6,7 @@ "description": "Ethereum Meta addresses a major weakness in Ethereum: the lack of privacy. Ethereum Meta enables smart contracts where no friend, family, nor foe can see what you bought or for how much.", "website": "https://ethermeta.com", "explorer": "https://etherscan.io/token/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794", - "status": "active", + "status": "abandoned", "id": "0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794", "links": [ { diff --git a/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/logo.png b/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/logo.png deleted file mode 100644 index a997d8b7341c..000000000000 Binary files a/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/logo.png and /dev/null 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/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json new file mode 100644 index 000000000000..da042e161308 --- /dev/null +++ b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Binance Beacon ETH", + "type": "ERC20", + "symbol": "wBETH", + "decimals": 18, + "website": "https://www.binance.com/en/wbeth", + "description": "wBETH is a reward-bearing ETH liquid staking token offered by Binance. Each wBETH represents 1 BETH (1:1 to staked ETH) plus all of its accrued ETH2.0 staking rewards starting from when wBETH's conversion rate was initialized at 1:1 on Apr 27th 2023 00:00 (UTC+0).", + "explorer": "https://etherscan.io/token/0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "status": "active", + "id": "0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-beacon-eth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-beacon-eth" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png new file mode 100644 index 000000000000..832596160ae8 Binary files /dev/null and b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png differ diff --git a/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/info.json b/blockchains/ethereum/assets/0xa3EE21C306A700E682AbCdfe9BaA6A08F3820419/info.json new file mode 100644 index 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/0xa62894D5196bC44e4C3978400Ad07E7b30352372/info.json b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/info.json new file mode 100644 index 000000000000..09ce6e6942a5 --- /dev/null +++ b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/info.json @@ -0,0 +1,21 @@ +{ + "name": "X", + "website": "https://xerc20.pro", + "description": "$X Project is an Elon-inspired crypto, community-driven, X-Factor rewards, and deflationary mechanics. Join the X revolution now!", + "explorer": "https://etherscan.io/token/0xa62894d5196bc44e4c3978400ad07e7b30352372", + "type": "ERC20", + "symbol": "X", + "decimals": 9, + "status": "active", + "id": "0xa62894D5196bC44e4C3978400Ad07E7b30352372", + "links": [ + { + "name": "discord", + "url": "https://discord.com/YEJR2HN4" + }, + { + "name": "telegram", + "url": "https://t.me/Xerc20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/logo.png b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/logo.png new file mode 100644 index 000000000000..c3c5fda4622a Binary files /dev/null and b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/logo.png differ diff --git a/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/info.json b/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/info.json new file mode 100644 index 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/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/info.json b/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/info.json new file mode 100644 index 000000000000..20bf899857d6 --- /dev/null +++ b/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/info.json @@ -0,0 +1,29 @@ +{ + "name": "Travala.com", + "website": "https://travala.com", + "description": "Travala.com claims to be the leading blockchain-based travel booking platform.", + "explorer": "https://etherscan.io/token/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9", + "type": "ERC20", + "symbol": "AVA", + "decimals": 18, + "status": "active", + "id": "0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/travalacom" + }, + { + "name": "github", + "url": "https://github.com/travala" + }, + { + "name": "telegram", + "url": "https://t.me/travala" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/travala/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/logo.png b/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/logo.png new file mode 100644 index 000000000000..1b8b37e0f5b2 Binary files /dev/null and b/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/logo.png differ diff --git a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json b/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json index 8b9a4ef29382..9606cc09bd02 100644 --- a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json +++ b/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json @@ -6,6 +6,6 @@ "type": "ERC20", "symbol": "GNT", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xa74476443119A942dE498590Fe1f2454d7D4aC0d" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/logo.png b/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/logo.png deleted file mode 100644 index 46d9e24512b0..000000000000 Binary files a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/info.json b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/info.json new file mode 100644 index 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/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/info.json b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/info.json new file mode 100644 index 000000000000..b630af8659aa --- /dev/null +++ b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mog Coin", + "website": "https://mogcoin.xyz/", + "description": "This coin Mogs all other coins.", + "explorer": "https://etherscan.io/token/0xaaee1a9723aadb7afa2810263653a34ba2c21c7a", + "type": "ERC20", + "symbol": "Mog", + "decimals": 18, + "status": "active", + "id": "0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a", + "tags": [ + "memes" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MogCoinEth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mog-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/logo.png b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/logo.png new file mode 100644 index 000000000000..fb84f1e87962 Binary files /dev/null and b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/logo.png differ diff --git a/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json b/blockchains/ethereum/assets/0xab167E816E4d76089119900e941BEfdfA37d6b32/info.json index 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/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/info.json b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/info.json new file mode 100644 index 000000000000..c296be632ab9 --- /dev/null +++ b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/info.json @@ -0,0 +1,36 @@ +{ + "name": "Memecoin", + "symbol": "MEME", + "type": "ERC20", + "decimals": 18, + "description": "Memecoin (MEME) is the native ecosystem token of Memeland. Memeland is the web3 venture studio by 9GAG, the globally popular meme platform.", + "website": "https://www.memecoin.org", + "explorer": "https://etherscan.io/token/0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74", + "status": "active", + "id": "0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74", + "tags": [ + "memes" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/memecoin" + }, + { + "name": "telegram", + "url": "https://t.me/memecoin" + }, + { + "name": "whitepaper", + "url": "https://www.memecoin.org/whitepaper" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/meme" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/memecoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/logo.png b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/logo.png new file mode 100644 index 000000000000..2db61d5fb9c5 Binary files /dev/null and b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/logo.png differ diff --git a/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/info.json b/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/info.json new file mode 100644 index 000000000000..785835091581 --- /dev/null +++ b/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/info.json @@ -0,0 +1,21 @@ +{ + "name": "Prime", + "type": "ERC20", + "symbol": "PRIME", + "decimals": 18, + "website": "https://www.echelon.io/", + "description": "The Echelon Prime Foundation is a Web3 ecosystem advancing the next-gen of gaming. Echelon creates and distributes tools to encourage innovation in, and promote the growth of, games. These tools encompass smart contract libraries, communication infrastructure, governance frameworks and more.", + "explorer": "https://etherscan.io/token/0xb23d80f5fefcddaa212212f028021b41ded428cf", + "status": "active", + "id": "0xb23d80f5FefcDDaa212212F028021B41DEd428CF", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/echelon-prime/" + }, + { + "name": "twitter", + "url": "https://twitter.com/EchelonFND" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/logo.png b/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/logo.png new file mode 100644 index 000000000000..1aea1924e840 Binary files /dev/null and b/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/logo.png differ 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/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/info.json b/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/info.json new file mode 100644 index 000000000000..f3d3fa7d565b --- /dev/null +++ b/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/info.json @@ -0,0 +1,48 @@ +{ + "name": "Jesus Coin", + "type": "ERC20", + "symbol": "JESUS", + "decimals": 18, + "website": "https://www.jesuscoin.xyz", + "description": "Jesus Coin was created to encourage generosity, foster community, and transform charitable giving. ", + "explorer": "https://etherscan.io/token/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70", + "status": "active", + "id": "0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/jesustokens" + }, + { + "name": "github", + "url": "https://github.com/makerlee0x/Jesus-Coin" + }, + { + "name": "telegram", + "url": "https://t.me/JesusCoinERC" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/jesus-coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jesus-toys/" + }, + { + "name": "whitepaper", + "url": "https://jesus.toys/_files/ugd/8460b5_557962e456ef4642aafc512aff19e929.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/@jesustokens" + }, + { + "name": "medium", + "url": "https://medium.com/@JesuscoinDAO" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/logo.png b/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/logo.png new file mode 100644 index 000000000000..c14967e272dd Binary files /dev/null and b/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/logo.png differ diff --git a/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/info.json b/blockchains/ethereum/assets/0xba5BDe662c17e2aDFF1075610382B9B691296350/info.json 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/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json b/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json new file mode 100644 index 000000000000..8466e2f80dd0 --- /dev/null +++ b/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json @@ -0,0 +1,28 @@ +{ + "name": "First Digital USD", + "type": "ERC20", + "symbol": "FDUSD", + "decimals": 18, + "website": "https://firstdigitallabs.com", + "description": "FDUSD (First Digital USD) is a 1:1 USD-backed Stablecoin. FDUSD revolutionizes global finance with a cutting-edge digital stablecoin, providing businesses and builders with security, speed, and innovation worldwide.", + "explorer": "https://etherscan.io/token/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409", + "status": "active", + "id": "0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/FDLabsHQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/first-digital-usd" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/first-digital-usd" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/logo.png b/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/logo.png new file mode 100644 index 000000000000..5d54b8a4dba0 Binary files /dev/null and b/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/info.json b/blockchains/ethereum/assets/0xc5fB36dd2fb59d3B98dEfF88425a3F425Ee469eD/info.json new file mode 100644 index 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/0xc8A34E86C187830922f841985E376f412eE0088A/info.json b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/info.json new file mode 100644 index 000000000000..802a2bc2515a --- /dev/null +++ b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/info.json @@ -0,0 +1,48 @@ +{ + "name": "DRAC Network (DRAC)", + "type": "ERC20", + "symbol": "DRAC", + "decimals": 18, + "website": "https://drac.io", + "description": "Decentralized Rewarding Autonomous Chain.", + "explorer": "https://etherscan.io/token/0xc8a34e86c187830922f841985e376f412ee0088a", + "status": "active", + "id": "0xc8A34E86C187830922f841985E376f412eE0088A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DRAC_Network" + }, + { + "name": "github", + "url": "https://github.com/DRAC-Network-Admin" + }, + { + "name": "telegram", + "url": "https://t.me/DRAC_English" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/drac-token" + }, + { + "name": "whitepaper", + "url": "https://drac.io/whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://dracnetwork.medium.com" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCcD7AsRqhU92IfqTh4SY0kQ" + }, + { + "name": "discord", + "url": "https://discord.com/invite/9DyPCHsk" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/logo.png b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/logo.png new file mode 100644 index 000000000000..e49a73ebb552 Binary files /dev/null and b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/logo.png differ diff --git a/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/info.json b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/info.json new file mode 100644 index 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/logo.png b/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/logo.png index 01778c9a953d..a83d58a242a0 100644 Binary files a/blockchains/ethereum/assets/0xcFEB09C3c5F0f78aD72166D55f9e6E9A60e96eEC/logo.png 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/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/info.json b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/info.json new file mode 100644 index 000000000000..0a95594d84a4 --- /dev/null +++ b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/info.json @@ -0,0 +1,25 @@ +{ + "name": "XDOGE", + "website": "https://x-doge.vip", + "description": "Embracing Financial Freedom through Elon Musk’s X-Factor In the world of cryptocurrencies, where innovation and imagination converge, the $X Project stands out as a promising opportunity for crypto investors seeking to achieve financial freedom.", + "explorer": "https://etherscan.io/token/0xd2b274cfbf9534f56b59ad0fb7e645e0354f4941", + "type": "ERC20", + "symbol": "XDOGE", + "decimals": 8, + "status": "active", + "id": "0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/XDogeErc20" + }, + { + "name": "telegram", + "url": "https://t.me/xdogeerc2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xdoge-vip/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/logo.png b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/logo.png new file mode 100644 index 000000000000..63be5587cb37 Binary files /dev/null and b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/info.json b/blockchains/ethereum/assets/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/info.json new file mode 100644 index 000000000000..ddab86145e65 --- /dev/null +++ b/blockchains/ethereum/assets/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/info.json @@ -0,0 +1,29 @@ +{ + "name": "QuickSwap", + "website": "https://quickswap.exchange/", + "description": "Next-gen Layer 2 DEX. Trade at lightning-fast speeds with near-zero gas fees, Powered by Polygon", + "explorer": "https://etherscan.io/token/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368", + "type": "ERC20", + "symbol": "QUICK", + "decimals": 18, + "status": "active", + "id": "0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368", + "links": [ + { + "name": "github", + "url": "https://github.com/QuickSwap" + }, + { + "name": "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/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/logo.png b/blockchains/ethereum/assets/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/logo.png similarity index 100% rename from blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/logo.png rename to blockchains/ethereum/assets/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/logo.png diff --git a/blockchains/ethereum/assets/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/0xd555498a524612c67f286dF0e0a9a64a73a7Cdc7/info.json b/blockchains/ethereum/assets/0xd555498a524612c67f286dF0e0a9a64a73a7Cdc7/info.json new file mode 100644 index 000000000000..1b51dcd4c715 --- /dev/null +++ b/blockchains/ethereum/assets/0xd555498a524612c67f286dF0e0a9a64a73a7Cdc7/info.json @@ -0,0 +1,24 @@ +{ + "name": "DeFrogs", + "website": "https://defrogs.com", + "description": "A collection of 10000 DeFrogs enabled by erc404, an experimental token standard on Ethereum. The 1st ERC404 PFP.", + "explorer": "https://etherscan.io/token/0xd555498a524612c67f286df0e0a9a64a73a7cdc7", + "type": "ERC20", + "symbol": "DEFROGS", + "decimals": 18, + "status": "abandoned", + "id": "0xd555498a524612c67f286dF0e0a9a64a73a7Cdc7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DeFrogsToken" + }, + { + "name": "telegram", + "url": "https://t.me/DeFrogs" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file 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/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json index cbe60a42db60..e3c714a07bc7 100644 --- a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json +++ b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json @@ -1,5 +1,5 @@ { - "name": "Utrust", + "name": "xMoney", "website": "https://utrust.com", "description": "The Utrust platform allows merchants to accept digital currencies as a means of payment.", "explorer": "https://etherscan.io/token/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c", diff --git a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png old mode 100755 new mode 100644 index 532f258606ff..c42fa10089b0 Binary files a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png and b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png differ diff --git a/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/info.json b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/info.json new file mode 100644 index 000000000000..8b283939aa81 --- /dev/null +++ b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/info.json @@ -0,0 +1,25 @@ +{ + "name": "Bitrock", + "type": "ERC20", + "symbol": "BITROCK", + "decimals": 9, + "website": "https://bit-rock.io", + "description": "Bitrock is an Ethereum sidechain IBFT 2.0 Proof of Authority (PoA) blockchain with near-zero native gas fees.", + "explorer": "https://etherscan.io/token/0xde67d97b8770dc98c746a3fc0093c538666eb493", + "status": "active", + "id": "0xde67d97b8770dC98C746A3FC0093c538666eB493", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BitRockChain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitrock/" + }, + { + "name": "telegram", + "url": "https://t.me/Bitrockchain" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/logo.png b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/logo.png new file mode 100644 index 000000000000..c0d1e5fc04f8 Binary files /dev/null and b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/logo.png differ diff --git a/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/info.json b/blockchains/ethereum/assets/0xdebe620609674F21B1089042527F420372eA98A5/info.json new file mode 100644 index 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/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/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json b/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json index cfa61695b438..31b53410f24c 100644 --- a/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json +++ b/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json @@ -6,6 +6,6 @@ "description": "Freeway Tokens (FWT) are the native utility tokens for AuBit Freeway — a ground-breaking new asset management platform built for greater total returns on the world’s top investment products with no additional risk.", "website": "https://aubit.io/", "explorer": "https://etherscan.io/token/0xf151980E7A781481709e8195744bF2399FB3Cba4", - "status": "active", + "status": "abandoned", "id": "0xf151980E7A781481709e8195744bF2399FB3Cba4" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/info.json b/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/info.json new file mode 100644 index 000000000000..1d3c3b6436a4 --- /dev/null +++ b/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/info.json @@ -0,0 +1,21 @@ +{ + "name": "PaLM AI", + "website": "https://palmai.tech/", + "description": "$PALM is a multi-platform PaLM AI chatbot with Google AI tech for conversation, coding, image gen; focuses on accessible AI and revenue sharing.", + "explorer": "https://etherscan.io/token/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891", + "symbol": "PALM", + "type": "ERC20", + "decimals": 9, + "status": "active", + "id": "0xf1df7305E4BAB3885caB5B1e4dFC338452a67891", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/palm-ai/" + }, + { + "name": "twitter", + "url": "https://twitter.com/palmaierc" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/logo.png b/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/logo.png new file mode 100644 index 000000000000..49a7f7fb3fe0 Binary files /dev/null and b/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/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/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/info.json b/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/info.json new file mode 100644 index 000000000000..532fa9e82e85 --- /dev/null +++ b/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/info.json @@ -0,0 +1,25 @@ +{ + "name": "Da Pinchi", + "symbol": "PINCHI", + "type": "ERC20", + "decimals": 9, + "description": "Da Pinchi is a cryptocurrency project developed on the Ethereum blockchain. It distinguishes itself through a dual focus on digital currency utility and social impact, primarily aimed at supporting local fishermen via the Da Pinchi Foundation.", + "website": "https://dapinchi.com", + "explorer": "https://etherscan.io/token/0xf4cccfda0781ae019a9d4e1853dcd3e288daaa89", + "status": "active", + "id": "0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/da_pinchi_eth" + }, + { + "name": "telegram", + "url": "https://t.me/da_pinchi_eth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/da-pinchi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/logo.png b/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/logo.png new file mode 100644 index 000000000000..a4f85e8cddac Binary files /dev/null and b/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/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/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/info.json b/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/info.json new file mode 100644 index 000000000000..f27c1b87e258 --- /dev/null +++ b/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/info.json @@ -0,0 +1,25 @@ +{ + "name": "TROLL", + "website": "https://www.trollface.vip", + "description": "Your fave childhood meme reborn, 100% safe & pure fun. Get ready 2 troll on! Renounced contract, LP burned", + "explorer": "https://etherscan.io/token/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A", + "type": "ERC20", + "symbol": "TROLL", + "decimals": 18, + "status": "active", + "id": "0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/trollerc20" + }, + { + "name": "telegram", + "url": "https://t.me/TrollETH" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/troll/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/logo.png b/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/logo.png new file mode 100644 index 000000000000..306e8175fe30 Binary files /dev/null and b/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/logo.png differ diff --git a/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/info.json b/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/info.json new file mode 100644 index 000000000000..7f0f16c00d0b --- /dev/null +++ b/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/info.json @@ -0,0 +1,25 @@ +{ + "name": "Ondo", + "website": "https://ondo.finance/", + "description": "Ondo Finance is a decentralized investment banking protocol consisting of on-chain financial products that connect investors with capital demand broadening access, improving transparency, and reducing cost versus the status quo. The ONDO token will govern the Ondo Finance protocol.", + "explorer": "https://etherscan.io/token/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3", + "type": "ERC20", + "symbol": "ONDO", + "decimals": 18, + "status": "active", + "id": "0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ondofinance" + }, + { + "name": "telegram", + "url": "https://t.me/ondofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ondo-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/logo.png b/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/logo.png new file mode 100644 index 000000000000..1aaa5815d4ee Binary files /dev/null and b/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/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..3704538ec4e1 --- /dev/null +++ b/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/info.json @@ -0,0 +1,40 @@ +{ + "name": "Pepe 2.0", + "type": "ERC20", + "symbol": "PEPE2.0", + "decimals": 18, + "website": "https://pepe20.vip", + "description": "Learning from past token mistakes, blacklisting some investors. Pepe 2.0 wants to make things right and redo his billion-dollar run.", + "explorer": "https://etherscan.io/token/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD", + "status": "abandoned", + "id": "0xfb66321D7C674995dFcC2cb67A30bC978dc862AD", + "links": [ + { + "name": "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/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 index ea3367730856..5ccfc41efad0 100644 --- a/blockchains/ethereum/chainlist.json +++ b/blockchains/ethereum/chainlist.json @@ -36,18 +36,10 @@ "chain": "42262", "coinId": "oasis" }, - { - "chain": "7700", - "coinId": "canto" - }, { "chain": "1284", "coinId": "moonbeam" }, - { - "chain": "2000", - "coinId": "dogechain" - }, { "chain": "321", "coinId": "kucoin" @@ -76,10 +68,6 @@ "chain": "43114", "coinId": "avalanche" }, - { - "chain": "32659", - "coinId": "fusion" - }, { "chain": "42220", "coinId": "celo" @@ -95,6 +83,78 @@ { "chain": "2222", "coinId": "kavaevm" + }, + { + "chain": "66", + "coinId": "okx" + }, + { + "chain": "1101", + "coinId": "polygonzkevm" + }, + { + "chain": "324", + "coinId": "zksync" + }, + { + "chain": "5", + "coinId": "goerlitestnet" + }, + { + "chain": "421613", + "coinId": "arbitrumgoerli" + }, + { + "chain": "80001", + "coinId": "polygonmumbai" + }, + { + "chain": "1287", + "coinId": "moonbasealpha" + }, + { + "chain": "4002", + "coinId": "tftm" + }, + { + "chain": "420", + "coinId": "optimismgoerli" + }, + { + "chain": "11155111", + "coinId": "sepolia" + }, + { + "chain": "97", + "coinId": "bnbt" + }, + { + "chain": "43113", + "coinId": "avalanchecfuji" + }, + { + "chain": "5601", + "coinId": "gbnb" + }, + { + "chain": "5611", + "coinId": "opbnb" + }, + { + "chain": "32659", + "coinId": "fusion" + }, + { + "chain": "7700", + "coinId": "canto" + }, + { + "chain": "295", + "coinId": "hedera" + }, + { + "chain": "30", + "coinId": "rootstock" } ] } diff --git a/blockchains/ethereum/info/info.json b/blockchains/ethereum/info/info.json index 1c18235d81bd..b7ff00eef919 100644 --- a/blockchains/ethereum/info/info.json +++ b/blockchains/ethereum/info/info.json @@ -8,6 +8,10 @@ "type": "coin", "decimals": 18, "status": "active", + "tags": [ + "dapp", + "staking-native" + ], "links": [ { "name": "github", diff --git a/blockchains/ethereum/tokenlist.json b/blockchains/ethereum/tokenlist.json index f0cbe3a89907..27ca25bb314f 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" }, @@ -277,9 +271,6 @@ { "base": "c60_t0x8a854288a5976036A725879164Ca3e91d30c6A1B" }, - { - "base": "c60_t0xCE3f08e664693ca792caCE4af1364D5e220827B2" - }, { "base": "c60_t0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9" }, @@ -504,6 +495,18 @@ }, { "base": "c60_t0xf4d2888d29D722226FafA5d9B24F9164c092421E" + }, + { + "base": "c60_t0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96" + }, + { + "base": "c60_t0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C" + }, + { + "base": "c60_t0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A" + }, + { + "base": "c60_t0xCEBA2a8F6Ec221AEB5f3a7bcd15Cbc7e6a387bfb" } ] }, @@ -528,16 +531,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", @@ -1139,16 +1132,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x30f271C9E86D2B7d00a6376Cd96A1cFBD5F0b9b3/logo.png", "pairs": [] }, - { - "asset": "c60_t0x3155BA85D5F96b2d030a4966AF206230e46849cb", - "type": "ERC20", - "address": "0x3155BA85D5F96b2d030a4966AF206230e46849cb", - "name": "THORChain ETH.RUNE", - "symbol": "RUNE", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/logo.png", - "pairs": [] - }, { "asset": "c60_t0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6", "type": "ERC20", @@ -1183,7 +1166,7 @@ "asset": "c60_t0x3593D125a4f7849a1B059E64F4517A86Dd60c95d", "type": "ERC20", "address": "0x3593D125a4f7849a1B059E64F4517A86Dd60c95d", - "name": "MANTRA DAO", + "name": "MANTRA", "symbol": "OM", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png", @@ -1209,16 +1192,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", @@ -1665,16 +1638,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x69692D3345010a207b759a7D1af6fc7F38b35c5E/logo.png", "pairs": [] }, - { - "asset": "c60_t0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23", - "type": "ERC20", - "address": "0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23", - "name": "Poolz Finance", - "symbol": "POOLZ", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/logo.png", - "pairs": [] - }, { "asset": "c60_t0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074", "type": "ERC20", @@ -2051,16 +2014,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x8a854288a5976036A725879164Ca3e91d30c6A1B/logo.png", "pairs": [] }, - { - "asset": "c60_t0xCE3f08e664693ca792caCE4af1364D5e220827B2", - "type": "ERC20", - "address": "0xCE3f08e664693ca792caCE4af1364D5e220827B2", - "name": "SAITAMA", - "symbol": "SAITAMA", - "decimals": 9, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/logo.png", - "pairs": [] - }, { "asset": "c60_t0x8B39B70E39Aa811b69365398e0aACe9bee238AEb", "type": "ERC20", @@ -2192,16 +2145,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE/logo.png", "pairs": [] }, - { - "asset": "c60_t0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "type": "ERC20", - "address": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "name": "DeFi Yield Protocol", - "symbol": "DYP", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png", - "pairs": [] - }, { "chainId": 1, "asset": "c60_t0x967da4048cD07aB37855c090aAF366e4ce1b9F48", @@ -2547,13 +2490,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 +2621,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", @@ -2764,7 +2697,7 @@ "asset": "c60_t0xC52C326331E9Ce41F04484d3B5E5648158028804", "type": "ERC20", "address": "0xC52C326331E9Ce41F04484d3B5E5648158028804", - "name": "ZEN Exchange Token", + "name": "Unizen", "symbol": "ZCX", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png", @@ -3386,13 +3319,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 +3427,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/ethereum/validators/assets/0x2401c39d7ba9E283668a53fcC7B8F5FD9e716fdf/logo.png b/blockchains/ethereum/validators/assets/0x2401c39d7ba9E283668a53fcC7B8F5FD9e716fdf/logo.png new file mode 100644 index 000000000000..f5f3ada9451c Binary files /dev/null and b/blockchains/ethereum/validators/assets/0x2401c39d7ba9E283668a53fcC7B8F5FD9e716fdf/logo.png differ diff --git a/blockchains/ethereum/validators/list.json b/blockchains/ethereum/validators/list.json new file mode 100644 index 000000000000..2e116f2b5955 --- /dev/null +++ b/blockchains/ethereum/validators/list.json @@ -0,0 +1,8 @@ +[ + { + "id": "0x2401c39d7ba9E283668a53fcC7B8F5FD9e716fdf", + "name": "Trust Nodes", + "description": "Trust Nodes is Ethereum 2.0 staking service.", + "website": "https://www.kiln.fi" + } +] \ No newline at end of file diff --git a/blockchains/everscale/info/info.json b/blockchains/everscale/info/info.json index dc3765249057..4734965d857c 100644 --- a/blockchains/everscale/info/info.json +++ b/blockchains/everscale/info/info.json @@ -1,7 +1,7 @@ { "name": "Everscale", "website": "https://everscale.network", - "description": "Everscale is a layer-1 blockchain, providing linear scalability while maintaining a high level of security and decentralization.", + "description": "Everscale is a highly scalable blockchain network that aims to power a range of applications that require fast, secure and scalable transactions.", "explorer": "https://everscan.io", "research": "https://research.cointelegraph.com/reports/detail/everscale-report", "symbol": "EVER", @@ -11,19 +11,27 @@ "links": [ { "name": "github", - "url": "https://github.com/tonlabs" + "url": "https://github.com/everscale-org" }, { "name": "twitter", "url": "https://twitter.com/Everscale_net" }, { - "name": "reddit", - "url": "https://reddit.com/r/Everscale/" + "name": "telegram", + "url": "https://t.me/everscale" }, { - "name": "whitepaper", - "url": "https://everscale.network/docs/everscale-whitepaper.pdf" + "name": "discord", + "url": "https://discord.com/invite/everscale" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/community/profile/Everscale/" + }, + { + "name": "blog", + "url": "https://blog.everscale.network/" } ] } 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/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json new file mode 100644 index 000000000000..595bd45f88a2 --- /dev/null +++ b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json @@ -0,0 +1,28 @@ +{ + "name": "StargateToken", + "website": "https://stargate.finance", + "description": "Stargate is a fully composable liquidity transport protocol that lives at the heart of Omnichain DeFi.", + "explorer": "https://ftmscan.com/token/0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590", + "type": "FANTOM", + "symbol": "STG", + "decimals": 18, + "status": "active", + "id": "0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590", + "links": [ + { + "name": "medium", + "url": "https://medium.com/stargate-official" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/LEM0ELklmO1kODdh" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stargate-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png new file mode 100644 index 000000000000..f983849d90c4 Binary files /dev/null and b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png differ diff --git a/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/info.json b/blockchains/fantom/assets/0x46E7628E8b4350b2716ab470eE0bA1fa9e76c6C5/info.json new file mode 100644 index 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..27ecd498e267 100644 --- a/blockchains/fantom/info/info.json +++ b/blockchains/fantom/info/info.json @@ -7,7 +7,11 @@ "symbol": "FTM", "type": "coin", "decimals": 18, + "rpc_url": "https://rpc.ftm.tools", "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "discord", diff --git a/blockchains/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/fetch/validators/assets/fetchvaloper14gtl0dgam6cqvjkuh6kfcnszchwzk0ghumdmhw/logo.png b/blockchains/fetch/validators/assets/fetchvaloper14gtl0dgam6cqvjkuh6kfcnszchwzk0ghumdmhw/logo.png new file mode 100644 index 000000000000..e11781707123 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper14gtl0dgam6cqvjkuh6kfcnszchwzk0ghumdmhw/logo.png differ diff --git a/blockchains/fetch/validators/assets/fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0/logo.png b/blockchains/fetch/validators/assets/fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0/logo.png differ diff --git a/blockchains/fetch/validators/assets/fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw/logo.png b/blockchains/fetch/validators/assets/fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw/logo.png differ diff --git a/blockchains/fetch/validators/list.json b/blockchains/fetch/validators/list.json new file mode 100644 index 000000000000..dce8d7b6b077 --- /dev/null +++ b/blockchains/fetch/validators/list.json @@ -0,0 +1,20 @@ +[ + { + "id": "fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "fetchvaloper14gtl0dgam6cqvjkuh6kfcnszchwzk0ghumdmhw", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + } +] diff --git a/blockchains/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/greenfield/info/info.json b/blockchains/greenfield/info/info.json new file mode 100644 index 000000000000..7d7d0e258161 --- /dev/null +++ b/blockchains/greenfield/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "BNB Greenfield", + "website": "https://greenfield.bnbchain.org/en", + "description": "The goal of the BNB Greenfield is to unleash the power of decentralized blockchain and storage technology on data ownership and data economy.", + "explorer": "https://greenfieldscan.com", + "symbol": "BNB", + "rpc_url": "https://greenfield-chain-us.bnbchain.org", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/greenfield/info/logo.png b/blockchains/greenfield/info/logo.png new file mode 100644 index 000000000000..0fad6635d8d4 Binary files /dev/null and b/blockchains/greenfield/info/logo.png differ diff --git a/blockchains/harmony/info/info.json b/blockchains/harmony/info/info.json index 6734473b1eca..3dab39279f00 100644 --- a/blockchains/harmony/info/info.json +++ b/blockchains/harmony/info/info.json @@ -10,6 +10,9 @@ "type": "coin", "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "github", diff --git a/blockchains/harmony/validators/assets/one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha/logo.png b/blockchains/harmony/validators/assets/one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha/logo.png differ diff --git a/blockchains/harmony/validators/list.json b/blockchains/harmony/validators/list.json index df91a5caf71c..dd5629bfb079 100644 --- a/blockchains/harmony/validators/list.json +++ b/blockchains/harmony/validators/list.json @@ -23,6 +23,12 @@ "description": "24h node support, managing slots and shards to get the maximum APR with a 100% uptime. Help descentralization, delegate with us", "website": "harmony.com" }, + { + "id": "one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn higher yields with AutoStake.com", + "website": "https://autostake.com" + }, { "id": "one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6", "name": "StakingTeam", diff --git a/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/info.json b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/info.json new file mode 100644 index 000000000000..8d73c5afc655 --- /dev/null +++ b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/info.json @@ -0,0 +1,28 @@ +{ + "name": "MDX Token", + "symbol": "MDX", + "type": "HRC20", + "decimals": 18, + "description": "MDEX integrates the advantages of multiple chains to create a high-performance composite DEX ecosystem, to maximize the rewards of participants with the 'dual mining incentives' of liquid mining and transaction mining.", + "website": "https://bsc.mdex.com/", + "explorer": "https://hecoinfo.com/token/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c", + "status": "active", + "id": "0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Mdextech" + }, + { + "name": "github", + "url": "https://github.com/mdexSwap" + }, + { + "name": "telegram", + "url": "https://t.me/MixDex" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/logo.png b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/logo.png new file mode 100644 index 000000000000..484410a92769 Binary files /dev/null and b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/logo.png differ 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/internet_computer/info/info.json b/blockchains/internet_computer/info/info.json new file mode 100644 index 000000000000..c191849b54bf --- /dev/null +++ b/blockchains/internet_computer/info/info.json @@ -0,0 +1,39 @@ +{ + "name": "Internet Computer", + "website": "https://internetcomputer.org", + "description": "World Computer blockchain that reimagines the internet as an infinite smart contract platform", + "explorer": "https://dashboard.internetcomputer.org", + "symbol": "ICP", + "type": "coin", + "decimals": 8, + "status": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dfinity" + }, + { + "name": "github", + "url": "https://github.com/dfinity/ic" + }, + { + "name": "discord", + "url": "https://discord.com/invite/JJWatWr4qG" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/internet-computer/" + }, + { + "name": "whitepaper", + "url": "https://internetcomputer.org/whitepaper.pdf" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/dfinity" + } + ] +} diff --git a/blockchains/internet_computer/info/logo.png b/blockchains/internet_computer/info/logo.png new file mode 100644 index 000000000000..07b0d6c66c37 Binary files /dev/null and b/blockchains/internet_computer/info/logo.png differ 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/iris/validators/assets/iva1aj6frfd5g0a5d88j6mjpvy0ql5afd5crt90uqx/logo.png b/blockchains/iris/validators/assets/iva1aj6frfd5g0a5d88j6mjpvy0ql5afd5crt90uqx/logo.png new file mode 100644 index 000000000000..4b09813738a9 Binary files /dev/null and b/blockchains/iris/validators/assets/iva1aj6frfd5g0a5d88j6mjpvy0ql5afd5crt90uqx/logo.png differ diff --git a/blockchains/iris/validators/assets/iva1d3z30ndxuqas8vr3mrc7028ykvfaukal0tnj0p/logo.png b/blockchains/iris/validators/assets/iva1d3z30ndxuqas8vr3mrc7028ykvfaukal0tnj0p/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/iris/validators/assets/iva1d3z30ndxuqas8vr3mrc7028ykvfaukal0tnj0p/logo.png differ diff --git a/blockchains/iris/validators/assets/iva1n3hnhva22tykxxekrdq6zup4qcznsr9qc00fp6/logo.png b/blockchains/iris/validators/assets/iva1n3hnhva22tykxxekrdq6zup4qcznsr9qc00fp6/logo.png new file mode 100644 index 000000000000..0888af01c5da Binary files /dev/null and b/blockchains/iris/validators/assets/iva1n3hnhva22tykxxekrdq6zup4qcznsr9qc00fp6/logo.png differ diff --git a/blockchains/iris/validators/list.json b/blockchains/iris/validators/list.json new file mode 100644 index 000000000000..75a1aedba2c3 --- /dev/null +++ b/blockchains/iris/validators/list.json @@ -0,0 +1,20 @@ +[ + { + "id": "iva1d3z30ndxuqas8vr3mrc7028ykvfaukal0tnj0p", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "iva1n3hnhva22tykxxekrdq6zup4qcznsr9qc00fp6", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "iva1aj6frfd5g0a5d88j6mjpvy0ql5afd5crt90uqx", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + } +] \ No newline at end of file diff --git a/blockchains/juno/info/info.json b/blockchains/juno/info/info.json new file mode 100644 index 000000000000..f77be438c10f --- /dev/null +++ b/blockchains/juno/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "Juno", + "type": "coin", + "symbol": "JUNO", + "decimals": 6, + "website": "https://www.junonetwork.io/", + "description": "Juno is an interoperable smart contract network. Highly scalable, robust, secure and easy to deploy.", + "explorer": "https://www.mintscan.io/juno", + "status": "active", + "rpc_url": "https://rpc.juno.interbloc.org", + "denom": "ujuno", + "lcd_url": "https://lcd-juno.itastakers.com", + "hrp": "juno", + "fee_rate": "0.04", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/CosmosContracts" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/juno/" + }, + { + "name": "twitter", + "url": "https://twitter.com/JunoNetwork" + } + ] +} diff --git a/blockchains/juno/info/logo.png b/blockchains/juno/info/logo.png new file mode 100644 index 000000000000..dd6c870c1dd2 Binary files /dev/null and b/blockchains/juno/info/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm/logo.png b/blockchains/juno/validators/assets/junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn/logo.png b/blockchains/juno/validators/assets/junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn/logo.png new file mode 100644 index 000000000000..c3f41f6b4206 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw/logo.png b/blockchains/juno/validators/assets/junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw/logo.png new file mode 100644 index 000000000000..5f2434df2bfd Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1afhtjur8js4589xymu346ca7a5y5293x7p64ca/logo.png b/blockchains/juno/validators/assets/junovaloper1afhtjur8js4589xymu346ca7a5y5293x7p64ca/logo.png new file mode 100644 index 000000000000..9a688eab883c Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1afhtjur8js4589xymu346ca7a5y5293x7p64ca/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1ka8v934kgrw6679fs9cuu0kesyl0ljjy2kdtrl/logo.png b/blockchains/juno/validators/assets/junovaloper1ka8v934kgrw6679fs9cuu0kesyl0ljjy2kdtrl/logo.png new file mode 100644 index 000000000000..ba2f64c9b4f1 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1ka8v934kgrw6679fs9cuu0kesyl0ljjy2kdtrl/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55/logo.png b/blockchains/juno/validators/assets/junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9uxyejze/logo.png b/blockchains/juno/validators/assets/junovaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9uxyejze/logo.png new file mode 100644 index 000000000000..bcdec563b953 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9uxyejze/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1ssmt2aveqpc7e0ncgxt0tpj83ur623dvk7uvng/logo.png b/blockchains/juno/validators/assets/junovaloper1ssmt2aveqpc7e0ncgxt0tpj83ur623dvk7uvng/logo.png new file mode 100644 index 000000000000..0888af01c5da Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1ssmt2aveqpc7e0ncgxt0tpj83ur623dvk7uvng/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa/logo.png b/blockchains/juno/validators/assets/junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa/logo.png new file mode 100644 index 000000000000..70c64d1b880b Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1wd02ktcvpananlvd9u6jm3x3ap3vmw59jv9vez/logo.png b/blockchains/juno/validators/assets/junovaloper1wd02ktcvpananlvd9u6jm3x3ap3vmw59jv9vez/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1wd02ktcvpananlvd9u6jm3x3ap3vmw59jv9vez/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1xdywquvz5g6r5wv6tpkj6chad0fkk459gf9ny6/logo.png b/blockchains/juno/validators/assets/junovaloper1xdywquvz5g6r5wv6tpkj6chad0fkk459gf9ny6/logo.png new file mode 100644 index 000000000000..eaf66cb5cbb1 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1xdywquvz5g6r5wv6tpkj6chad0fkk459gf9ny6/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2wsdcwk/logo.png b/blockchains/juno/validators/assets/junovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2wsdcwk/logo.png new file mode 100644 index 000000000000..b39ad7ed7ff8 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2wsdcwk/logo.png differ diff --git a/blockchains/juno/validators/list.json b/blockchains/juno/validators/list.json new file mode 100644 index 000000000000..53db167fa7f0 --- /dev/null +++ b/blockchains/juno/validators/list.json @@ -0,0 +1,74 @@ +[ + { + "id": "junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa", + "name": "Cosmostation", + "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", + "website": "https://www.cosmostation.io/" + }, + { + "id": "junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw", + "name": "SG-1", + "description": "SG-1 - your favorite validator on Juno. We offer 100% Soft Slash protection.", + "website": "https://sg-1.online/" + }, + { + "id": "junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn", + "name": "DAO DAO", + "description": "A validator run by a DAO.", + "website": "https://daodao.zone/" + }, + { + "id": "junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "junovaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9uxyejze", + "name": "stakefish", + "description": "We are the leading staking service provider for blockchain projects. Join our community to help secure networks and earn rewards. We know staking.", + "website": "https://stake.fish/" + }, + { + "id": "junovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2wsdcwk", + "name": "Swiss Staking", + "description": "Never jailed. Perfect uptime. Airdrop eligibility. IBC relayer. Community contributor. Backing app-chains. High security approach.", + "website": "https://swiss-staking.ch/" + }, + { + "id": "junovaloper1afhtjur8js4589xymu346ca7a5y5293x7p64ca", + "name": "OmniFlix Network", + "description": "OmniFlix is a p2p network for creators, curators and their sovereign communities to mint, manage and monetize assets. Developed Cosmic Compass, winner of the Best Custom Zone category in Cosmos (GOZ) and run nodes on networks that share our vision.", + "website": "https://omniflix.network/" + }, + { + "id": "junovaloper1ka8v934kgrw6679fs9cuu0kesyl0ljjy2kdtrl", + "name": "PUPMØS", + "description": "wen witepupper?", + "website": "https://www.pupmos.zone" + }, + { + "id": "junovaloper1xdywquvz5g6r5wv6tpkj6chad0fkk459gf9ny6", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com" + }, + { + "id": "junovaloper1ssmt2aveqpc7e0ncgxt0tpj83ur623dvk7uvng", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "junovaloper1wd02ktcvpananlvd9u6jm3x3ap3vmw59jv9vez", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + } +] 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/kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq/logo.png b/blockchains/kava/validators/assets/kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u/logo.png b/blockchains/kava/validators/assets/kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1j4tymd9r3au3vm508l4jugdg7l892l2lmh4jry/logo.png b/blockchains/kava/validators/assets/kavavaloper1j4tymd9r3au3vm508l4jugdg7l892l2lmh4jry/logo.png new file mode 100644 index 000000000000..95674f5ffbf9 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1j4tymd9r3au3vm508l4jugdg7l892l2lmh4jry/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9/logo.png b/blockchains/kava/validators/assets/kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9/logo.png new file mode 100644 index 000000000000..e11781707123 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d/logo.png b/blockchains/kava/validators/assets/kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d/logo.png new file mode 100644 index 000000000000..f5f3ada9451c Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png b/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png index 3c29ee005d51..0888af01c5da 100644 Binary files a/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png and b/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1y8elet4hh0qpl9jq5hlkkejgl2gx845ekmdq55/logo.png b/blockchains/kava/validators/assets/kavavaloper1y8elet4hh0qpl9jq5hlkkejgl2gx845ekmdq55/logo.png new file mode 100644 index 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..236f6fc0178d 100644 --- a/blockchains/kava/validators/list.json +++ b/blockchains/kava/validators/list.json @@ -1,4 +1,22 @@ [ + { + "id": "kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "kavavaloper196w5nuha6u2ucwr65cqwnqrzxuemsyhv2c0lq8", + "name": "Sunflower 🌻", + "description": "Thanks to this sunflower, the plants defeated the zombies! She can be trusted! Retired. Now she's just validating.", + "website": "https://sunflowerstake.com/" + }, { "id": "kavavaloper1fwru9at8hsu7hmhu0zypdn3863xvdcg80nm5dv", "name": "OtterSync", @@ -11,9 +29,21 @@ "description": "0% fee delegation! Staking with Mega Validator is the safest and profitable option out there.", "website": "https://megavalidator.com" }, + { + "id": "kavavaloper1y8elet4hh0qpl9jq5hlkkejgl2gx845ekmdq55", + "name": "Atomic Nodes", + "description": "Atomic Nodes is a multi chain staking operator, trusted by over 200,000 delegators since 2019.", + "website": "https://atomicnodes.com" + }, + { + "id": "kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, { "id": "kavavaloper1xfyyvg9v66yef6cea5ruw8kaqw5a84kjd86r75", - "name": "0% Best APR ❤️ NodesByGirls", + "name": "NodesByGirls", "description": "We are a professional team with many years of experience in the crypto industry. Stake with us to get the best APR!", "website": "https://nodesbygirls.com" }, @@ -50,7 +80,7 @@ { "id": "kavavaloper1dede4flaq24j2g9u8f83vkqrqxe6cwzrxt5zsu", "name": "Stakin", - "description": "Your Trusted Crypto Rewards", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", "website": "https://stakin.com/" }, { @@ -127,9 +157,9 @@ }, { "id": "kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g", - "name": "Genesis Lab", - "description": "Genesis Lab is a validation nodes operator in PoS networks and blockchain-focused software development company", - "website": "https://genesislab.net" + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" }, { "id": "kavavaloper1ppj7c8tqt2e3rzqtmztsmd6ea6u3nz6qggcp5e", @@ -178,5 +208,17 @@ "name": "Allnodes.com ⚡️ 0% fee", "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", "website": "https://www.allnodes.com/kava/staking" + }, + { + "id": "kavavaloper1j4tymd9r3au3vm508l4jugdg7l892l2lmh4jry", + "name": "Stakewolle", + "description": "🚀 Professional validator 🔁Auto-compound with REStakeapp 🛡100% Slashing protection 🎁 All & Special Airdrops for our delegators http://linktr.ee/stakewolle", + "website": "https://stakewolle.com/" + }, + { + "id": "kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" } -] \ No newline at end of file +] diff --git a/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/info.json b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/info.json new file mode 100644 index 000000000000..598d710a816a --- /dev/null +++ b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "symbol": "USDT", + "type": "KAVAEVM", + "decimals": 6, + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "website": "https://tether.to", + "explorer": "https://explorer.kava.io/token/0x919C1c267BC06a7039e03fcc2eF738525769109c", + "status": "active", + "id": "0x919C1c267BC06a7039e03fcc2eF738525769109c", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/logo.png b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/logo.png new file mode 100644 index 000000000000..0a265affb2c8 Binary files /dev/null and b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/logo.png differ diff --git a/blockchains/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 000000000000..9c4951c081e3 --- /dev/null +++ b/blockchains/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,69 @@ +{ + "name": "Axelar Wrapped USDC", + "type": "KAVAEVM", + "symbol": "axlUSDC", + "decimals": 6, + "website": "https://axelar.network/", + "description": "Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click.", + "explorer": "https://explorer.kava.io/token/0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "status": "active", + "id": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "links": [ + { + "name": "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/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 000000000000..69911caea54f Binary files /dev/null and b/blockchains/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/kavaevm/info/info.json b/blockchains/kavaevm/info/info.json index dec5f2949b6a..dd878b46a84d 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", @@ -39,6 +40,7 @@ } ], "tags": [ - "defi" + "defi", + "dapp" ] } 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/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/info.json b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/info.json new file mode 100644 index 000000000000..ce344f192e4e --- /dev/null +++ b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/info.json @@ -0,0 +1,42 @@ +{ + "name": "Klaytn Dai", + "website": "http://makerdao.com", + "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", + "explorer": "https://scope.klaytn.com/token/0x5c74070fdea071359b86082bd9f9b3deaafbe32b", + "research": "https://research.binance.com/en/projects/dai", + "type": "KLAYTN", + "symbol": "KDAI", + "decimals": 18, + "status": "active", + "id": "0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MakerDAO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MakerDAO/" + }, + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-collateral-dai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/logo.png b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/logo.png new file mode 100644 index 000000000000..f62e11387ebe Binary files /dev/null and b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/logo.png differ diff --git a/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/info.json b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/info.json new file mode 100644 index 000000000000..b2ec7f4ba6c8 --- /dev/null +++ b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/info.json @@ -0,0 +1,36 @@ +{ + "name": "USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://scope.klaytn.com/token/0x6270b58be569a7c0b8f47594f191631ae5b2c86c", + "type": "KLAYTN", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/logo.png b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/logo.png new file mode 100644 index 000000000000..2191b105edec Binary files /dev/null and b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/logo.png differ diff --git a/blockchains/klaytn/info/info.json b/blockchains/klaytn/info/info.json index ecc422b944dc..7b32bdcab188 100644 --- a/blockchains/klaytn/info/info.json +++ b/blockchains/klaytn/info/info.json @@ -7,11 +7,15 @@ "symbol": "KLAY", "type": "coin", "decimals": 18, + "rpc_url": "https://public-node-api.klaytnapi.com/v1/cypress", "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "twitter", "url": "https://twitter.com/klaytn_official" } ] -} \ 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/kujira/validators/assets/kujiravaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z6yz0hy/logo.png b/blockchains/kujira/validators/assets/kujiravaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z6yz0hy/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/kujira/validators/assets/kujiravaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z6yz0hy/logo.png differ diff --git a/blockchains/kujira/validators/assets/kujiravaloper1esj2mkumg8q9l7wunkqzu85jvz7zrrcykeeka7/logo.png b/blockchains/kujira/validators/assets/kujiravaloper1esj2mkumg8q9l7wunkqzu85jvz7zrrcykeeka7/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/kujira/validators/assets/kujiravaloper1esj2mkumg8q9l7wunkqzu85jvz7zrrcykeeka7/logo.png differ diff --git a/blockchains/kujira/validators/assets/kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0/logo.png b/blockchains/kujira/validators/assets/kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/kujira/validators/assets/kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0/logo.png differ diff --git a/blockchains/kujira/validators/list.json b/blockchains/kujira/validators/list.json new file mode 100644 index 000000000000..062df0d4ece5 --- /dev/null +++ b/blockchains/kujira/validators/list.json @@ -0,0 +1,20 @@ +[ + { + "id": "kujiravaloper1esj2mkumg8q9l7wunkqzu85jvz7zrrcykeeka7", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "kujiravaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z6yz0hy", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + } +] \ No newline at end of file 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/DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi/logo.png b/blockchains/kusama/validators/assets/DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi/logo.png new file mode 100644 index 000000000000..0888af01c5da Binary files /dev/null and b/blockchains/kusama/validators/assets/DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi/logo.png differ diff --git a/blockchains/kusama/validators/assets/DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv/logo.png b/blockchains/kusama/validators/assets/DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv/logo.png new file mode 100644 index 000000000000..33273a1e37b6 Binary files /dev/null and b/blockchains/kusama/validators/assets/DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv/logo.png differ diff --git a/blockchains/kusama/validators/assets/DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ/logo.png b/blockchains/kusama/validators/assets/DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ/logo.png new file mode 100644 index 000000000000..0888af01c5da Binary files /dev/null and b/blockchains/kusama/validators/assets/DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ/logo.png differ diff --git a/blockchains/kusama/validators/assets/EDEVriQd4TpEHHyWnLbQHDYjY9avxxkWhNmBou4SHKixgt1/logo.png b/blockchains/kusama/validators/assets/EDEVriQd4TpEHHyWnLbQHDYjY9avxxkWhNmBou4SHKixgt1/logo.png new file mode 100644 index 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..438c042b734b --- /dev/null +++ b/blockchains/kusama/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "id": "DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv", + "name": "P2P.ORG/29", + "description": "P2P helps investors compound their cryptocurrency investments through non-custodial staking.", + "website": "https://p2p.org" + }, + { + "id": "EDEVriQd4TpEHHyWnLbQHDYjY9avxxkWhNmBou4SHKixgt1", + "name": "P2P.ORG/37", + "description": "P2P helps investors compound their cryptocurrency investments through non-custodial staking.", + "website": "https://p2p.org" + }, + { + "id": "F2VckTExmProzJnwNaN3YVqDoBPS1LyNVmyG8HUAygtDV3T", + "name": "P2P.ORG/38", + "description": "P2P helps investors compound their cryptocurrency investments through non-custodial staking.", + "website": "https://p2p.org" + }, + { + "id": "ESRBbWstgpPV1pVBsqjMo717rA8HLrtQvEUVwAGeFZyKcia", + "name": "Everstake", + "description": "Everstake is a staking-as-a-service company. We help institutional investors and regular token holders to profit off their crypto assets. Choose the most promising projects, delegate with Everstake, and make a stable passive income.", + "website": "https://everstake.one/" + }, + { + "id": "CmjHFdR59QAZMuyjDF5Sn4mwTgGbKMH2cErUFuf6UT51UwS", + "name": "COSMOON", + "description": "Cosmoon brings to cryptocurrency investors the best staking system with low fees.", + "website": "https://cosmoon.org" + }, + { + "id": "DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi", + "name": "Stakeflow/2", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + } +] \ No newline at end of file diff --git a/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 000000000000..4c30babcce61 --- /dev/null +++ b/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,69 @@ +{ + "name": "Axelar Wrapped USDC", + "symbol": "axlUSDC", + "type": "ETH", + "decimals": 6, + "description": "Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click.", + "website": "https://axelar.network/", + "explorer": "https://explorer.linea.build/token/0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "status": "active", + "id": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "links": [ + { + "name": "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/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 000000000000..69911caea54f Binary files /dev/null and b/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/linea/info/info.json b/blockchains/linea/info/info.json new file mode 100644 index 000000000000..1cbc7c1d9ed0 --- /dev/null +++ b/blockchains/linea/info/info.json @@ -0,0 +1,27 @@ +{ + "name": "Linea", + "website": "https://linea.build", + "description": "Linea is a network that scales the experience of Ethereum.", + "explorer": "https://explorer.linea.build", + "symbol": "ETH", + "type": "coin", + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/consensys" + }, + { + "name": "twitter", + "url": "https://twitter.com/LineaBuild" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linea/" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/info/logo.png b/blockchains/linea/info/logo.png new file mode 100644 index 000000000000..a94dca4ae17b Binary files /dev/null and b/blockchains/linea/info/logo.png differ diff --git a/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/info.json b/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/info.json new file mode 100644 index 000000000000..c69f990aa714 --- /dev/null +++ b/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Manta", + "type": "MANTA", + "symbol": "MANTA", + "decimals": 18, + "website": "https://manta.network", + "description": "Manta Pacific is the first EVM-equivalent ZK-application platform that is scalable and secure through Celestia DA and Polygon zkEVM.", + "explorer": "https://pacific-explorer.manta.network/token/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5", + "status": "active", + "id": "0x95CeF13441Be50d20cA4558CC0a27B601aC544E5", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/manta-network/" + }, + { + "name": "twitter", + "url": "https://twitter.com/MantaNetwork" + } + ] + } diff --git a/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/logo.png b/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/logo.png new file mode 100644 index 000000000000..cde76e4178a7 Binary files /dev/null and b/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/logo.png differ diff --git a/blockchains/manta/info/info.json b/blockchains/manta/info/info.json new file mode 100644 index 000000000000..dc725031def2 --- /dev/null +++ b/blockchains/manta/info/info.json @@ -0,0 +1,24 @@ +{ + "name": "Manta Pacific", + "website": "https://pacific.manta.network", + "description": "The first EVM-native modular execution layer for wide ZK applications adoption, with Manta’s universal circuit and zk interface.", + "explorer": "https://pacific-explorer.manta.network", + "symbol": "ETH", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "telegram", + "url": "https://t.me/mantanetworkofficial" + }, + { + "name": "twitter", + "url": "https://twitter.com/mantanetwork" + }, + { + "name": "github", + "url": "https://github.com/manta-network" + } + ] +} \ No newline at end of file diff --git a/blockchains/manta/info/logo.png b/blockchains/manta/info/logo.png new file mode 100644 index 000000000000..cde76e4178a7 Binary files /dev/null and b/blockchains/manta/info/logo.png differ diff --git a/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 000000000000..5094062a8742 --- /dev/null +++ b/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,21 @@ +{ + "name": "Axelar Wrapped USDC", + "symbol": "axlUSDC", + "type": "MANTLE", + "decimals": 6, + "description": "Axelar Wrapped USDC (axlUSDC) is a cryptocurrency and operates on the BNB Smart Chain (BEP20) platform.", + "website": "https://axelar.network/", + "explorer": "https://explorer.mantle.xyz/address/0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "status": "active", + "id": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/axelarcore" + }, + { + "name": "discord", + "url": "https://discord.com/invite/aRZ3Ra6f7D" + } + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 000000000000..69911caea54f Binary files /dev/null and b/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/mantle/info/info.json b/blockchains/mantle/info/info.json new file mode 100644 index 000000000000..e3f36c6d417b --- /dev/null +++ b/blockchains/mantle/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mantle Chain", + "website": "https://www.mantle.xyz", + "description": "Mantle Network is a technology stack for scaling Ethereum, and we strive to be EVM-compatible while doing so.", + "explorer": "https://explorer.mantle.xyz/blocks", + "symbol": "MNT", + "rpc_url": "https://rpc.mantle.xyz", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/mantle/info/logo.png b/blockchains/mantle/info/logo.png new file mode 100644 index 000000000000..a6393b66b7a5 Binary files /dev/null and b/blockchains/mantle/info/logo.png differ diff --git a/blockchains/mars/info/info.json b/blockchains/mars/info/info.json new file mode 100644 index 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/mars/validators/assets/marsvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z9gkghl/logo.png b/blockchains/mars/validators/assets/marsvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z9gkghl/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z9gkghl/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2/logo.png b/blockchains/mars/validators/assets/marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2/logo.png new file mode 100644 index 000000000000..b9144cc5256c Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq/logo.png b/blockchains/mars/validators/assets/marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh/logo.png b/blockchains/mars/validators/assets/marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw/logo.png b/blockchains/mars/validators/assets/marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw/logo.png new file mode 100644 index 000000000000..e3d5db9dd90c Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e/logo.png b/blockchains/mars/validators/assets/marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e/logo.png new file mode 100644 index 000000000000..7d46ea7269f9 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e/logo.png differ diff --git a/blockchains/mars/validators/list.json b/blockchains/mars/validators/list.json new file mode 100644 index 000000000000..a95df352375f --- /dev/null +++ b/blockchains/mars/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "id": "marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e", + "name": "Smart Stake 📈📊 Analytics Hub", + "description": "Your hub for validator, network, decentralization, and relayer analytics. Support @ t.me/SmartStake. Like our services? Delegate on any of the networks listed @ smartstake.io", + "website": "https://mars.smartstake.io/" + }, + { + "id": "marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw", + "name": "Larry Engineer", + "description": "validating with bare metal server from the comfort of home", + "website": "https://larry.engineer/" + }, + { + "id": "marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at hello@polkachu.com", + "website": "https://polkachu.com/" + }, + { + "id": "marsvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z9gkghl", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + } +] \ No newline at end of file diff --git a/blockchains/metis/info/info.json b/blockchains/metis/info/info.json index d1827512132a..04b86e2f4405 100644 --- a/blockchains/metis/info/info.json +++ b/blockchains/metis/info/info.json @@ -10,6 +10,9 @@ "rpc_url": "https://andromeda.metis.io/?owner=1088", "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "twitter", 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/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/info.json b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/info.json new file mode 100644 index 000000000000..cfc51ffaabd5 --- /dev/null +++ b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/info.json @@ -0,0 +1,41 @@ +{ + "name": "BNB pegged BUSD", + "website": "https://paxos.com/busd", + "description": "BNB pegged BUSD is a token issued by Binance on Smart Chain; its price is pegged to BUSD (BUSD ERC20) at a ratio of 1:1.", + "explorer": "https://moonscan.io/token/0xa649325aa7c5093d12d6f98eb4378deae68ce23f", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "MOONBEAM", + "symbol": "BUSD", + "decimals": 18, + "status": "active", + "id": "0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/binance-chain/" + }, + { + "name": "twitter", + "url": "https://twitter.com/binance_dex" + }, + { + "name": "blog", + "url": "https://binance.org/en/blog/" + }, + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binance-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/logo.png b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/logo.png new file mode 100644 index 000000000000..76d02e370b6d Binary files /dev/null and b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/logo.png differ diff --git a/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/info.json b/blockchains/moonbeam/assets/0xCa01a1D0993565291051daFF390892518ACfAD3A/info.json new file mode 100644 index 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 9120b9f950f4..3f0697be8c5f 100644 --- a/blockchains/moonbeam/info/info.json +++ b/blockchains/moonbeam/info/info.json @@ -10,6 +10,9 @@ "rpc_url": "https://moonbeam.public.blastapi.io", "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "twitter", diff --git a/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json b/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json new file mode 100644 index 000000000000..29a7d072a285 --- /dev/null +++ b/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://moonriver.moonscan.io/token/0xb44a9b6905af7c801311e8f4e76932ee959c663c", + "type": "MOONRIVER", + "symbol": "USDT", + "decimals": 18, + "status": "active", + "id": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png b/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png new file mode 100644 index 000000000000..f4c1f1e7ecba Binary files /dev/null and b/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png differ diff --git a/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/info.json b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/info.json new file mode 100644 index 000000000000..e0fc82fd009c --- /dev/null +++ b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/info.json @@ -0,0 +1,36 @@ +{ + "name": "USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://moonriver.moonscan.io/token/0xe3f5a90f9cb311505cd691a46596599aa1a0ad7d", + "type": "MOONRIVER", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/logo.png b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/logo.png new file mode 100644 index 000000000000..c4def0472868 Binary files /dev/null and b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/logo.png differ 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/nativecanto/validators/assets/cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u/logo.png b/blockchains/nativecanto/validators/assets/cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/nativecanto/validators/assets/cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u/logo.png differ diff --git a/blockchains/nativecanto/validators/assets/cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz/logo.png b/blockchains/nativecanto/validators/assets/cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/nativecanto/validators/assets/cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz/logo.png differ diff --git a/blockchains/nativecanto/validators/list.json b/blockchains/nativecanto/validators/list.json new file mode 100644 index 000000000000..43f038c1a44b --- /dev/null +++ b/blockchains/nativecanto/validators/list.json @@ -0,0 +1,14 @@ +[ + { + "id": "cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + } +] \ No newline at end of file diff --git a/blockchains/nativeevmos/info/info.json b/blockchains/nativeevmos/info/info.json index 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/evmosvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgw63w87l/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgw63w87l/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgw63w87l/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w/logo.png differ diff --git a/blockchains/nativeevmos/validators/list.json b/blockchains/nativeevmos/validators/list.json index 2f4fa32cc760..cd69b728716c 100644 --- a/blockchains/nativeevmos/validators/list.json +++ b/blockchains/nativeevmos/validators/list.json @@ -1,4 +1,16 @@ [ + { + "id": "evmosvaloper1k875gxzhegt59na74z5a8ejhen2thhvejk4r2e", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, { "id": "evmosvaloper1q3aejvmwj9dxturgk00jv7hkwxld7ny7642tr8", "name": "heisenbug", @@ -23,6 +35,12 @@ "description": "The PoS Validator for SmartContract chains", "website": "http://disperze.network/" }, + { + "id": "evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, { "id": "evmosvaloper1f35jtt5m68zlxkpxn75403vv82cchahqvfsrup", "name": "Cosmostation", @@ -44,7 +62,7 @@ { "id": "evmosvaloper1sq9ggymzx02vcp7kf6yyar83scfm4r22swu673", "name": "Stakin", - "description": "Your Trusted Crypto Rewards", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", "website": "https://stakin.com/" }, { @@ -64,5 +82,17 @@ "name": "Allnodes.com⚡️", "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", "website": "https://www.allnodes.com/evmos/staking" + }, + { + "id": "evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "evmosvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgw63w87l", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" } ] diff --git a/blockchains/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/info.json b/blockchains/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/info.json new file mode 100644 index 000000000000..9d30b30ff699 --- /dev/null +++ b/blockchains/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/info.json @@ -0,0 +1,29 @@ +{ + "name": "Arbitrum", + "type": "INJECTIVE", + "symbol": "ARB", + "decimals": 8, + "website": "https://arbitrum.foundation/", + "description": "$ARB tokens can be used to vote on Arbitrum DAO governance proposals, allowing $ARB holders to collectively shape the future of Arbitrum protocols and chains. Token holders can also delegate their voting power to delegates.", + "explorer": "https://explorer.injective.network/asset/?tokenType=tokenFactory&denom=factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd", + "status": "active", + "id": "inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd", + "links": [ + { + "name": "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/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/logo.png b/blockchains/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/logo.png new file mode 100644 index 000000000000..5402ed6bc17a Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/logo.png differ diff --git a/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/info.json b/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/info.json new file mode 100644 index 000000000000..4074079536c4 --- /dev/null +++ b/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Talis", + "website": "https://injective.talis.art", + "description": "In the dynamic landscape of NFTs and cryptocurrency, platforms that offer innovative solutions and tools play a crucial role in shaping the ecosystem.", + "explorer": "https://explorer.injective.network/asset/?tokenType=tokenFactory&denom=factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis", + "type": "INJECTIVE", + "symbol": "TALIS", + "decimals": 6, + "status": "active", + "id": "inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ProtocolTalis" + }, + { + "name": "telegram", + "url": "https://t.me/talisprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/logo.png b/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/logo.png new file mode 100644 index 000000000000..4dc87c4c30ad Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/logo.png differ diff --git a/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/info.json b/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/info.json new file mode 100644 index 000000000000..28789d5cbff0 --- /dev/null +++ b/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/info.json @@ -0,0 +1,40 @@ +{ + "name": "Chiliz", + "website": "https://chiliz.com", + "description": "Chiliz, powering Socios.com, aims to give sports and esports fans the ability to crowd-manage their favorite teams, games, leagues, and events.", + "explorer": "https://explorer.injective.network/asset/?tokenType=tokenFactory&denom=factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh", + "type": "INJECTIVE", + "symbol": "CHZ", + "decimals": 8, + "status": "active", + "id": "inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh", + "tags": [ + "nft" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/chiliz_io" + }, + { + "name": "twitter", + "url": "https://twitter.com/chiliZ/" + }, + { + "name": "facebook", + "url": "https://facebook.com/chiliZdotcom/" + }, + { + "name": "blog", + "url": "https://medium.com/chiliz" + }, + { + "name": "whitepaper", + "url": "https://chiliz.com/docs/CHZ_whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chiliz/" + } + ] +} \ No newline at end of file diff --git a/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/logo.png b/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/logo.png new file mode 100644 index 000000000000..7db7a4585f7d Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/logo.png differ diff --git a/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/info.json b/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/info.json new file mode 100644 index 000000000000..5c36e623c4a3 --- /dev/null +++ b/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/info.json @@ -0,0 +1,37 @@ +{ + "name": "USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://explorer.injective.network/asset/?tokenType=tokenFactory&denom=factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk", + "type": "INJECTIVE", + "symbol": "USDCET", + "decimals": 6, + "status": "active", + "id": "inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/logo.png b/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/logo.png new file mode 100644 index 000000000000..c4def0472868 Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/logo.png differ diff --git a/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/info.json b/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/info.json new file mode 100644 index 000000000000..2402cacd31c5 --- /dev/null +++ b/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/info.json @@ -0,0 +1,32 @@ +{ + "name": "Solana", + "website": "https://solana.com/", + "description": "Solana is the worlds most performant blockchain in the world at 710k transactions per second. 710k TPS is achieved by encoding the passage of time as data.", + "explorer": "https://explorer.injective.network/asset/?tokenType=tokenFactory&denom=factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3", + "symbol": "SOL", + "type": "INJECTIVE", + "decimals": 8, + "status": "active", + "id": "inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/solana-labs" + }, + { + "name": "twitter", + "url": "https://twitter.com/solana" + }, + { + "name": "reddit", + "url": "https://reddit.com/solana" + }, + { + "name": "whitepaper", + "url": "https://github.com/solana-labs/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/logo.png b/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/logo.png new file mode 100644 index 000000000000..1d045ec77ef4 Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/logo.png differ diff --git a/blockchains/nativeinjective/info/info.json b/blockchains/nativeinjective/info/info.json new file mode 100644 index 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/injvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgwg3jckk/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgwg3jckk/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgwg3jckk/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4/logo.png new file mode 100644 index 000000000000..f5f3ada9451c Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1esud09zs5754g5nlkmrgxsfdj276xm64cgmd3w/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1esud09zs5754g5nlkmrgxsfdj276xm64cgmd3w/logo.png new file mode 100644 index 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/assets/injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1tly62qxj2t8wz2zw4d7p37jcysvgasqa0zjtlk/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1tly62qxj2t8wz2zw4d7p37jcysvgasqa0zjtlk/logo.png new file mode 100644 index 000000000000..e11781707123 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1tly62qxj2t8wz2zw4d7p37jcysvgasqa0zjtlk/logo.png differ diff --git a/blockchains/nativeinjective/validators/list.json b/blockchains/nativeinjective/validators/list.json new file mode 100644 index 000000000000..573d1c564370 --- /dev/null +++ b/blockchains/nativeinjective/validators/list.json @@ -0,0 +1,86 @@ +[ + { + "id": "injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts", + "name": "AutoStake.com", + "description": "Earn extra Rewards on AutoStake.com 🛡️ 100% Refund on soft slashing backed by a SAFU fund", + "website": "https://autostake.com/" + }, + { + "id": "injvaloper1hsxaln75wjs033t3spd8a0gawl4jvxawn6v849", + "name": "Citadel.one", + "description": "Citadel.one is a multi-asset non-custodial staking platform that lets anyone become a part of decentralized infrastructure and earn passive income. Stake with our nodes or any other validator across multiple networks in a few clicks", + "website": "https://citadel.one/" + }, + { + "id": "injvaloper1lsuqpgm8kgwpq96ewyew26xnfwyn3lh3ncrkrk", + "name": "Binance Staking", + "description": "Simple & Secure. Search popular coins and start earning.", + "website": "https://www.binance.com/en/earn" + }, + { + "id": "injvaloper125fkz3mq6qxxpkmphdl3ep92t0d3y9695mhclt", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at hello@polkachu.com", + "website": "https://polkachu.com/" + }, + { + "id": "injvaloper134dct56cq5v7uerxcy2cn4m06mqf4dxrlgpp24", + "name": "Everstake", + "description": "Everstake is a staking-as-a-service company. We help institutional investors and regular token holders to profit off their crypto assets. Choose the most promising projects, delegate with Everstake, and make a stable passive income.", + "website": "https://everstake.one/" + }, + { + "id": "injvaloper1ffsdugrhfzdyxltjve8v68n6aazyc6p97uhfn0", + "name": "Helios Staking", + "description": "Helios Staking is a Staking-as-a-Service provider strictly dedicated to the growth of Proof of Stake (PoS) blockchain networks.", + "website": "https://heliosstaking.com/" + }, + { + "id": "injvaloper1esud09zs5754g5nlkmrgxsfdj276xm64cgmd3w", + "name": "Imperator.co", + "description": "100% refund on downtime slashing -- Professional Delegated Proof-of-Stake Network Validator", + "website": "https://imperator.co/" + }, + { + "id": "injvaloper1g4d6dmvnpg7w7yugy6kplndp7jpfmf3krtschp", + "name": "Figment", + "description": "The complete staking solution for 250+ institutional clients including asset managers, custodians, exchanges, foundations, and wallets to earn rewards on their digital assets.", + "website": "https://figment.io/" + }, + { + "id": "injvaloper1kpfxtqt5cmlew46dem32fqlk5g6k4wyueh4szu", + "name": "Stakewolle.com | Auto-compound", + "description": "🚀 Professional Cosmos Validator & Engineer 🔁Auto-compound with REStakeapp 🛡Slash insurance 🎁 All Airdrops for delegators 🔗 Twitter, Telegram and Youtube | Stakewolle.com", + "website": "https://stakewolle.com/" + }, + { + "id": "injvaloper1h4t5dqenq86znza06thc64pzyxtme7zltyeg8k", + "name": "Ubik Capital", + "description": "Ubik Capital secures major proof of stake networks and is a trusted staking provider with years of industry experience. By delegating to us, you agree to the Terms of Service at: https://ubik.capital", + "website": "https://ubik.capital/" + }, + { + "id": "injvaloper1tly62qxj2t8wz2zw4d7p37jcysvgasqa0zjtlk", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "injvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgwg3jckk", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + } +] diff --git a/blockchains/near/info/info.json b/blockchains/near/info/info.json index c11741e51773..c493ea528e04 100644 --- a/blockchains/near/info/info.json +++ b/blockchains/near/info/info.json @@ -8,6 +8,9 @@ "type": "coin", "decimals": 24, "status": "active", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", diff --git a/blockchains/near/validators/assets/astro-stakers.poolv1.near/logo.png b/blockchains/near/validators/assets/astro-stakers.poolv1.near/logo.png new file mode 100644 index 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/autostake.poolv1.near/logo.png b/blockchains/near/validators/assets/autostake.poolv1.near/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/near/validators/assets/autostake.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/epic.poolv1.near/logo.png b/blockchains/near/validators/assets/epic.poolv1.near/logo.png new file mode 100644 index 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/lavenderfive.poolv1.near/logo.png b/blockchains/near/validators/assets/lavenderfive.poolv1.near/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/near/validators/assets/lavenderfive.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/stakeflow.poolv1.near/logo.png b/blockchains/near/validators/assets/stakeflow.poolv1.near/logo.png new file mode 100644 index 000000000000..0888af01c5da Binary files /dev/null and b/blockchains/near/validators/assets/stakeflow.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/stakin.poolv1.near/logo.png b/blockchains/near/validators/assets/stakin.poolv1.near/logo.png new file mode 100644 index 000000000000..eaf66cb5cbb1 Binary files /dev/null and b/blockchains/near/validators/assets/stakin.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/trust-nodes.poolv1.near/logo.png b/blockchains/near/validators/assets/trust-nodes.poolv1.near/logo.png new file mode 100644 index 000000000000..f5f3ada9451c Binary files /dev/null and b/blockchains/near/validators/assets/trust-nodes.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/w3coins.poolv1.near/logo.png b/blockchains/near/validators/assets/w3coins.poolv1.near/logo.png new file mode 100644 index 000000000000..e407be374c08 Binary files /dev/null and b/blockchains/near/validators/assets/w3coins.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/zavodil.poolv1.near/logo.png b/blockchains/near/validators/assets/zavodil.poolv1.near/logo.png new file mode 100644 index 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..aa60e1f46227 --- /dev/null +++ b/blockchains/near/validators/list.json @@ -0,0 +1,74 @@ +[ + { + "id": "trust-nodes.poolv1.near", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "staked.poolv1.near", + "name": "staked", + "description": "staked.poolv1.near is a trusted Proof-of-Stake infrastructure provider and validator to comfortably stake your coins and earn rewards.", + "website": "https://www.stakingrewards.com/savings/stakedpoolv1near/" + }, + { + "id": "astro-stakers.poolv1.near", + "name": "astro-stakers", + "description": "We're a team of silicon valley engineers committed to providing low-fee staking services for the NEAR community.", + "website": "https://astrostakers.com" + }, + { + "id": "zavodil.poolv1.near", + "name": "zavodil", + "description": "Permanent 1% fee from community-friendly node zavodil.poolv1.near launched by early NEAR adopter, who made popular NEAR toolings and dapps.", + "website": "https://zavodil.ru/" + }, + { + "id": "autostake.poolv1.near", + "name": "AutoStake.com", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund 🛡️", + "website": "https://autostake.com" + }, + { + "id": "epic.poolv1.near", + "name": "epic", + "description": "epic.poolv1.near is a trusted Proof-of-Stake infrastructure provider and validator to comfortably stake your coins and earn rewards with NEAR Protocol.", + "website": "https://www.stakingrewards.com/savings/epicpoolv1near/" + }, + { + "id": "everstake.poolv1.near", + "name": "everstake", + "description": "The NEAR Protocol stands out as a user-friendly, efficient, and scalable Proof-of-Stake blockchain that enables the efficient development of decentralized applications. Its unique design simplifies the lifecycle of dApp development and management, thereby promoting community-led innovation on a global scale.", + "website": "https://everstake.one/staking/near" + }, + { + "id": "p2p-org.poolv1.near", + "name": "p2p-org", + "description": "P2P Validator helps investors compound their cryptocurrency investments by participating in staking. We offer secure, non-custodial staking services across a range of top-tier networks with over $3.2 billion in total assets staked.", + "website": "https://p2p.org/networks/near" + }, + { + "id": "stakin.poolv1.near", + "name": "Stakin", + "description": "NEAR staking services by an experienced enterprise validator trusted by institutions and the communities", + "website": "https://stakin.com" + }, + { + "id": "stakeflow.poolv1.near", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "lavenderfive.poolv1.near", + "name": "Lavender.Five Nodes 🐝 | 1% Commission", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "w3coins.poolv1.near", + "name": "w3coins", + "description": "Stake Your Cryptocurrency with us to Maximize Your Earnings", + "website": "https://www.w3coins.io/" + } +] 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/neon/info/info.json b/blockchains/neon/info/info.json new file mode 100644 index 000000000000..88c9cb524d6c --- /dev/null +++ b/blockchains/neon/info/info.json @@ -0,0 +1,24 @@ +{ + "name": "Neon EVM", + "website": "https://neonevm.org", + "description": "Neon EVM is a smart contract on Solana. Solana is a fast-growing blockchain, which uses a proof-of-history consensus mechanism.", + "explorer": "https://neonscan.org", + "symbol": "NEON", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/neonlabsorg/neon-evm" + }, + { + "name": "twitter", + "url": "https://twitter.com/Neon_EVM" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/neon/info/logo.png b/blockchains/neon/info/logo.png new file mode 100644 index 000000000000..8368ca2e5ecc Binary files /dev/null and b/blockchains/neon/info/logo.png differ diff --git a/blockchains/neutron/info/info.json b/blockchains/neutron/info/info.json new file mode 100644 index 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..b09d390df17f 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/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/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json b/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json new file mode 100644 index 000000000000..6fdd822c126a --- /dev/null +++ b/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json @@ -0,0 +1,24 @@ +{ + "name": "First Digital USD", + "symbol": "FDUSD", + "type": "OPBNB", + "decimals": 18, + "description": "FDUSD provides users with a stable digital currency that is backed by fiat currency, which can help to reduce the volatility in the cryptocurrency market.", + "website": "https://firstdigitallabs.com", + "explorer": "https://opbnbscan.com/token/0x50c5725949a6f0c72e6c4a641f24049a917db0cb", + "status": "active", + "id": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/FDLabsHQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/first-digital-usd/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png b/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png new file mode 100644 index 000000000000..1a880b8aef6b Binary files /dev/null and b/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png differ diff --git a/blockchains/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/info.json b/blockchains/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/info.json new file mode 100644 index 000000000000..c2f004fe836d --- /dev/null +++ b/blockchains/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/info.json @@ -0,0 +1,25 @@ +{ + "name": "Tether USD", + "symbol": "USDT", + "type": "OPBNB", + "decimals": 18, + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "website": "https://tether.to", + "explorer": "https://opbnbscan.com/token/0x9e5aac1ba1a2e6aed6b32689dfcf62a509ca96f3", + "status": "active", + "id": "0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "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/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/logo.png b/blockchains/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/logo.png new file mode 100644 index 000000000000..a70aad962615 Binary files /dev/null and b/blockchains/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/logo.png differ diff --git a/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/info.json b/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/info.json new file mode 100644 index 000000000000..908b4323e961 --- /dev/null +++ b/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/info.json @@ -0,0 +1,11 @@ +{ + "name": "CUBISWAP", + "symbol": "CUBI", + "type": "OPBNB", + "decimals": 18, + "description": "CUBISwap is a Decentralized Autonomous Organization (DAO) that offers a full suite of tools to explore and engage with decentralized finance opportunities.", + "website": "https://www.cubiswap.finance/", + "explorer": "https://opbnbscan.com/token/0xb01d49c26416a352fac4fbb3d555d5f2543e3247", + "status": "active", + "id": "0xB01D49C26416a352fac4Fbb3D555d5F2543E3247" +} \ No newline at end of file diff --git a/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/logo.png b/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/logo.png new file mode 100644 index 000000000000..3d004e499b38 Binary files /dev/null and b/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/logo.png differ diff --git a/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/info.json b/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/info.json new file mode 100644 index 000000000000..43e4c4da1fec --- /dev/null +++ b/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/info.json @@ -0,0 +1,15 @@ +{ + "name": "Wrapped BNB", + "symbol": "WBNB", + "type": "OPBNB", + "decimals": 18, + "description": "As the native coin of Binance Chain, BNB has multiple use cases: fueling transactions on the Chain, paying for transaction fees on Binance Exchange, making in-store payments, and many more.", + "website": "https://binance.org", + "explorer": "https://opbnbscan.com/token/0xb97fe5f3e5bf1ddac8ea1d2fa77f0a45cdb1dcec", + "research": "https://research.binance.com/en/projects/bnb", + "status": "active", + "id": "0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/logo.png b/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/logo.png new file mode 100644 index 000000000000..418a0d0271e6 Binary files /dev/null and b/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/logo.png differ diff --git a/blockchains/opbnb/info/info.json b/blockchains/opbnb/info/info.json new file mode 100644 index 000000000000..b760a47e862b --- /dev/null +++ b/blockchains/opbnb/info/info.json @@ -0,0 +1,23 @@ +{ + "name": "opBNB", + "website": "https://opbnb.bnbchain.org/en", + "description": "An Optimized Layer-2 Solution That Delivers Lower Fees And Higher Throughput To Unlock The Full Potential Of The BNB Chain.", + "explorer": "https://opbnbscan.com/", + "type": "coin", + "symbol": "BNB", + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "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..840d4766aff8 Binary files /dev/null and b/blockchains/opbnb/info/logo.png differ diff --git a/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/info.json b/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/info.json new file mode 100644 index 000000000000..359737100dd2 --- /dev/null +++ b/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/info.json @@ -0,0 +1,28 @@ +{ + "name": "USD Coin", + "type": "OPTIMISM", + "symbol": "USDC", + "decimals": 6, + "website": "https://www.centre.io/", + "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", + "explorer": "https://optimistic.etherscan.io/token/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85", + "status": "active", + "id": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "github", + "url": "https://github.com/centrehq" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/logo.png b/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/logo.png new file mode 100644 index 000000000000..b6f150d8a7d4 Binary files /dev/null and b/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/logo.png differ diff --git a/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json new file mode 100644 index 000000000000..8205112f5e14 --- /dev/null +++ b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json @@ -0,0 +1,25 @@ +{ + "name": "CyberConnect", + "type": "OPTIMISM", + "symbol": "CYBER", + "decimals": 18, + "website": "https://cyberconnect.me/", + "description": "CyberConnect is a Web3 social network that enables developers to create social applications empowering users to own their digital identity, content, connections, and interactions.", + "explorer": "https://optimistic.etherscan.io/token/0x14778860e937f509e651192a90589de711fb88a9", + "status": "active", + "id": "0x14778860E937f509e651192a90589dE711Fb88a9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CyberConnectHQ" + }, + { + "name": "github", + "url": "https://github.com/cyberconnecthq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cyberconnect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png new file mode 100644 index 000000000000..b26b7b808fb1 Binary files /dev/null and b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/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..cd4da59762e8 --- /dev/null +++ b/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/info.json @@ -0,0 +1,28 @@ +{ + "name": "USD Coin (Bridged from Ethereum)", + "type": "OPTIMISM", + "symbol": "USDC.e", + "decimals": 6, + "website": "https://www.centre.io/", + "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", + "explorer": "https://optimistic.etherscan.io/token/0x7f5c764cbc14f9669b88837ca1490cca17c31607", + "status": "active", + "id": "0x7F5c764cBc14f9669B88837ca1490cCa17c31607", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "github", + "url": "https://github.com/centrehq" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/logo.png b/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/logo.png new file mode 100644 index 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/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/optimism/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 000000000000..4a17a288dce6 --- /dev/null +++ b/blockchains/optimism/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,69 @@ +{ + "name": "Axelar Wrapped USDC", + "type": "OPTIMISM", + "symbol": "axlUSDC", + "decimals": 6, + "website": "https://axelar.network/", + "description": "Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click.", + "explorer": "https://optimistic.etherscan.io/token/0xeb466342c4d449bc9f53a865d5cb90586f405215", + "status": "active", + "id": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "links": [ + { + "name": "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/optimism/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png b/blockchains/optimism/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png new file mode 100644 index 000000000000..69911caea54f Binary files /dev/null and b/blockchains/optimism/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/info.json b/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/info.json new file mode 100644 index 000000000000..bc6f22c13882 --- /dev/null +++ b/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/info.json @@ -0,0 +1,25 @@ +{ + "name": "Shapeshift FOX", + "symbol": "FOX", + "type": "OPTIMISM", + "decimals": 18, + "description": "FOX is ShapeShift’s official loyalty token. Holders of FOX enjoy zero-commission trading and win ongoing USDC crypto payments from Rainfall (payments increase in proportion to your FOX holdings). ", + "website": "https://shapeshift.com/fox-token", + "explorer": "https://optimistic.etherscan.io/token/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174", + "status": "active", + "id": "0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/shapeshift_io" + }, + { + "name": "telegram", + "url": "https://t.me/shapeshiftofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fox-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/logo.png b/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/logo.png new file mode 100644 index 000000000000..d565ce6e440a Binary files /dev/null and b/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/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/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/info.json b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/info.json new file mode 100644 index 000000000000..bc934f9a2d05 --- /dev/null +++ b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/info.json @@ -0,0 +1,25 @@ +{ + "name": "Worldcoin", + "website": "https://worldcoin.org/", + "description": "The Worldcoin system revolves around World ID, a privacy-preserving global identity network. World ID enables users to verify their humanness online (`Proof of Personhood`) while maintaining their privacy through zero-knowledge proofs.", + "explorer": "https://optimistic.etherscan.io/token/0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1", + "type": "OPTIMISM", + "symbol": "WLD", + "decimals": 18, + "status": "active", + "id": "0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/worldcoin" + }, + { + "name": "telegram", + "url": "https://t.me/worldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/worldcoin-org/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/logo.png b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/logo.png new file mode 100644 index 000000000000..cb7f6e3935a8 Binary files /dev/null and b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/logo.png differ diff --git a/blockchains/optimism/info/info.json b/blockchains/optimism/info/info.json index 8bb2e265b6f5..64c91b39ca00 100644 --- a/blockchains/optimism/info/info.json +++ b/blockchains/optimism/info/info.json @@ -10,5 +10,8 @@ "decimals": 18, "status": "active", "rpc_url": "https://mainnet.optimism.io", - "links": [] + "links": [], + "tags": [ + "dapp" + ] } diff --git a/blockchains/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/evmosvaloper1k875gxzhegt59na74z5a8ejhen2thhvejk4r2e/logo.png b/blockchains/osmosis/validators/assets/evmosvaloper1k875gxzhegt59na74z5a8ejhen2thhvejk4r2e/logo.png new file mode 100644 index 000000000000..f5f3ada9451c Binary files /dev/null and b/blockchains/osmosis/validators/assets/evmosvaloper1k875gxzhegt59na74z5a8ejhen2thhvejk4r2e/logo.png differ diff --git a/blockchains/osmosis/validators/assets/evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9/logo.png b/blockchains/osmosis/validators/assets/evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9/logo.png new file mode 100644 index 000000000000..e11781707123 Binary files /dev/null and b/blockchains/osmosis/validators/assets/evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9/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/osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt/logo.png b/blockchains/osmosis/validators/assets/osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt/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/osmovaloper1f7jtv9sd3g9jay64zrydfqh7l3eqdzgs289m8u/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1f7jtv9sd3g9jay64zrydfqh7l3eqdzgs289m8u/logo.png new file mode 100644 index 000000000000..f5f3ada9451c Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1f7jtv9sd3g9jay64zrydfqh7l3eqdzgs289m8u/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n/logo.png index 1d1512c79d71..9b28ec000f28 100644 Binary files a/blockchains/osmosis/validators/assets/osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n/logo.png and b/blockchains/osmosis/validators/assets/osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme/logo.png new file mode 100644 index 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/list.json b/blockchains/osmosis/validators/list.json index dd6d35d4ab98..0e06644c87fc 100644 --- a/blockchains/osmosis/validators/list.json +++ b/blockchains/osmosis/validators/list.json @@ -1,4 +1,22 @@ [ + { + "id": "osmovaloper1f7jtv9sd3g9jay64zrydfqh7l3eqdzgs289m8u", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "osmovaloper1cm83xqns9sqhv9a8vd6fggt6mvuu8mmzszknae", + "name": "NodesByGirls", + "description": "We are a professional team with many years of experience in the crypto industry. Stake with us to get the best APR!", + "website": "https://nodesbygirls.com/" + }, { "id": "osmovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww24nrlnx", "name": "Swiss Staking", @@ -6,10 +24,10 @@ "website": "https://swiss-staking.ch" }, { - "id": "osmovaloper1cm83xqns9sqhv9a8vd6fggt6mvuu8mmzszknae", - "name": "Best APR ❤️ 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": "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", @@ -44,8 +62,8 @@ { "id": "osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n", "name": "Lavender.Five Nodes 🐝", - "description": "Lavender.Five Nodes is committed to providing world class validator services to make your life easy, including 100% slash protection. Come say hi! https://twitter.com/lavender_five", - "website": "https://www.lavenderfive.com/" + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" }, { "id": "osmovaloper1xgqr7pn80g6w398wzdmye3lu6wsgk32sw670ec", @@ -65,6 +83,12 @@ "description": "Transparent & professional staking validator with automated monitoring tools.", "website": "https://smartstake.io" }, + { + "id": "osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, { "id": "osmovaloper1xwazl8ftks4gn00y5x3c47auquc62ssuh8af89", "name": "jabbey", @@ -103,8 +127,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/persistence/validators/assets/persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty/logo.png b/blockchains/persistence/validators/assets/persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1xykmyvzk88qrlqh3wuw4jckewleyygupsumyj5/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1xykmyvzk88qrlqh3wuw4jckewleyygupsumyj5/logo.png new file mode 100644 index 000000000000..4b09813738a9 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1xykmyvzk88qrlqh3wuw4jckewleyygupsumyj5/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1y9h20gplhj55agqe3ntgch666yjx4qy0yr3mhu/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1y9h20gplhj55agqe3ntgch666yjx4qy0yr3mhu/logo.png new file mode 100644 index 000000000000..0888af01c5da Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1y9h20gplhj55agqe3ntgch666yjx4qy0yr3mhu/logo.png differ diff --git a/blockchains/persistence/validators/list.json b/blockchains/persistence/validators/list.json new file mode 100644 index 000000000000..f472f5a714ab --- /dev/null +++ b/blockchains/persistence/validators/list.json @@ -0,0 +1,26 @@ +[ + { + "id": "persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "persistencevaloper1y9h20gplhj55agqe3ntgch666yjx4qy0yr3mhu", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "persistencevaloper1xykmyvzk88qrlqh3wuw4jckewleyygupsumyj5", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + } +] \ No newline at end of file diff --git a/blockchains/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/polkadot/validators/assets/13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61/logo.png b/blockchains/polkadot/validators/assets/13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61/logo.png new file mode 100644 index 000000000000..0888af01c5da Binary files /dev/null and b/blockchains/polkadot/validators/assets/13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61/logo.png differ diff --git a/blockchains/polkadot/validators/assets/14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb/logo.png b/blockchains/polkadot/validators/assets/14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb/logo.png new file mode 100644 index 000000000000..0888af01c5da Binary files /dev/null and b/blockchains/polkadot/validators/assets/14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb/logo.png differ diff --git a/blockchains/polkadot/validators/assets/16cDjCXSYGRDpEett39taTgMAN7LKnyaafa5MgfbUmpsERW8/logo.png b/blockchains/polkadot/validators/assets/16cDjCXSYGRDpEett39taTgMAN7LKnyaafa5MgfbUmpsERW8/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/polkadot/validators/assets/16cDjCXSYGRDpEett39taTgMAN7LKnyaafa5MgfbUmpsERW8/logo.png differ diff --git a/blockchains/polkadot/validators/list.json b/blockchains/polkadot/validators/list.json index b3513e877e8b..32b137754430 100644 --- a/blockchains/polkadot/validators/list.json +++ b/blockchains/polkadot/validators/list.json @@ -148,5 +148,23 @@ "name": "Allnodes.com ⚡️ 0% fee", "description": "Reliable non-custodial Validator run by the industry leader - Allnodes.", "website": "https://wwww.allnodes.com/dot/staking" + }, + { + "id": "13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb", + "name": "Stakeflow/2", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "16cDjCXSYGRDpEett39taTgMAN7LKnyaafa5MgfbUmpsERW8", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" } ] \ No newline at end of file diff --git a/blockchains/polygon/assets/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/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/info.json b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/info.json new file mode 100644 index 000000000000..f55c4ce5a44f --- /dev/null +++ b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/info.json @@ -0,0 +1,25 @@ +{ + "name": "Golem", + "website": "https://golem.network", + "description": "Golem is a peer-to-peer decentralized marketplace for computing power. The project aims to be an alternative to centralized cloud service providers with its lower price point and open-source community of developers.", + "explorer": "https://polygonscan.com/token/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf", + "type": "POLYGON", + "symbol": "GLM", + "decimals": 18, + "status": "active", + "id": "0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/golemproject" + }, + { + "name": "github", + "url": "https://github.com/golemfactory/golem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/golem-network-tokens/" + } + ] +} diff --git a/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/logo.png b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/logo.png new file mode 100644 index 000000000000..644070628b3d Binary files /dev/null and b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/logo.png differ diff --git a/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json b/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json new file mode 100644 index 000000000000..7e0cda078b6f --- /dev/null +++ b/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json @@ -0,0 +1,27 @@ +{ + "name": "Unagi Token (UNA)", + "type": "POLYGON", + "symbol": "UNA", + "decimals": 18, + "website": "https://unagi.games/", + "description": "UNA token is Unagi's web3 gaming ecosystem token. It is your universal ticket to the entire range of Unagi games, offering a seamless experience across various genres and platforms including Ultimate Champions, Persona and more to come! We’re creating a cohesive, interconnected gaming environment.", + "explorer": "https://polygonscan.com/token/0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9", + "status": "active", + "id": "0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9", + "links": [ + { + "name": "medium", + "url": "https://ultimatechampions.medium.com/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Unagi_studio" + } + ], + "tags": [ + "gamefi", + "deflationary", + "staking", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png b/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png new file mode 100644 index 000000000000..5dd9cbe12c47 Binary files /dev/null and b/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png differ diff --git a/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/info.json b/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/info.json new file mode 100644 index 000000000000..89b880a33b92 --- /dev/null +++ b/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/info.json @@ -0,0 +1,25 @@ + { + "name": "GraphLinq (PoS)", + "symbol": "GLQ", + "type": "POLYGON", + "decimals": 18, + "description": "The automation of decentralized DeFi data monitorization and external executions over multi-chain applications.", + "website": "https://graphlinq.io/", + "explorer": "https://polygonscan.com/token/0x0cfc9a713a5c17bc8a5ff0379467f6558bacd0e0", + "status": "active", + "id": "0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/graphlinq_proto" + }, + { + "name": "telegram", + "url": "https://t.me/graphlinq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/graphlinq-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/logo.png b/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/logo.png new file mode 100644 index 000000000000..65f79b0b67d8 Binary files /dev/null and b/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/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/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/info.json b/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/info.json index 7bfdede5e51a..1b99626343ad 100644 --- a/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/info.json +++ b/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/info.json @@ -1,44 +1,42 @@ { - "name": "OVR", - "symbol": "OVR", - "type": "POLYGON", - "decimals": 18, - "description": "OVR is the decentralized infrastructure for the metaverse, merging physical and virtual world through Augmented Reality", - "website": "https://www.ovr.ai/", - "explorer": "https://polygonscan.com/token/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30", - "status": "active", - "id": "0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30", - "tags": [ - "nft" - ], - "links": [ - { - "name": "telegram", - "url": "https://t.me/OVRtheReality" - }, - { - "name": "twitter", - "url": "https://twitter.com/OVRtheReality" - }, - { - "name": "facebook", - "url": "https://facebook.com/OVRmetaverse/" - }, - { - "name": "telegram_news", - "url": "https://t.me/ovrannouncements" - }, - { - "name": "medium", - "url": "https://medium.com/ovrthereality" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/ovr" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/ovr/" - } - ] + "name": "OVR", + "symbol": "OVR", + "type": "POLYGON", + "decimals": 18, + "description": "OVR is the decentralized infrastructure for the metaverse, merging physical and virtual world through Augmented Reality", + "website": "https://www.overthereality.ai/", + "explorer": "https://polygonscan.com/token/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30", + "status": "active", + "id": "0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30", + "tags": ["nft"], + "links": [ + { + "name": "telegram", + "url": "https://t.me/OVRtheReality" + }, + { + "name": "twitter", + "url": "https://twitter.com/OVRtheReality" + }, + { + "name": "facebook", + "url": "https://facebook.com/Overmetaverse" + }, + { + "name": "telegram_news", + "url": "https://t.me/ovrannouncements" + }, + { + "name": "medium", + "url": "https://medium.com/ovrthereality" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ovr" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ovr/" + } + ] } diff --git a/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/logo.png b/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/logo.png index c3045348fbd1..5bc8414cd246 100644 Binary files a/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/logo.png and b/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/logo.png differ diff --git a/blockchains/polygon/assets/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/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/info.json b/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/info.json new file mode 100644 index 000000000000..6e1999448a13 --- /dev/null +++ b/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/info.json @@ -0,0 +1,32 @@ +{ + "name": "WinsToken", + "type": "POLYGON", + "symbol": "WINS", + "decimals": 18, + "website": "https://www.playtrophy.com/", + "description": "$WINS is a gaming rewards token designed to be sustainable and deflationary in order to address problems from the last generation of \"play-to-earn\" web3 games.", + "explorer": "https://polygonscan.com/token/0x1a49e59ab7101d6a66d6b2fa6d09932079cc80ec", + "status": "active", + "id": "0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/playtrophy" + }, + { + "name": "discord", + "url": "https://discord.com/invite/k2D8M95yMc" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wins" + }, + { + "name": "whitepaper", + "url": "https://litepaper.playtrophy.com/usdwins-token/usdwins-token" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/logo.png b/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/logo.png new file mode 100644 index 000000000000..6c8acd08e00b Binary files /dev/null and b/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/logo.png differ diff --git a/blockchains/polygon/assets/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603/info.json b/blockchains/polygon/assets/0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603/info.json new file mode 100644 index 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/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/info.json b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/info.json new file mode 100644 index 000000000000..c54e571a1a0b --- /dev/null +++ b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/info.json @@ -0,0 +1,28 @@ +{ + "name": "(PoS) Wrapped BTC", + "type": "POLYGON", + "symbol": "WBTC", + "decimals": 8, + "website": "https://wbtc.network/", + "description": "Wrapped Bitcoin (WBTC) is the first ERC20 token backed 1:1 with Bitcoin.", + "explorer": "https://polygonscan.com/token/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6", + "status": "active", + "id": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6", + "links": [ + { + "name": "whitepaper", + "url": "https://wbtc.network/assets/wrapped-tokens-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/logo.png b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/logo.png new file mode 100644 index 000000000000..702d64a2e040 Binary files /dev/null and b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/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/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json b/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json index 7b74faeb1e23..392763cae7f4 100644 --- a/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json +++ b/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json @@ -1,10 +1,10 @@ { - "name": "USD Coin (PoS)", + "name": "Bridged USD Coin (PoS)", "website": "https://centre.io/usdc", "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", "explorer": "https://polygonscan.com/token/0x2791bca1f2de4661ed88a30c99a7a9449aa84174", "type": "POLYGON", - "symbol": "USDC", + "symbol": "USDC.e", "decimals": 6, "status": "active", "id": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", diff --git a/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/info.json b/blockchains/polygon/assets/0x28C388FB1F4fa9F9eB445f0579666849EE5eeb42/info.json new file mode 100644 index 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/0x2F3E306d9F02ee8e8850F9040404918d0b345207/info.json b/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/info.json new file mode 100644 index 000000000000..a0a841f059b9 --- /dev/null +++ b/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/info.json @@ -0,0 +1,48 @@ +{ + "name": " DOGAMI", + "type": "POLYGON", + "symbol": "DOGA", + "decimals": 5, + "website": "https://dogami.com", + "description": "Launched in 2021, DOGAMÍ is an entertainment company that develops web3 games centered around the Dogamí, mystical 3D dog avatars imbued with spiritual powers. DOGAMÍ users can experience different interactive experiences in an immersive universe. $DOGA is the primary currency of the DOGAMÍ universe, a multichain-utility token limited to 1B tokens with multiple use cases.", + "explorer": "https://polygonscan.com/token/0x2F3E306d9F02ee8e8850F9040404918d0b345207", + "status": "active", + "id": "0x2F3E306d9F02ee8e8850F9040404918d0b345207", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dogami" + }, + { + "name": "github", + "url": "https://github.com/dogami-code/Smart-Contracts-EVM" + }, + { + "name": "telegram", + "url": "https://t.me/DogamiAnnouncement" + }, + { + "name": "discord", + "url": "https://discord.com/invite/dogamiofficial" + }, + { + "name": "medium", + "url": "https://dogami.medium.com" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.dogami.com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogami/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/logo.png b/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/logo.png new file mode 100644 index 000000000000..a995169b7f60 Binary files /dev/null and b/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/logo.png differ diff --git a/blockchains/polygon/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json b/blockchains/polygon/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json new file mode 100644 index 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/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json new file mode 100644 index 000000000000..7a2620040184 --- /dev/null +++ b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json @@ -0,0 +1,33 @@ +{ + "name": "Native USD Coin (PoS)", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://polygonscan.com/token/0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "type": "POLYGON", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359", + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} diff --git a/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/logo.png b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/logo.png new file mode 100644 index 000000000000..2460919c3efb Binary files /dev/null and b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/logo.png differ diff --git a/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/info.json b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/info.json new file mode 100644 index 000000000000..db9582783409 --- /dev/null +++ b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/info.json @@ -0,0 +1,25 @@ +{ + "name": " SwissCheese", + "website": "https://swisscheese.finance/", + "description": "$SWCH is the native token of Swisscheese, the world's first decentralized exchange dedicated to trading tokenized stocks. Standing at the forefront of the DeFi revolution, Swisscheese merges the realms of traditional stock trading and blockchain. With $SWCH at its core, the platform offers users unparalleled opportunities to trade, stake, and experience finance like never before, marking a true evolution in the DeFi space. Now available on Trust Wallet, users can easily trade and manage their $SWCH holdings in one of the most trusted and user-friendly crypto wallets in the industry.", + "explorer": "https://polygonscan.com/token/0x3ce1327867077b551ae9a6987bf10c9fd08edce1", + "type": "POLYGON", + "symbol": "SWCH", + "decimals": 18, + "status": "active", + "id": "0x3ce1327867077B551ae9A6987bF10C9fd08edCE1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Swisscheese_fn" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/swisscheese/" + }, + { + "name": "telegram", + "url": "https://t.me/swisscheesegroup" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/logo.png b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/logo.png new file mode 100644 index 000000000000..2cb920697bf8 Binary files /dev/null and b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/logo.png differ diff --git a/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json b/blockchains/polygon/assets/0x430EF9263E76DAE63c84292C3409D61c598E9682/info.json new file mode 100644 index 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/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/info.json b/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/info.json new file mode 100644 index 000000000000..6d63d4caa773 --- /dev/null +++ b/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Rainbow Token", + "type": "POLYGON", + "symbol": "RBW", + "decimals": 18, + "website": "https://www.cryptounicorns.fun/", + "description": "Crypto Unicorns is a new blockchain-based game centered around awesomely unique Unicorn NFTs which players can use in a fun farming simulation and in a variety of exciting battle loops. Rainbow Tokens are the primary value and governance token of the Unicorn multiverse.", + "explorer": "https://polygonscan.com/token/0x431cd3c9ac9fc73644bf68bf5691f4b83f9e104f", + "status": "active", + "id": "0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/crypto_unicorns" + }, + { + "name": "telegram", + "url": "https://t.me/crypto_unicorns" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/logo.png b/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/logo.png new file mode 100644 index 000000000000..34190371893a Binary files /dev/null and b/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/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/0x48cBc913dE09317dF2365e6827Df50dA083701D5/info.json b/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/info.json index 25ff48b39dfd..addf371a5b21 100644 --- a/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/info.json +++ b/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/info.json @@ -1,7 +1,7 @@ { "name": "The 4th Pillar Token", - "website": "https://4thtech.io/", - "description": "FOUR is 4thTech ecosystem utility token used as the primary means to enable services such as data file and instant messages wallet to wallet exchange.", + "website": "https://the4thpillar.io/", + "description": "FOUR token is a technical and incentive component dedicated to; (1) RTA (i.e. right-to-access), and; (2) MTO (i.e. multiple-transfer option) models in the ecosystem of Web3 communication.", "explorer": "https://polygonscan.com/token/0x48cBc913dE09317dF2365e6827Df50dA083701D5", "type": "POLYGON", "symbol": "FOUR", @@ -11,31 +11,15 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/4thtechProject" + "url": "https://twitter.com/4pfour" }, { "name": "coingecko", "url": "https://coingecko.com/en/coins/the-4th-pillar" - }, - { - "name": "medium", - "url": "https://medium.com/the4thpillar" - }, - { - "name": "telegram", - "url": "https://t.me/the4thpillarofficial" - }, - { - "name": "youtube", - "url": "https://youtube.com/c/4thpillartechnologies" - }, - { - "name": "whitepaper", - "url": "https://github.com/4thtech/static-assets/raw/main/pdf/whitepaper.pdf" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/4thpillar-technologies/" } + ], + "tags": [ + "governance", + "staking" ] } \ No newline at end of file diff --git a/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/logo.png b/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/logo.png index 4275e858c191..b0d3e287349f 100644 Binary files a/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/logo.png and b/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/logo.png differ diff --git a/blockchains/polygon/assets/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/0x5fe2B58c013d7601147DcdD68C143A77499f5531/info.json b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/info.json new file mode 100644 index 000000000000..f745431012b4 --- /dev/null +++ b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/info.json @@ -0,0 +1,37 @@ +{ + "name": "Graph Token (PoS)", + "website": "https://thegraph.com", + "description": "The Graph is an indexing protocol and global API for organizing blockchain data and making it easily accessible with GraphQL. Developers can use Graph Explorer to search, find, and publish all the public data they need to build decentralized applications. The Graph Network makes it possible to build serverless dApps that run entirely on public infrastructure.", + "explorer": "https://polygonscan.com/token/0x5fe2B58c013d7601147DcdD68C143A77499f5531", + "research": "https://github.com/graphprotocol/research", + "type": "POLYGON", + "symbol": "GRT", + "decimals": 18, + "status": "active", + "id": "0x5fe2B58c013d7601147DcdD68C143A77499f5531", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/graphprotocol/graph-node" + }, + { + "name": "twitter", + "url": "https://twitter.com/graphprotocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/thegraph" + }, + { + "name": "telegram", + "url": "https://t.me/graphprotocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-graph/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/logo.png b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/logo.png new file mode 100644 index 000000000000..9cbb487ce129 Binary files /dev/null and b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/logo.png differ diff --git a/blockchains/polygon/assets/0x6109cB051c5C64093830121ed76272aB04bBDD7C/info.json b/blockchains/polygon/assets/0x6109cB051c5C64093830121ed76272aB04bBDD7C/info.json new file mode 100644 index 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/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json b/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json new file mode 100644 index 000000000000..2db15863906a --- /dev/null +++ b/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json @@ -0,0 +1,45 @@ +{ + "id": "0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC", + "name": "IDRX", + "type": "POLYGON", + "symbol": "IDRX", + "decimals": 0, + "website": "https://idrx.co/", + "description": "IDRX is a stable token pegged to the value of the Indonesian Rupiah (IDR). As a cryptocurrency, IDRX offers users the benefits of blockchain technology, including security, transparency, and decentralized control. At the same time, as a stable token, IDRX offers price stability by maintaining a fixed exchange rate with the IDR, which is the national currency of Indonesia.", + "explorer": "https://polygonscan.com/token/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC", + "status": "active", + "tags": [ + "stablecoin", + "staking" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/idrx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/idrx/" + }, + { + "name": "github", + "url": "https://github.com/idrx-co/" + }, + { + "name": "docs", + "url": "https://docs.idrx.co/" + }, + { + "name": "whitepaper", + "url": "https://idrx.co/docs/Whitepaper%20IDRX.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/officialidrx" + }, + { + "name": "medium", + "url": "https://idrx.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png b/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png new file mode 100644 index 000000000000..444a5d98ac88 Binary files /dev/null and b/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png differ diff --git a/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/info.json b/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/info.json new file mode 100644 index 000000000000..f85565ff03ac --- /dev/null +++ b/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Shapeshift FOX", + "symbol": "FOX", + "type": "POLYGON", + "decimals": 18, + "description": "FOX is ShapeShift’s official loyalty token. Holders of FOX enjoy zero-commission trading and win ongoing USDC crypto payments from Rainfall (payments increase in proportion to your FOX holdings). ", + "website": "https://shapeshift.com/fox-token", + "explorer": "https://polygonscan.com/token/0x65A05DB8322701724c197AF82C9CaE41195B0aA8", + "status": "active", + "id": "0x65A05DB8322701724c197AF82C9CaE41195B0aA8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/shapeshift_io" + }, + { + "name": "telegram", + "url": "https://t.me/shapeshiftofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fox-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/logo.png b/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/logo.png new file mode 100644 index 000000000000..d565ce6e440a Binary files /dev/null and b/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/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/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/info.json b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/info.json new file mode 100644 index 000000000000..8e01a46287e2 --- /dev/null +++ b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/info.json @@ -0,0 +1,32 @@ +{ + "name": "World$tateCoin", + "type": "POLYGON", + "symbol": "W$C", + "decimals": 18, + "website": "https://wsc.theworldstate.io/", + "description": "Official crypto currency of The World State", + "explorer": "https://polygonscan.com/token/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0", + "status": "active", + "id": "0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/theworldstateio" + }, + { + "name": "telegram", + "url": "https://t.me/TheWorldState" + }, + { + "name": "youtube", + "url": "https://youtube.com/@the_world_state" + }, + { + "name": "discord", + "url": "https://discord.com/invite/theworldstate" + } + ], + "tags": [ + "deflationary" + ] +} diff --git a/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/logo.png b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/logo.png new file mode 100644 index 000000000000..b4844cb34fce Binary files /dev/null and b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/logo.png differ diff --git a/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/info.json b/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/info.json new file mode 100644 index 000000000000..746e018bf7ce --- /dev/null +++ b/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/info.json @@ -0,0 +1,26 @@ + +{ + "name": "Unibright", + "website": "https://unibright.io", + "description": "Unibright offers a unified framework that aims to bring blockchain technology and smart contracts to mainstream usage.", + "explorer": "https://polygonscan.com/token/0x7fbc10850cae055b27039af31bd258430e714c62", + "type": "POLYGON", + "symbol": "UBT", + "decimals": 8, + "status": "active", + "id": "0x7FBc10850caE055B27039aF31bD258430e714c62", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/unibrightio" + }, + { + "name": "telegram", + "url": "https://t.me/unibright_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/unibright/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/logo.png b/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/logo.png new file mode 100644 index 000000000000..e1b39b392b94 Binary files /dev/null and b/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/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/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/info.json b/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/info.json index ecbfd4e0514a..3ed49f2cb9c4 100644 --- a/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/info.json +++ b/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/info.json @@ -6,7 +6,7 @@ "type": "POLYGON", "symbol": "QUICK", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x831753DD7087CaC61aB5644b308642cc1c33Dc13", "links": [ { diff --git a/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json b/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json new file mode 100644 index 000000000000..5033d89b5cc7 --- /dev/null +++ b/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json @@ -0,0 +1,21 @@ +{ + "name": "VANRY", + "symbol": "VANRY", + "type": "POLYGON", + "decimals": 18, + "description": "VANRY is the official token of the VANAR blockchain. Vanar offers a carbon-neutral, high-speed and low-cost L1 chain designed for entertainment and mainstream.", + "website": "https://vanarchain.com/", + "explorer": "https://polygonscan.com/token/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624", + "status": "active", + "id": "0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/vanarchain" + }, + { + "name": "telegram", + "url": "https://t.me/vanarchain" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/logo.png b/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/logo.png new file mode 100644 index 000000000000..e1b3a7d15902 Binary files /dev/null and b/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/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/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json new file mode 100644 index 000000000000..75588293e20c --- /dev/null +++ b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json @@ -0,0 +1,41 @@ +{ + "name": "BNB pegged BUSD", + "website": "https://paxos.com/busd", + "description": "BNB pegged BUSD is a token issued by Binance on Smart Chain; its price is pegged to BUSD (BUSD ERC20) at a ratio of 1:1.", + "explorer": "https://polygonscan.com/token/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "POLYGON", + "symbol": "BUSD", + "decimals": 18, + "status": "active", + "id": "0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/binance-chain/" + }, + { + "name": "twitter", + "url": "https://twitter.com/binance_dex" + }, + { + "name": "blog", + "url": "https://binance.org/en/blog/" + }, + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binance-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png new file mode 100644 index 000000000000..76d02e370b6d Binary files /dev/null and b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png differ diff --git a/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json b/blockchains/polygon/assets/0x9Fb9a33956351cf4fa040f65A13b835A3C8764E3/info.json new file mode 100644 index 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/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/0xB5C064F955D8e7F38fE0460C556a72987494eE17/info.json b/blockchains/polygon/assets/0xB5C064F955D8e7F38fE0460C556a72987494eE17/info.json new file mode 100644 index 000000000000..c84f320345a9 --- /dev/null +++ b/blockchains/polygon/assets/0xB5C064F955D8e7F38fE0460C556a72987494eE17/info.json @@ -0,0 +1,29 @@ +{ + "name": "QuickSwap", + "website": "https://quickswap.exchange/", + "description": "Next-gen Layer 2 DEX. Trade at lightning-fast speeds with near-zero gas fees, Powered by Polygon", + "explorer": "https://polygonscan.com/token/0xB5C064F955D8e7F38fE0460C556a72987494eE17", + "type": "POLYGON", + "symbol": "QUICK", + "decimals": 18, + "status": "active", + "id": "0xB5C064F955D8e7F38fE0460C556a72987494eE17", + "links": [ + { + "name": "github", + "url": "https://github.com/QuickSwap" + }, + { + "name": "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/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/logo.png b/blockchains/polygon/assets/0xB5C064F955D8e7F38fE0460C556a72987494eE17/logo.png similarity index 100% rename from blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/logo.png rename to blockchains/polygon/assets/0xB5C064F955D8e7F38fE0460C556a72987494eE17/logo.png diff --git a/blockchains/polygon/assets/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/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/info.json b/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/info.json new file mode 100644 index 000000000000..e52b25ef82b3 --- /dev/null +++ b/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/info.json @@ -0,0 +1,33 @@ +{ + "name": "MANTRA", + "website": "http://mantradao.com", + "description": "MANTRA DAO leverages the wisdom of the crowd to create a community-governed, transparent, and decentralized ecosystem for Web 3.0", + "explorer": "https://polygonscan.com/token/0xc3ec80343d2bae2f8e680fdadde7c17e71e114ea", + "type": "POLYGON", + "symbol": "OM", + "decimals": 18, + "status": "active", + "id": "0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea", + "links": [ + { + "name": "github", + "url": "https://github.com/Mantradao" + }, + { + "name": "twitter", + "url": "https://twitter.com/MANTRADAO" + }, + { + "name": "telegram", + "url": "https://t.me/MANTRADAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mantra-dao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mantra-dao/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/logo.png b/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/logo.png new file mode 100644 index 000000000000..e879c18c6349 Binary files /dev/null and b/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/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/0xE238Ecb42C424E877652AD82d8A939183A04C35f/info.json b/blockchains/polygon/assets/0xE238Ecb42C424E877652AD82d8A939183A04C35f/info.json new file mode 100644 index 000000000000..bcf83c763576 --- /dev/null +++ b/blockchains/polygon/assets/0xE238Ecb42C424E877652AD82d8A939183A04C35f/info.json @@ -0,0 +1,25 @@ +{ + "name": "WiFi Map", + "website": "https://weconnectu.io/", + "description": "WiFi Map are wifi finder, as well as esim provider.", + "explorer": "https://polygonscan.com/token/0xe238ecb42c424e877652ad82d8a939183a04c35f", + "type": "POLYGON", + "symbol": "WIFI", + "decimals": 18, + "status": "active", + "id": "0xE238Ecb42C424E877652AD82d8A939183A04C35f", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/wifimapapp" + }, + { + "name": "telegram", + "url": "https://t.me/wifimap_io" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wifi" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE238Ecb42C424E877652AD82d8A939183A04C35f/logo.png b/blockchains/polygon/assets/0xE238Ecb42C424E877652AD82d8A939183A04C35f/logo.png new file mode 100644 index 000000000000..66b1b3ccf7d2 Binary files /dev/null and b/blockchains/polygon/assets/0xE238Ecb42C424E877652AD82d8A939183A04C35f/logo.png differ diff --git a/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/info.json b/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/info.json new file mode 100644 index 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/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/info.json b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/info.json new file mode 100644 index 000000000000..647a6e0cc6a6 --- /dev/null +++ b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Banano", + "website": "https://bsc.banano.cc/", + "description": "Wrapped Banano is a token pegged to Banano, enabling to wrap/unwrap your Banano on the Polygon network.", + "explorer": "https://polygonscan.com/token/0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034", + "type": "POLYGON", + "symbol": "wBAN", + "decimals": 18, + "status": "active", + "id": "0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bananocoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/banano/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/logo.png b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/logo.png new file mode 100644 index 000000000000..cc05199544a7 Binary files /dev/null and b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/logo.png differ diff --git a/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 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/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/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/info.json b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/info.json new file mode 100644 index 000000000000..24b45f5e12a6 --- /dev/null +++ b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sirius by Humanity", + "type": "POLYGON", + "symbol": "SRS", + "decimals": 18, + "website": "https://humanity-protocol.com", + "description": "Sirius (SRS) is the native token of the revolutionary Humanity Protocol ecosystem, designed to transform Africa's economy and empower millions of people. SRS is at the core of our decentralized platform, facilitating seamless transactions, fueling various services, and providing access to a wealth of opportunities.", + "explorer": "https://polygonscan.com/token/0xf8dda7b3748254d562f476119b0ae6044bad10a5", + "status": "active", + "id": "0xf8DDA7b3748254d562f476119B0aE6044bAd10a5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/HmntyProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/SRSbyHumanity" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/logo.png b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/logo.png new file mode 100644 index 000000000000..0aa4eded6775 Binary files /dev/null and b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/logo.png differ diff --git a/blockchains/polygon/info/info.json b/blockchains/polygon/info/info.json index 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/polygon/tokenlist.json b/blockchains/polygon/tokenlist.json index f612ba4ee99b..073698b43c37 100644 --- a/blockchains/polygon/tokenlist.json +++ b/blockchains/polygon/tokenlist.json @@ -21,9 +21,6 @@ { "base": "c966_t0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39" }, - { - "base": "c966_t0x831753DD7087CaC61aB5644b308642cc1c33Dc13" - }, { "base": "c966_t0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063" }, @@ -50,9 +47,6 @@ { "base": "c966_t0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619" }, - { - "base": "c966_t0x831753DD7087CaC61aB5644b308642cc1c33Dc13" - }, { "base": "c966_t0xc2132D05D31c914a87C6611C10748AEb04B58e8F" } @@ -62,8 +56,8 @@ "asset": "c966_t0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", "type": "POLYGON", "address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", - "name": "USD Coin (PoS)", - "symbol": "USDC", + "name": "Bridged USD Coin (PoS)", + "symbol": "USDC.e", "decimals": 6, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/logo.png", "pairs": [ @@ -122,16 +116,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x53E0bca35eC356BD5ddDFebbD1Fc0fD03FaBad39/logo.png", "pairs": [] }, - { - "asset": "c966_t0x831753DD7087CaC61aB5644b308642cc1c33Dc13", - "type": "POLYGON", - "address": "0x831753DD7087CaC61aB5644b308642cc1c33Dc13", - "name": "QuickSwap", - "symbol": "QUICK", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/logo.png", - "pairs": [] - }, { "asset": "c966_t0xD6DF932A45C0f255f85145f286eA0b292B21C90B", "type": "POLYGON", @@ -148,4 +132,4 @@ "minor": 0, "patch": 0 } -} \ No newline at end of file +} diff --git a/blockchains/polygonmumbai/info/info.json b/blockchains/polygonmumbai/info/info.json new file mode 100644 index 000000000000..9f574b9317c5 --- /dev/null +++ b/blockchains/polygonmumbai/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "Polygon Mumbai Testnet", + "website": "https://polygon.technology", + "description": "The Alchemy Goerli faucet is free, fast, and does not require authentication, though you can optionally login to Alchemy to get an increased drip.", + "explorer": "https://mumbai.polygonscan.com/", + "symbol": "tMATIC", + "rpc_url": "https://polygon-testnet.public.blastapi.io", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/polygonmumbai/info/logo.png b/blockchains/polygonmumbai/info/logo.png new file mode 100644 index 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..1326db782066 --- /dev/null +++ b/blockchains/polygonzkevm/info/info.json @@ -0,0 +1,22 @@ +{ + "name": "Polygon zkEVM", + "website": "https://www.polygon.technology/", + "description": "Polygon zkEVM is the leading zero knowledge scaling solution that’s fully equivalent with the Ethereum Virtual Machine: all existing smart contracts, developer tools, and wallets work seamlessly.", + "explorer": "https://polygon.technology/polygon-zkevm", + "research": "https://github.com/0xpolygonhermez", + "symbol": "tETH", + "rpc_url": "https://rpc.ankr.com/polygon_zkevm", + "type": "coin", + "coin_type": 10001101, + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/0xPolygonHermez" + } + ] +} diff --git a/blockchains/polygonzkevm/info/logo.png b/blockchains/polygonzkevm/info/logo.png new file mode 100644 index 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/quasar/validators/assets/quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj/logo.png b/blockchains/quasar/validators/assets/quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj/logo.png new file mode 100644 index 000000000000..d3477a03445f Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zxyedrk/logo.png b/blockchains/quasar/validators/assets/quasarvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zxyedrk/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zxyedrk/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper14mugyqxjvtzk39au6klgpcyz4vpxgxsjf7c5uk/logo.png b/blockchains/quasar/validators/assets/quasarvaloper14mugyqxjvtzk39au6klgpcyz4vpxgxsjf7c5uk/logo.png new file mode 100644 index 000000000000..28a98c6eaba1 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper14mugyqxjvtzk39au6klgpcyz4vpxgxsjf7c5uk/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper1yhh4r96kvl9tzucq5dn69gu2242hn2d9gsscvw/logo.png b/blockchains/quasar/validators/assets/quasarvaloper1yhh4r96kvl9tzucq5dn69gu2242hn2d9gsscvw/logo.png new file mode 100644 index 000000000000..f6dfe9162fd4 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper1yhh4r96kvl9tzucq5dn69gu2242hn2d9gsscvw/logo.png differ diff --git a/blockchains/quasar/validators/list.json b/blockchains/quasar/validators/list.json new file mode 100644 index 000000000000..bc4bc18a3efc --- /dev/null +++ b/blockchains/quasar/validators/list.json @@ -0,0 +1,26 @@ +[ + { + "id": "quasarvaloper1yhh4r96kvl9tzucq5dn69gu2242hn2d9gsscvw", + "name": "Polychain", + "description": "Polychain is an investment firm committed to exceptional returns for investors through actively managed portfolios of blockchain assets", + "website": "https://polychain.capital/" + }, + { + "id": "quasarvaloper14mugyqxjvtzk39au6klgpcyz4vpxgxsjf7c5uk", + "name": "Cosmostation", + "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", + "website": "https://www.cosmostation.io/" + }, + { + "id": "quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at hello@polkachu.com", + "website": "https://polkachu.com/" + }, + { + "id": "quasarvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zxyedrk", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + } +] \ No newline at end of file diff --git a/blockchains/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/info.json b/blockchains/ronin/assets/0x0B7007c13325C48911F73A2daD5FA5dCBf808aDc/info.json new file mode 100644 index 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/secret/validators/assets/secretvaloper12y30xefd0wg53xtyv9lw7mjcdvf8nxgzzva3sr/logo.png b/blockchains/secret/validators/assets/secretvaloper12y30xefd0wg53xtyv9lw7mjcdvf8nxgzzva3sr/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper12y30xefd0wg53xtyv9lw7mjcdvf8nxgzzva3sr/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper16w5hlcf389le2n60t32eqf43plp539ged9sruy/logo.png b/blockchains/secret/validators/assets/secretvaloper16w5hlcf389le2n60t32eqf43plp539ged9sruy/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper16w5hlcf389le2n60t32eqf43plp539ged9sruy/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper19z74520tdw5gps5sp5tr8y2mxr40artly6rsw3/logo.png b/blockchains/secret/validators/assets/secretvaloper19z74520tdw5gps5sp5tr8y2mxr40artly6rsw3/logo.png new file mode 100644 index 000000000000..e11781707123 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper19z74520tdw5gps5sp5tr8y2mxr40artly6rsw3/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1hjd20hjvkx06y8p42xl0uzr3gr3ue3nkvd79jj/logo.png b/blockchains/secret/validators/assets/secretvaloper1hjd20hjvkx06y8p42xl0uzr3gr3ue3nkvd79jj/logo.png new file mode 100644 index 000000000000..821e30b0e283 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1hjd20hjvkx06y8p42xl0uzr3gr3ue3nkvd79jj/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1t5wtcuwjkdct9qkw2h6m48zu2hectpd6ulmekk/logo.png b/blockchains/secret/validators/assets/secretvaloper1t5wtcuwjkdct9qkw2h6m48zu2hectpd6ulmekk/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1t5wtcuwjkdct9qkw2h6m48zu2hectpd6ulmekk/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1x76f2c2cuwa4e3lttjgqeqva0725ftmqvgvfnv/logo.png b/blockchains/secret/validators/assets/secretvaloper1x76f2c2cuwa4e3lttjgqeqva0725ftmqvgvfnv/logo.png new file mode 100644 index 000000000000..3345b271b719 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1x76f2c2cuwa4e3lttjgqeqva0725ftmqvgvfnv/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1xj5ykuzn0mkq9642yxgqmh4ycplzhr2pza25mk/logo.png b/blockchains/secret/validators/assets/secretvaloper1xj5ykuzn0mkq9642yxgqmh4ycplzhr2pza25mk/logo.png new file mode 100644 index 000000000000..0615d014ea87 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1xj5ykuzn0mkq9642yxgqmh4ycplzhr2pza25mk/logo.png differ diff --git a/blockchains/secret/validators/list.json b/blockchains/secret/validators/list.json new file mode 100644 index 000000000000..9767f81c12cf --- /dev/null +++ b/blockchains/secret/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "id": "secretvaloper16w5hlcf389le2n60t32eqf43plp539ged9sruy", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "secretvaloper1xj5ykuzn0mkq9642yxgqmh4ycplzhr2pza25mk", + "name": "0% Fee >2024 💸 | melea", + "description": "FREE Validator service at 0% Commission → throughout the years 2021 & 2022 & 2023 → melea.xyz", + "website": "https://meleatrust.com/secret/" + }, + { + "id": "secretvaloper1x76f2c2cuwa4e3lttjgqeqva0725ftmqvgvfnv", + "name": "Citadel.one", + "description": "Citadel.one is a multi-asset non-custodial staking platform that lets anyone become a part of decentralized infrastructure and earn passive income. Stake with our nodes or any other validator across multiple networks in a few clicks.", + "website": "https://citadel.one/" + }, + { + "id": "secretvaloper12y30xefd0wg53xtyv9lw7mjcdvf8nxgzzva3sr", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "secretvaloper1hjd20hjvkx06y8p42xl0uzr3gr3ue3nkvd79jj", + "name": "Delta Flyer", + "description": "A Delta Flyer Operated Node.", + "website": "https://deltaflyer.llc/" + }, + { + "id": "secretvaloper19z74520tdw5gps5sp5tr8y2mxr40artly6rsw3", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "secretvaloper1t5wtcuwjkdct9qkw2h6m48zu2hectpd6ulmekk", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + } +] diff --git a/blockchains/sei/info/info.json b/blockchains/sei/info/info.json new file mode 100644 index 000000000000..ed96c6de9fdb --- /dev/null +++ b/blockchains/sei/info/info.json @@ -0,0 +1,27 @@ +{ + "name": "Sei", + "website": "https://sei.io", + "description": "Sei is the fastest blockchain to finality, magnitudes faster than the rest.", + "explorer": "https://www.mintscan.io/sei/", + "symbol": "SEI", + "type": "coin", + "decimals": 6, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SeiNetwork" + }, + { + "name": "github", + "url": "https://github.com/sei-protocol/sei-chain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sei/" + } + ] +} \ No newline at end of file diff --git a/blockchains/sei/info/logo.png b/blockchains/sei/info/logo.png new file mode 100644 index 000000000000..b473b2c487a0 Binary files /dev/null and b/blockchains/sei/info/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zl6nups/logo.png b/blockchains/sei/validators/assets/seivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zl6nups/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zl6nups/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1eqgnd7ey0hnha8rrfukjrsawulhna0zagcg6a4/logo.png b/blockchains/sei/validators/assets/seivaloper1eqgnd7ey0hnha8rrfukjrsawulhna0zagcg6a4/logo.png new file mode 100644 index 000000000000..eaf66cb5cbb1 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1eqgnd7ey0hnha8rrfukjrsawulhna0zagcg6a4/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8/logo.png b/blockchains/sei/validators/assets/seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8/logo.png new file mode 100644 index 000000000000..e5e20afbb46b Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qnkypla/logo.png b/blockchains/sei/validators/assets/seivaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qnkypla/logo.png new file mode 100644 index 000000000000..f78bfbfb1dfe Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qnkypla/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1t9fq3qfm7ngau5gr8qgf5dpfzjqg79kf65cu04/logo.png b/blockchains/sei/validators/assets/seivaloper1t9fq3qfm7ngau5gr8qgf5dpfzjqg79kf65cu04/logo.png new file mode 100644 index 000000000000..975d9113e179 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1t9fq3qfm7ngau5gr8qgf5dpfzjqg79kf65cu04/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1zv9z2wqt348dhxqn38xv8dvsu78cle4xs2cdf4/logo.png b/blockchains/sei/validators/assets/seivaloper1zv9z2wqt348dhxqn38xv8dvsu78cle4xs2cdf4/logo.png new file mode 100644 index 000000000000..7a2c0c8a85ed Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1zv9z2wqt348dhxqn38xv8dvsu78cle4xs2cdf4/logo.png differ diff --git a/blockchains/sei/validators/list.json b/blockchains/sei/validators/list.json new file mode 100644 index 000000000000..d1326aef61df --- /dev/null +++ b/blockchains/sei/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "id": "seivaloper1zv9z2wqt348dhxqn38xv8dvsu78cle4xs2cdf4", + "name": "Enigma", + "description": "Proof of Stake Validator on different projects -- Passionate about Data Science and Technology", + "website": "https://enigma-validator.com/" + }, + { + "id": "seivaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qnkypla", + "name": "Stakecito", + "description": "Securing & Decentralizing PoS Networks.", + "website": "https://www.stakecito.com/" + }, + { + "id": "seivaloper1t9fq3qfm7ngau5gr8qgf5dpfzjqg79kf65cu04", + "name": "Imperator.co", + "description": "100% refund on downtime slashing -- Professional Delegated Proof-of-Stake Network Validator", + "website": "https://imperator.co/" + }, + { + "id": "seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash.", + "website": "https://polkachu.com/" + }, + { + "id": "seivaloper1eqgnd7ey0hnha8rrfukjrsawulhna0zagcg6a4", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "seivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zl6nups", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + } +] \ No newline at end of file diff --git a/blockchains/sepolia/info/info.json b/blockchains/sepolia/info/info.json new file mode 100644 index 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/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/info.json b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/info.json new file mode 100644 index 000000000000..5fb016f6b8fd --- /dev/null +++ b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/info.json @@ -0,0 +1,62 @@ +{ + "name": "Scotty Beam", + "type": "BEP20", + "symbol": "SCOTTY", + "decimals": 18, + "website": "https://scottybeam.io/", + "description": "Scotty Beam is the world's first cross-chain NFT platform – here to help cryptonians move NFTs across blockchain galaxies; exchange tokens and NFTs via P2P deals; participate in cool INOs; connecting Metaverses, games and marketplaces; maximize value and fun throughout the voyage.", + "explorer": "https://bscscan.com/token/0x000351d035d8bbf2aa3131ebfecd66fb21836f6c", + "status": "active", + "id": "0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ScottyBeamIO" + }, + { + "name": "github", + "url": "https://github.com/ScottyBeam/" + }, + { + "name": "telegram", + "url": "https://t.me/ScottyBeamChat" + }, + { + "name": "telegram_news", + "url": "https://t.me/ScottyBeamIO" + }, + { + "name": "docs", + "url": "https://github.com/ScottyBeam/rest-api-docs" + }, + { + "name": "discord", + "url": "https://discord.com/channels/1004044243112824862/1004307545541836800" + }, + { + "name": "medium", + "url": "https://scottybeam.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCmyh7PXvwE4iBD4TljRt-EQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/scottybeam/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/scotty-beam" + }, + { + "name": "whitepaper", + "url": "https://scottybeam.io/assets/scotty-beam-pitch.pdf" + } + ], + "tags": [ + "nft", + "synthetics", + "memes" + ] +} diff --git a/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/logo.png b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/logo.png new file mode 100644 index 000000000000..43b67546bc28 Binary files /dev/null and b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/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/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/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/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json b/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json index 193894818bc2..e80b759d3786 100644 --- a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json +++ b/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json @@ -6,7 +6,7 @@ "website": "https://www.aquagoat.finance/", "description": "AquaGoat Finance is a decentralized community-led eco-DeFi project, with AquaGoat acting as its DeFi alternative to conventional high-interest savings accounts.", "explorer": "https://bscscan.com/token/0x07af67b392b7a202fad8e0fbc64c34f33102165b", - "status": "active", + "status": "abandoned", "id": "0x07af67b392B7A202fAD8E0FBc64C34F33102165B", "links": [ { diff --git a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/logo.png b/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/logo.png deleted file mode 100644 index 0d294f23beb6..000000000000 Binary files a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/info.json b/blockchains/smartchain/assets/0x07e551E31A793E20dc18494ff6b03095A8F8Ee36/info.json new file mode 100644 index 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/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json b/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json new file mode 100644 index 000000000000..8e68d0a01bc3 --- /dev/null +++ b/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json @@ -0,0 +1,27 @@ +{ + "name": "Unagi Token (UNA)", + "type": "BEP20", + "symbol": "UNA", + "decimals": 18, + "website": "https://unagi.games/", + "description": "UNA token is Unagi's web3 gaming ecosystem token. It is your universal ticket to the entire range of Unagi games, offering a seamless experience across various genres and platforms including Ultimate Champions, Persona and more to come! We’re creating a cohesive, interconnected gaming environment.", + "explorer": "https://bscscan.com/token/0x0b6f3ea2814f3fff804ba5d5c237aebbc364fba9", + "status": "active", + "id": "0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9", + "links": [ + { + "name": "medium", + "url": "https://ultimatechampions.medium.com/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Unagi_studio" + } + ], + "tags": [ + "gamefi", + "deflationary", + "staking", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png b/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png new file mode 100644 index 000000000000..5dd9cbe12c47 Binary files /dev/null and b/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/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/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json b/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json index 2e00d5ae1a36..0d35200ff257 100644 --- a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json +++ b/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json @@ -6,6 +6,6 @@ "website": "https://www.ryoshitoken.com", "description": "Ryoshi is a deflationary, community driven meme token that came to take over the meme game. With 10% burn from every transaction that decreases the supply and increases the demand you can kick back and watch your RYOSHI value grow.", "explorer": "https://bscscan.com/token/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9", - "status": "active", + "status": "abandoned", "id": "0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/logo.png b/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/logo.png deleted file mode 100644 index f1767d54665b..000000000000 Binary files a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json b/blockchains/smartchain/assets/0x0E9766dF73973abCfEDDE700497c57110ee5c301/info.json index 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/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/info.json b/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/info.json new file mode 100644 index 000000000000..bdbb9b85d046 --- /dev/null +++ b/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/info.json @@ -0,0 +1,21 @@ +{ + "name": "Perlin", + "symbol": "PERL", + "type": "BEP20", + "decimals": 18, + "description": "PerlinX — democratizing the trading of real-world assets through decentralized liquidity pools and synthetic asset generation.", + "website": "https://perlinx.finance", + "explorer": "https://bscscan.com/token/0x0f9e4d49f25de22c2202af916b681fbb3790497b", + "status": "active", + "id": "0x0F9E4D49f25de22c2202aF916B681FBB3790497B", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/PerlinNetwork" + }, + { + "name": "telegram", + "url": "https://t.me/perlinnetworkchat" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/logo.png b/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/logo.png new file mode 100644 index 000000000000..2df3d0f8b966 Binary files /dev/null and b/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/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/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/info.json b/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/info.json index 547ebaa9edd1..c1962c810485 100644 --- a/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/info.json +++ b/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "ETHM", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x0b33542240d6fA323c796749F6D6869fdB7F13cA", "links": [ { diff --git a/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/logo.png b/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/logo.png deleted file mode 100644 index f531280f54fb..000000000000 Binary files a/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/logo.png and /dev/null 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/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/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/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json b/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json new file mode 100644 index 000000000000..111f30c736b6 --- /dev/null +++ b/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Fideum", + "website": "https://blockbank.ai/", + "description": "Fideum (previously blockbank) offers regulatory-compliant infrastructure tailored to the needs of financial institutions, banks, and SMEs. Its adaptable microservice architecture facilitates a wide range of financial services, enabling businesses to smoothly transition into the digital asset era.", + "explorer": "https://bscscan.com/token/0x1294f4183763743c7c9519Bec51773fb3aCD78FD", + "type": "BEP20", + "symbol": "FI", + "decimals": 18, + "status": "active", + "id": "0x1294f4183763743c7c9519Bec51773fb3aCD78FD", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BlockBankApp" + }, + { + "name": "twitter", + "url": "https://twitter.com/BLOCKBANKapp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fideum/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/logo.png b/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/logo.png new file mode 100644 index 000000000000..9939ad9e0321 Binary files /dev/null and b/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/logo.png differ diff --git a/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/info.json b/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/info.json index 52cdc7da27fd..58a03890f560 100644 --- a/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/info.json +++ b/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/info.json @@ -7,6 +7,6 @@ "type": "BEP20", "symbol": "AVA", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/logo.png b/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/logo.png deleted file mode 100644 index f0cfeef3b5e9..000000000000 Binary files a/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/logo.png and /dev/null 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/0x14778860E937f509e651192a90589dE711Fb88a9/info.json b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json new file mode 100644 index 000000000000..9f82501ede97 --- /dev/null +++ b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json @@ -0,0 +1,25 @@ +{ + "name": "CyberConnect", + "type": "BEP20", + "symbol": "CYBER", + "decimals": 18, + "website": "https://cyberconnect.me/", + "description": "CyberConnect is a Web3 social network that enables developers to create social applications empowering users to own their digital identity, content, connections, and interactions.", + "explorer": "https://bscscan.com/token/0x14778860e937f509e651192a90589de711fb88a9", + "status": "active", + "id": "0x14778860E937f509e651192a90589dE711Fb88a9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CyberConnectHQ" + }, + { + "name": "github", + "url": "https://github.com/cyberconnecthq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cyberconnect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png new file mode 100644 index 000000000000..b26b7b808fb1 Binary files /dev/null and b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png differ diff --git a/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/info.json b/blockchains/smartchain/assets/0x151B1e2635A717bcDc836ECd6FbB62B674FE3E1D/info.json index 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/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/info.json b/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/info.json new file mode 100644 index 000000000000..04d74844bd8a --- /dev/null +++ b/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/info.json @@ -0,0 +1,54 @@ +{ + "name": "GAMER", + "type": "BEP20", + "symbol": "GMR", + "decimals": 18, + "website": "https://gmr.center", + "description": "GMR: The nexus of gaming and blockchain. Trade, play, interact, and thrive in a digital world powered by the $GMR token.", + "explorer": "https://bscscan.com/token/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a", + "status": "active", + "id": "0x168e3b1746Aa249a9b3603B70605924fE255Ee1a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GMRCenter" + }, + { + "name": "github", + "url": "https://github.com/gmr-center" + }, + { + "name": "telegram", + "url": "https://t.me/gmrcenter" + }, + { + "name": "docs", + "url": "https://whitepaper.gmr.center/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/gmrcenter" + }, + { + "name": "facebook", + "url": "https://facebook.com/gmrcenterofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamer" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gamer" + }, + { + "name": "youtube", + "url": "https://youtube.com/GMRCenter" + } + ], + "tags": [ + "nft", + "defi", + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/logo.png b/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/logo.png rename to blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/logo.png diff --git a/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/info.json b/blockchains/smartchain/assets/0x16939ef78684453bfDFb47825F8a5F714f12623a/info.json index 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..7d878a83e07b Binary files /dev/null and b/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/logo.png differ diff --git a/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/info.json b/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/info.json new file mode 100644 index 000000000000..eac07c646a0a --- /dev/null +++ b/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/info.json @@ -0,0 +1,25 @@ +{ + "name": "DexCheck", + "type": "BEP20", + "symbol": "DCK", + "decimals": 18, + "website": "https://dexcheck.ai/", + "description": "DexCheck is an AI-boosted analytics platform. It offers real-time insights into crypto and NFT markets, making blockchain analysis intuitive and accessible.", + "explorer": "https://bscscan.com/token/0x16faf9daa401aa42506af503aa3d80b871c467a3", + "status": "active", + "id": "0x16faF9DAa401AA42506AF503Aa3d80B871c467A3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DexCheck_io" + }, + { + "name": "whitepaper", + "url": "https://t.me/dexcheck" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dexcheck/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/logo.png b/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/logo.png new file mode 100644 index 000000000000..6bdb6e723dfc Binary files /dev/null and b/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/logo.png differ diff --git a/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/info.json b/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/info.json new file mode 100644 index 000000000000..fd5f3e7c3654 --- /dev/null +++ b/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/info.json @@ -0,0 +1,44 @@ +{ + "name": "Templar DAO", + "website": "https://templar.finance", + "description": "TemplarDAO is a decentralized reserve currency and hedge fund featuring a proprietary treasury-reverse protocol", + "explorer": "https://bscscan.com/token/0x19e6bfc1a6e4b042fb20531244d47e252445df01", + "type": "BEP20", + "symbol": "TEM", + "decimals": 9, + "status": "active", + "id": "0x19e6BfC1A6e4B042Fb20531244D47E252445df01", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/TemplarDAO" + }, + { + "name": "twitter", + "url": "https://twitter.com/TemplarDAO" + }, + { + "name": "github", + "url": "https://github.com/TemplarDAO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/templar-dao" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/templardao" + }, + { + "name": "medium", + "url": "https://medium.com/@templardao.finance" + }, + { + "name": "docs", + "url": "https://templardao-finance.gitbook.io/templardao" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/logo.png b/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/logo.png new file mode 100644 index 000000000000..865b51baa501 Binary files /dev/null and b/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/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/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/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json b/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json new file mode 100644 index 000000000000..eb33d4eaf3e8 --- /dev/null +++ b/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json @@ -0,0 +1,46 @@ +{ + "name": "Dypius", + "type": "BEP20", + "symbol": "DYP", + "decimals": 18, + "website": "https://www.dypius.com/", + "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", + "explorer": "https://bscscan.com/token/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4", + "status": "active", + "id": "0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dypius" + }, + { + "name": "github", + "url": "https://github.com/dypfinance/" + }, + { + "name": "medium", + "url": "https://dypius.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/defi-yield-protocol-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dypius" + }, + { + "name": "discord", + "url": "https://discord.com/invite/worldofdypians" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/drive/folders/1PprliiDlNB6Cx-35eaEun-gmjk0-a1O4" + } + ], + "tags": [ + "governance", + "nft", + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/logo.png b/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/logo.png new file mode 100644 index 000000000000..b86b0fca332a Binary files /dev/null and b/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/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/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/info.json b/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/info.json new file mode 100644 index 000000000000..b83105fced9f --- /dev/null +++ b/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/info.json @@ -0,0 +1,54 @@ +{ + "name": "IguVerse", + "type": "BEP20", + "symbol": "IGU", + "decimals": 18, + "website": "https://iguverse.com/", + "description": "IguVerse GameFi app redefines the whole concept of NFT using AI / ML technologies. Unique user-generated NFTs will become the new standard NFT 2.0, dethroning faceless collections. In our GameFi app, we introduce an innovative game mechanic Socialize to Earn, along with two more Earn concepts - Move to Earn and Play to Earn, where users can complete simple tasks like sharing pet photos on social media or walking and feeding them to get rewards.", + "explorer": "https://bscscan.com/token/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943", + "status": "active", + "id": "0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/iguverse" + }, + { + "name": "github", + "url": "https://github.com/iguverse" + }, + { + "name": "telegram", + "url": "https://t.me/iguverse_chat" + }, + { + "name": "discord", + "url": "https://discord.com/invite/iguverse" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.iguverse.com/" + }, + { + "name": "facebook", + "url": "https://facebook.com/iguverse" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/iguverse/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/iguverse-igu" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/iguverse_official" + } + ], + "tags": [ + "gamefi", + "dapp", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/logo.png b/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/logo.png new file mode 100644 index 000000000000..06aaba01c44a Binary files /dev/null and b/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/logo.png differ 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/0x2598c30330D5771AE9F983979209486aE26dE875/info.json b/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/info.json new file mode 100644 index 000000000000..b6faae92ae14 --- /dev/null +++ b/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/info.json @@ -0,0 +1,21 @@ +{ + "name": "Any Inu", + "website": "https://www.anyinu.xyz/", + "description": "$AI is a omnichain dog coin powered by Axelar's Interchain Token Service.", + "explorer": "https://bscscan.com/token/0x2598c30330D5771AE9F983979209486aE26dE875", + "symbol": "AI", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x2598c30330D5771AE9F983979209486aE26dE875", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/any-inu/" + }, + { + "name": "twitter", + "url": "https://twitter.com/AnyInuCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/logo.png b/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/logo.png new file mode 100644 index 000000000000..244e0aba97ab Binary files /dev/null and b/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/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/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json b/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json index a6f7eb11088c..5b9783b8bb25 100644 --- a/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json +++ b/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json @@ -6,6 +6,6 @@ "description": "Decentralized system designed to build a data oracle network based on an open protocol for interaction between participants and a sustainable economy.", "website": "https://odinprotocol.io/", "explorer": "https://bscscan.com/token/0x2802eb3a20f5892956d5b9528f6bf13e648534db", - "status": "active", + "status": "abandoned", "id": "0x2802eb3a20f5892956D5B9528F6Bf13E648534DB" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/logo.png b/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/logo.png deleted file mode 100644 index 3793f994e3a0..000000000000 Binary files a/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/logo.png and /dev/null 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/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/0x2A45a892877Ef383c5fc93A5206546c97496da9e/info.json b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/info.json new file mode 100644 index 000000000000..bd96d89c46f0 --- /dev/null +++ b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/info.json @@ -0,0 +1,48 @@ +{ + "name": "X AI", + "type": "BEP20", + "symbol": "X", + "decimals": 9, + "website": "https://xai.cx", + "description": "X AI is an application that leverages artificial intelligence and machine learning algorithms to create distinct digital assets that can be sold as Non-Fungible Tokens.", + "explorer": "https://bscscan.com/token/0x2A45a892877Ef383c5fc93A5206546c97496da9e", + "status": "active", + "id": "0x2A45a892877Ef383c5fc93A5206546c97496da9e", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/xai_tech" + }, + { + "name": "github", + "url": "https://github.com/xai-cx" + }, + { + "name": "telegram", + "url": "https://t.me/xai_english" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x2a45a892877ef383c5fc93a5206546c97496da9e#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/x-ai-cx/" + }, + { + "name": "docs", + "url": "https://docs.xai.cx" + }, + { + "name": "whitepaper", + "url": "https://docs.xai.cx" + }, + { + "name": "medium", + "url": "https://medium.com/@XAI_tech" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/logo.png b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/logo.png new file mode 100644 index 000000000000..31887729ff3a Binary files /dev/null and b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/logo.png differ diff --git a/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/info.json b/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/info.json new file mode 100644 index 000000000000..17d578df1366 --- /dev/null +++ b/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Magic Square", + "website": "https://magic.store/", + "description": "Magic Square is at the forefront of the Web3 space, featuring the unique 'Magic Store' - a vetted Web3 App Store with a curated range of apps, games, and an advanced Loyalty System.", + "explorer": "https://bscscan.com/token/0x2B72867c32CF673F7b02d208B26889fEd353B1f8", + "type": "BEP20", + "symbol": "SQR", + "decimals": 8, + "status": "active", + "id": "0x2B72867c32CF673F7b02d208B26889fEd353B1f8", + "links": [ + { + "name": "telegram", + "url": "https://t.me/magicsquare_official" + }, + { + "name": "twitter", + "url": "https://twitter.com/MagicSquareio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magic-square/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/logo.png b/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/logo.png new file mode 100644 index 000000000000..224d299befbf Binary files /dev/null and b/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/logo.png differ diff --git a/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/info.json b/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/info.json new file mode 100644 index 000000000000..d41f68274769 --- /dev/null +++ b/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/info.json @@ -0,0 +1,36 @@ +{ + "name": "AITECH", + "type": "BEP20", + "symbol": "AITECH", + "decimals": 18, + "website": "https://www.aitech.io/", + "description": "Powering the future of AI with our HPC data center, IaaS platform, AI Marketplace, AITECH Pad Launchpad. Powered by $AITECH token", + "explorer": "https://bscscan.com/token/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944", + "status": "active", + "id": "0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/AITECHio" + }, + { + "name": "telegram", + "url": "https://t.me/solidusaichat" + }, + { + "name": "discord", + "url": "https://discord.com/solidusai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solidus-ai-tech/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solidus-ai-tech/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/logo.png b/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/logo.png new file mode 100644 index 000000000000..5e3bf6cc275a Binary files /dev/null and b/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/logo.png differ diff --git a/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/info.json b/blockchains/smartchain/assets/0x2D7A47908d817dd359f9aBA7FEaA89c92a289c7E/info.json new file mode 100644 index 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/0x2e53414853f058A9BC14E052431008483bD85B4c/info.json b/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/info.json new file mode 100644 index 000000000000..43cd811f3dc3 --- /dev/null +++ b/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/info.json @@ -0,0 +1,48 @@ +{ + "name": "Grok", + "type": "BEP20", + "symbol": "GROK", + "decimals": 9, + "website": "https://grokx.codes", + "description": "Grok and GPT-4 belong to a class of AI models known as Large Language Models. GROK improves model alignment - the ability to follow user intentions while also making it more truthful and generating less offensive or dangerous output.", + "explorer": "https://bscscan.com/token/0x2e53414853f058a9bc14e052431008483bd85b4c", + "status": "active", + "id": "0x2e53414853f058A9BC14E052431008483bD85B4c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/grok_codes" + }, + { + "name": "github", + "url": "https://github.com/grokxcodes" + }, + { + "name": "telegram", + "url": "https://t.me/grok_intl" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x2e53414853f058a9bc14e052431008483bd85b4c#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grok-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grok-codes" + }, + { + "name": "docs", + "url": "https://doc.grokx.codes/" + }, + { + "name": "medium", + "url": "https://medium.com/@grok_grok" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/logo.png b/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/logo.png new file mode 100644 index 000000000000..3b03b1af2da7 Binary files /dev/null and b/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/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/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/info.json b/blockchains/smartchain/assets/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/info.json new file mode 100644 index 000000000000..bc161b2a92cb --- /dev/null +++ b/blockchains/smartchain/assets/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/info.json @@ -0,0 +1,25 @@ +{ + "name": "REV3AL", + "website": "https://rev3al.io/", + "description": "REV3AL is a patent-pending, multi-layered cybersecurity and anti-counterfeit technology company with the goal to provide new & dynamic security solutions & to protect digital media (NFTs, avatars, and in-game assets) for creators, artists & users in the Web3 & Blockchain spaces.", + "explorer": "https://bscscan.com/token/0x30B5E345C79255101B8af22a19805A6fb96DdEBb", + "type": "BEP20", + "symbol": "REV3L", + "decimals": 18, + "status": "active", + "id": "0x30B5E345C79255101B8af22a19805A6fb96DdEBb", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Rev3alTech" + }, + { + "name": "telegram", + "url": "https://t.me/rev3altech" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rev3al/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/logo.png b/blockchains/smartchain/assets/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/logo.png new file mode 100644 index 000000000000..d65485b25e96 Binary files /dev/null and b/blockchains/smartchain/assets/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/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/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/info.json b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/info.json new file mode 100644 index 000000000000..a11876fd04f1 --- /dev/null +++ b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/info.json @@ -0,0 +1,32 @@ +{ + "name": "Capitalrock", + "type": "BEP20", + "symbol": "CR", + "decimals": 18, + "website": "https://capitalrock.ch/", + "description": "Capital Rock Coin is a dynamic cryptocurrency introduced by the renowned forex trading firm, Capital Rock. With a global presence, boasting physical offices in ten countries, and an impressive portfolio of simultaneous dealings with 400 companies.", + "explorer": "https://bscscan.com/token/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8", + "status": "active", + "id": "0x3542a28854c5243656FA5cfA1A2811a32E28C1c8", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/capitalrockint" + }, + { + "name": "twitter", + "url": "https://twitter.com/CapitalRock_AG" + }, + { + "name": "telegram_news", + "url": "https://t.me/+WgsDY3hPuBgxY2Q6" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/capitalrock/" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/logo.png b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/logo.png new file mode 100644 index 000000000000..fd777a3cfe81 Binary files /dev/null and b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/logo.png differ diff --git a/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/info.json b/blockchains/smartchain/assets/0x35bEdBF9291b22218a0dA863170dcC9329Ef2563/info.json new file mode 100644 index 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/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/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/info.json b/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/info.json new file mode 100644 index 000000000000..4cf055e16ed2 --- /dev/null +++ b/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/info.json @@ -0,0 +1,29 @@ +{ + "name": "ShieldTokenCoin", + "type": "BEP20", + "symbol": "0STC", + "decimals": 18, + "website": "https://shieldtokencoin.org/", + "description": "Our groundbreaking project aims to create a decentralized blockchain with high performance and low cost. Through innovative technologies, we are developing a solution that enables fast and efficient transactions while ensuring the security and reliability of data. By eliminating intermediaries and reducing transaction costs, our blockchain has the potential to transform entire sectors of the economy, providing a transparent and trustworthy environment for businesses and users.", + "explorer": "https://bscscan.com/token/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe", + "status": "active", + "id": "0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ShieldTokenCoin" + }, + { + "name": "telegram", + "url": "https://t.me/ShieldTokenCoin" + }, + { + "name": "whitepaper", + "url": "https://shieldtokencoin.org/ShieldTokenCoin_WHITE_PAPER.pdf" + } + ] +} + diff --git a/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/logo.png b/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/logo.png new file mode 100644 index 000000000000..350b31959613 Binary files /dev/null and b/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/logo.png differ 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 index 642daf7f9219..b0c7158f5d2e 100644 --- a/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json +++ b/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json @@ -45,7 +45,6 @@ "tags": [ "wrapped", "deflationary", - "gamefi", - "staking-native" + "gamefi" ] } 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/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/info.json b/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/info.json new file mode 100644 index 000000000000..7e4166185fd2 --- /dev/null +++ b/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/info.json @@ -0,0 +1,36 @@ +{ + "name": "Big Amber Stone", + "type": "BEP20", + "symbol": "BAS", + "decimals": 18, + "website": "https://www.dracoomaster.com/dracoo", + "description": "Dracoo Master is a deck-building game based on blockchain technologies.", + "explorer": "https://bscscan.com/token/0x40ffafcd7415ed2f7a902312407181140ad14e68", + "status": "active", + "id": "0x40FfAFcd7415ed2F7A902312407181140Ad14E68", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Dracoo_Master" + }, + { + "name": "github", + "url": "https://github.com/dracoomaster" + }, + { + "name": "telegram", + "url": "https://t.me/DracooMasterOfficial" + }, + { + "name": "discord", + "url": "https://discord.com/invite/u3JWMB4mp3" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.dracooworld.com/" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/logo.png b/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/logo.png new file mode 100644 index 000000000000..47736bb7b9f3 Binary files /dev/null and b/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/logo.png differ diff --git a/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/info.json b/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/info.json new file mode 100644 index 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..7cebaadefc4f Binary files /dev/null and b/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/logo.png differ diff --git a/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json new file mode 100644 index 000000000000..dc9ee80d80aa --- /dev/null +++ b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json @@ -0,0 +1,21 @@ +{ + "name": "FantasyGold", + "website": "https://fantasygold.co/cgi-sys/suspendedpage.cgi", + "description": "FantasyGold was built to become a multi-purpose platform offering Ethereum Virtual Machine based smart contracts and lightning fast transactions.", + "explorer": "https://bscscan.com/token/0x41e025ea850bb4d0dcbb5b1f4353af099cbd026a", + "type": "BEP20", + "symbol": "FGC", + "decimals": 18, + "status": "active", + "id": "0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/fantasygoldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantasygold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png new file mode 100644 index 000000000000..6876a666683e Binary files /dev/null and b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png differ diff --git a/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/info.json b/blockchains/smartchain/assets/0x41cf3E9534156405a133Cda545aF9fF0E586500A/info.json index 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/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/info.json b/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/info.json new file mode 100644 index 000000000000..cb5fa560c6cf --- /dev/null +++ b/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/info.json @@ -0,0 +1,25 @@ +{ + "name": "Orbs", + "website": "https://orbs.com", + "description": "Orbs is a blockchain infrastructure-as-a-service built for large scale consumer applications to meet their business and technological requirements.", + "explorer": "https://bscscan.com/token/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170", + "type": "BEP20", + "symbol": "ORBS", + "decimals": 18, + "status": "active", + "id": "0x43a8cab15D06d3a5fE5854D714C37E7E9246F170", + "links": [ + { + "name": "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/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/logo.png b/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/logo.png new file mode 100644 index 000000000000..ba89f2dd8dd0 Binary files /dev/null and b/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/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/0x44a21B3577924DCD2e9C81A3347D204C36a55466/info.json b/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/info.json new file mode 100644 index 000000000000..873977178b7e --- /dev/null +++ b/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/info.json @@ -0,0 +1,21 @@ +{ + "name": "Paysenger EGO", + "website": "https://egoco.in", + "description": "Paysenger is a collaboration platform for content creators, fans and brands, bringing together the best tools for content monetization and audience engagement.", + "explorer": "https://bscscan.com/token/0x44a21B3577924DCD2e9C81A3347D204C36a55466", + "symbol": "EGO", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x44a21B3577924DCD2e9C81A3347D204C36a55466", + "links": [ + { + "name": "telegram", + "url": "https://t.me/egocoin_en" + }, + { + "name": "twitter", + "url": "https://twitter.com/Ego_Paysenger" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/logo.png b/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/logo.png new file mode 100644 index 000000000000..8c75686496f7 Binary files /dev/null and b/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/logo.png differ diff --git a/blockchains/smartchain/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/info.json b/blockchains/smartchain/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/info.json new file mode 100644 index 000000000000..d07c752c726c --- /dev/null +++ b/blockchains/smartchain/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/info.json @@ -0,0 +1,28 @@ +{ + "name": "TokenFi (TOKEN)", + "type": "BEP20", + "symbol": "TOKEN", + "decimals": 9, + "website": "https://tokenfi.com", + "description": "TokenFi is the ultimate platform for crypto and asset tokenization. Our aim is to make tokenization seamless and easy for the masses!.", + "explorer": "https://bscscan.com/token/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528", + "status": "active", + "id": "0x4507cEf57C46789eF8d1a19EA45f4216bae2B528", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/tokenfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tokenfi/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tokenfi" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png b/blockchains/smartchain/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png new file mode 100644 index 000000000000..69737a2c9591 Binary files /dev/null and b/blockchains/smartchain/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png differ diff --git a/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/info.json b/blockchains/smartchain/assets/0x45289007706E7Ee7B42b1fA506661d97740Edfb4/info.json 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/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/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/info.json b/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/info.json new file mode 100644 index 000000000000..ddb5afde1eaf --- /dev/null +++ b/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Teller USD", + "type": "BEP20", + "symbol": "USDT", + "decimals": 18, + "website": "https://www.tellerusd.com", + "description": "Welcome to the heart of innovation and stability in the crypto world – Teller USD (USDT). Our project represents a significant milestone in the realm of blockchain technology, with a primary focus on redefining financial security and reliability through the introduction of our groundbreaking stablecoin, Teller USD (USDT). At Teller USD (USDT), our vision is to usher in a new era of financial stability in the unpredictable world of cryptocurrencies. We believe in providing a secure and steadfast solution that empowers users to navigate the digital economy with confidence.", + "explorer": "https://bscscan.com/token/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5", + "status": "active", + "id": "0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/TellerUSD" + }, + { + "name": "telegram", + "url": "https://t.me/tellerusd" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/logo.png b/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/logo.png new file mode 100644 index 000000000000..c5066aca6dd6 Binary files /dev/null and b/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/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/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png b/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png index 8e97855518bf..276a83baae8d 100644 Binary files a/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png and b/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png differ diff --git a/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/logo.png b/blockchains/smartchain/assets/0x4BD17003473389A42DAF6a0a729f6Fdb328BbBd7/logo.png index 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/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/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/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/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/0x595a67D180BAE10314384265d56927C8ff073426/info.json b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/info.json new file mode 100644 index 000000000000..037bf4150255 --- /dev/null +++ b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/info.json @@ -0,0 +1,33 @@ +{ + "name": "Darik", + "type": "BEP20", + "symbol": "DARIK", + "decimals": 18, + "website": "https://darikcoin.org", + "description": "DARIK token, which is designed based on BEP20 and has strong support, is active in commercial sectors, and with this token, users can perform all kinds of transactions in a secure platform", + "explorer": "https://bscscan.com/token/0x595a67D180BAE10314384265d56927C8ff073426", + "status": "active", + "id": "0x595a67D180BAE10314384265d56927C8ff073426", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Darikcoin_Darik" + }, + { + "name": "telegram", + "url": "https://t.me/DARIKCOIN_DARIK" + }, + { + "name": "facebook", + "url": "https://facebook.com/people/Darik-Coin/pfbid02gFwGRGgpwcuBnZvY9SDkJibP6JbycXUeDvGdEHLpLaVwKfXJWEP3AWNEi61jVDKdl/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/dexscan/bsc/0xbba50be7a1cb6e25ddda562b0ca278089bf9068a/" + } + ], + "tags": [ + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/logo.png b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/logo.png new file mode 100644 index 000000000000..8fa8f5585a2b Binary files /dev/null and b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/logo.png differ diff --git a/blockchains/smartchain/assets/0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760/info.json b/blockchains/smartchain/assets/0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760/info.json new file mode 100644 index 000000000000..e21a1fd2c3f6 --- /dev/null +++ b/blockchains/smartchain/assets/0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760/info.json @@ -0,0 +1,25 @@ +{ + "name": "Operation Phoenix", + "website": "https://operationphoenix.network", + "description": "The mission of Operation Phoenix is simple. To become what SafeMoon should have been.", + "explorer": "https://bscscan.com/token/0x59803e5fe213d4b22fb9b061c4c89e716a1ca760", + "type": "BEP20", + "symbol": "OPHX", + "decimals": 18, + "status": "active", + "id": "0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Op_PhoenixChain" + }, + { + "name": "telegram", + "url": "https://t.me/operationphoenixnetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/operation-phoenix/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760/logo.png b/blockchains/smartchain/assets/0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760/logo.png new file mode 100644 index 000000000000..95a2a274d4ff Binary files /dev/null and b/blockchains/smartchain/assets/0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760/logo.png differ diff --git a/blockchains/smartchain/assets/0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A/info.json b/blockchains/smartchain/assets/0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A/info.json new file mode 100644 index 000000000000..44ebb0fb1eb5 --- /dev/null +++ b/blockchains/smartchain/assets/0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A/info.json @@ -0,0 +1,28 @@ +{ + "name": "Catcoin", + "type": "BEP20", + "symbol": "CAT", + "decimals": 9, + "website": "https://catcoin.com", + "description": "Catcoin is a cat theme token that focuses on community decentralization and adoption. $CAT is designed to make memeCoins great again.", + "explorer": "https://bscscan.com/token/0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A", + "status": "active", + "id": "0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/catcoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/catcoinalert" + }, + { + "name": "facebook", + "url": "https://facebook.com/catcoincom" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A/logo.png b/blockchains/smartchain/assets/0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A/logo.png new file mode 100644 index 000000000000..0ff8ebaa9bb2 Binary files /dev/null and b/blockchains/smartchain/assets/0x59F4F336Bf3D0C49dBfbA4A74eBD2a6aCE40539A/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/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/info.json b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/info.json new file mode 100644 index 000000000000..77472c4bb28b --- /dev/null +++ b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/info.json @@ -0,0 +1,44 @@ +{ + "name": "ElonXAIDogeMessi69PepeInu", + "type": "BEP20", + "symbol": "BITCOIN", + "decimals": 9, + "website": "https://bitcoin69.org", + "description": "Aims to create a connection between Artificial Intelligence and Cryptocurrency to build a strong web3 system.", + "explorer": "https://bscscan.com/token/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B", + "status": "active", + "id": "0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bitcoin69_bsc" + }, + { + "name": "github", + "url": "https://github.com/ElonXAIDogeMessi69PepeInu" + }, + { + "name": "telegram", + "url": "https://t.me/bitcoin69_global" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x5afa2959c98b030716f7c0a4d85e0b0e35f3791b#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elonxaidogemessi69pepeinu/" + }, + { + "name": "docs", + "url": "https://doc.bitcoin69.org/" + }, + { + "name": "medium", + "url": "https://medium.com/@bitcoin69" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/logo.png b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/logo.png new file mode 100644 index 000000000000..0b053e713c46 Binary files /dev/null and b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/logo.png differ 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/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/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json b/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json new file mode 100644 index 000000000000..0e9940ec8f0d --- /dev/null +++ b/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json @@ -0,0 +1,64 @@ +{ + "name": "Beam", + "type": "BEP20", + "symbol": "BEAM", + "decimals": 18, + "website": "https://meritcircle.io/", + "description": "Beam is a sovereign network focused on gaming brought to you by the Merit Circle DAO.", + "explorer": "https://bscscan.com/token/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE", + "status": "active", + "id": "0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/buildonbeam" + }, + { + "name": "github", + "url": "https://github.com/Merit-Circle" + }, + { + "name": "telegram", + "url": "https://t.me/meritcircle" + }, + { + "name": "telegram_news", + "url": "https://t.me/meritcircle_ann" + }, + { + "name": "docs", + "url": "https://docs.onbeam.com" + }, + { + "name": "blog", + "url": "https://medium.com/@meritcircle" + }, + { + "name": "forum", + "url": "https://gov.meritcircle.io/" + }, + { + "name": "medium", + "url": "https://medium.com/@meritcircle" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/beam-2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/onbeam/" + }, + { + "name": "whitepaper", + "url": "https://meritcircle.gitbook.io/merit-circle/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/meritcircle" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/logo.png b/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/logo.png new file mode 100644 index 000000000000..df55519f7a2d Binary files /dev/null and b/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/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/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json b/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json new file mode 100644 index 000000000000..15bca650ca82 --- /dev/null +++ b/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json @@ -0,0 +1,45 @@ +{ + "id": "0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC", + "name": "IDRX", + "type": "BEP20", + "symbol": "IDRX", + "decimals": 0, + "website": "https://idrx.co/", + "description": "IDRX is a stable token pegged to the value of the Indonesian Rupiah (IDR). As a cryptocurrency, IDRX offers users the benefits of blockchain technology, including security, transparency, and decentralized control. At the same time, as a stable token, IDRX offers price stability by maintaining a fixed exchange rate with the IDR, which is the national currency of Indonesia.", + "explorer": "https://bscscan.com/token/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC", + "status": "active", + "tags": [ + "stablecoin", + "staking" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/idrx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/idrx/" + }, + { + "name": "github", + "url": "https://github.com/idrx-co/" + }, + { + "name": "docs", + "url": "https://docs.idrx.co/" + }, + { + "name": "whitepaper", + "url": "https://idrx.co/docs/Whitepaper%20IDRX.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/officialidrx" + }, + { + "name": "medium", + "url": "https://idrx.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png b/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png new file mode 100644 index 000000000000..444a5d98ac88 Binary files /dev/null and b/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png differ 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/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/info.json b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/info.json new file mode 100644 index 000000000000..18d38c438ef1 --- /dev/null +++ b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/info.json @@ -0,0 +1,26 @@ +{ + "name": "Measurable Data Token", + "website": "http://mdt.io", + "description": "Measurable Data Token (MDT) aims to provide a decentralized data economy, where data providers and data buyers can exchange data securely and anonymously.", + "explorer": "https://bscscan.com/token/0x668db7aa38eac6b40c9d13dbe61361dc4c4611d1", + "research": "https://research.binance.com/en/projects/measurable-data-token", + "type": "BEP20", + "symbol": "MDT", + "decimals": 18, + "status": "active", + "id": "0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MeasurableData" + }, + { + "name": "github", + "url": "https://github.com/measurabledatatoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/measurable-data-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/logo.png b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/logo.png new file mode 100644 index 000000000000..4406b320c48f Binary files /dev/null and b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/logo.png differ diff --git a/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/info.json b/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/info.json new file mode 100644 index 000000000000..11625c3504a8 --- /dev/null +++ b/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/info.json @@ -0,0 +1,34 @@ +{ + "name": "Matrix Chain", + "type": "BEP20", + "symbol": "MTC", + "decimals": 18, + "website": "https://matrixchain.space/", + "description": "The World’s Leading Decentralized Finance Platform", + "explorer": "https://bscscan.com/token/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93", + "status": "active", + "id": "0x67009eB16ff64d06b4F782b3c552b924B1D1bb93", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Matrixchain_no1" + }, + { + "name": "telegram", + "url": "https://t.me/MatrixChainn01" + }, + { + "name": "github", + "url": "https://github.com/mtcv3" + }, + { + "name": "whitepaper", + "url": "https://matrixchain.space/resources/document/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/matrix-chain/" + } + ], + "tags": [] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/logo.png b/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/logo.png new file mode 100644 index 000000000000..67c98a7d839e Binary files /dev/null and b/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/logo.png differ diff --git a/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/info.json b/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/info.json new file mode 100644 index 000000000000..a697e5e5ca5a --- /dev/null +++ b/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/info.json @@ -0,0 +1,36 @@ +{ + "name": "Seed.Photo", + "id":"0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7", + "website": "https://seed.photo/", + "description": "Protect the value of your photography against misuse or violation from artificial intelligence, social media and news platforms.", + "explorer": "https://bscscan.com/token/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7", + "symbol": "SEED", + "type": "BEP20", + "decimals": 18, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/seedphoto/SeedToken" + }, + { + "name": "twitter", + "url": "https://twitter.com/SeedPhoto" + }, + { + "name": "whitepaper", + "url": "https://token.seed.photo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/seed-photo" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/seed-photo" + } + ] +} diff --git a/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/logo.png b/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/logo.png new file mode 100644 index 000000000000..51fbe28e5384 Binary files /dev/null and b/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/logo.png differ diff --git a/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/info.json b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/info.json new file mode 100644 index 000000000000..0349bbdf9d26 --- /dev/null +++ b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/info.json @@ -0,0 +1,36 @@ +{ + "name": "TXGPRO", + "type": "BEP20", + "symbol": "TXGP", + "decimals": 8, + "website": "https://pro.trustxgaming.io/", + "description": "TXGPRO, a GameFi protocol developed by TRUSTxGAMING: 1. Play-to-Earn Concept: TXGPRO revolves around a \"play-to-earn\" concept, where gamers can participate in games within the platform using TXGP tokens. By doing so, they can earn cryptocurrency rewards based on their in-game achievements and contributions. This incentivizes gamers to engage with the platform and earn crypto rewards while enjoying their gaming experiences.", + "explorer": "https://bscscan.com/token/0x6739e0572A24bE7864B466f79844C4f3B7d6f857", + "status": "active", + "id": "0x6739e0572A24bE7864B466f79844C4f3B7d6f857", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/trust_xgaming" + }, + { + "name": "telegram", + "url": "https://t.me/trustxgaming" + }, + { + "name": "discord", + "url": "https://discord.com/invite/tXMs8DVFsd" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.txgpro.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/txgpro/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/logo.png b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/logo.png new file mode 100644 index 000000000000..71b01c59420f Binary files /dev/null and b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/logo.png differ diff --git a/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/info.json b/blockchains/smartchain/assets/0x678e840C640F619E17848045D23072844224dD37/info.json new file mode 100644 index 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/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/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/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json b/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json index 012e50146201..6a93578f19dc 100644 --- a/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json +++ b/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json @@ -9,7 +9,6 @@ "status": "active", "id": "0x6a731582f6189477c379A8da7d26Dcec3F0a0919", "tags": [ - "staking-native", "gamefi" ], "links": [ @@ -46,4 +45,4 @@ "url": "https://coingecko.com/coins/king-of-legends" } ] -} +} diff --git a/blockchains/smartchain/assets/0x6cda2862fd4B88CCFA522FFeD66bC4277e7D9Cc9/info.json b/blockchains/smartchain/assets/0x6cda2862fd4B88CCFA522FFeD66bC4277e7D9Cc9/info.json new file mode 100644 index 000000000000..e335481c034c --- /dev/null +++ b/blockchains/smartchain/assets/0x6cda2862fd4B88CCFA522FFeD66bC4277e7D9Cc9/info.json @@ -0,0 +1,40 @@ +{ + "name": "Neurashi", + "website": "https://Neurashi.com", + "description": "Neurashi is a contemporary and steadfast AI blockchain framework that integrates the robustness of blockchain infrastructure with the nexus of artificial intelligence (AI).", + "explorer": "https://bscscan.com/token/0x6cda2862fd4B88CCFA522FFeD66bC4277e7D9Cc9", + "type": "BEP20", + "symbol": "NEI", + "decimals": 18, + "status": "active", + "id": "0x6cda2862fd4B88CCFA522FFeD66bC4277e7D9Cc9", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/neurashi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neurashi/" + }, + { + "name": "telegram", + "url": "https://t.me/neurashi" + }, + { + "name": "github", + "url": "https://github.com/Neurashi" + }, + { + "name": "whitepaper", + "url": "https://neurashi.com/whitepaper/" + }, + { + "name": "medium", + "url": "https://neurashi.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6cda2862fd4B88CCFA522FFeD66bC4277e7D9Cc9/logo.png b/blockchains/smartchain/assets/0x6cda2862fd4B88CCFA522FFeD66bC4277e7D9Cc9/logo.png new file mode 100644 index 000000000000..201578d591fb Binary files /dev/null and b/blockchains/smartchain/assets/0x6cda2862fd4B88CCFA522FFeD66bC4277e7D9Cc9/logo.png differ diff --git a/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/info.json b/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/info.json new file mode 100644 index 000000000000..9ccf1b04630f --- /dev/null +++ b/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/info.json @@ -0,0 +1,21 @@ +{ + "name": "Baby Troll", + "type": "BEP20", + "symbol": "BabyTroll", + "decimals": 9, + "website": "https://www.babytroll.ai/", + "description": "Baby Troll is a meme token whereby 1% percentage of every transaction contributes to the liquidity pool, ensuring stability and liquidity for Baby Troll Tokens.", + "explorer": "https://bscscan.com/token/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C", + "status": "active", + "id": "0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BabyTrollBsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-troll/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/logo.png b/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/logo.png new file mode 100644 index 000000000000..45dad943cad6 Binary files /dev/null and b/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/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/0x71afF23750db1f4edbE32C942157a478349035b2/info.json b/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json index de34a50293bd..dc9e22dd7db2 100644 --- a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json +++ b/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "PVM", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x71afF23750db1f4edbE32C942157a478349035b2" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/logo.png b/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/logo.png deleted file mode 100644 index 425cbb5291ad..000000000000 Binary files a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/info.json b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/info.json new file mode 100644 index 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/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/info.json b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/info.json new file mode 100644 index 000000000000..359c4030d613 --- /dev/null +++ b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/info.json @@ -0,0 +1,29 @@ +{ + "name": "WEB3MET", + "type": "BEP20", + "symbol": "W3M", + "decimals": 18, + "website": "https://web3met.com", + "description": "The W3M token will be the native digital currency of the Web3Met metaverse. All transactions ranging from buying digital land, trading NFT items, to booking event space will be using the W3M token. W3M will fuel the activities within this digital city.", + "explorer": "https://bscscan.com/token/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78", + "status": "active", + "id": "0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/web3met" + }, + { + "name": "telegram", + "url": "https://t.me/W3MWEB3MET" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x7208a2671a2f96950d44c6daaf24719ce44dea78#code#L1" + } + ], + "tags": [ + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/logo.png b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/logo.png new file mode 100644 index 000000000000..99bcbded70bf Binary files /dev/null and b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/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/0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB/info.json b/blockchains/smartchain/assets/0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB/info.json new file mode 100644 index 000000000000..594a559fd55a --- /dev/null +++ b/blockchains/smartchain/assets/0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB/info.json @@ -0,0 +1,21 @@ +{ + "name": "NFPrompt", + "website": "https://nfprompt.io", + "description": "NFPrompt is an AI-driven UGC platform designed for the new generation of Web3 creators. It's an all-in-one platform with the power of AI-creation, social community, and commercialization.", + "explorer": "https://bscscan.com/token/0x75e8ddb518bb757b4282cd5b83bb70d4101d12fb", + "symbol": "NFP", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB", + "links": [ + { + "name": "telegram", + "url": "https://t.me/nfprompt" + }, + { + "name": "twitter", + "url": "https://twitter.com/nfprompt" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB/logo.png b/blockchains/smartchain/assets/0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB/logo.png new file mode 100644 index 000000000000..f13060b1aeb1 Binary files /dev/null and b/blockchains/smartchain/assets/0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB/logo.png differ diff --git a/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/info.json b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/info.json new file mode 100644 index 000000000000..1ee4eb74d7ba --- /dev/null +++ b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/info.json @@ -0,0 +1,32 @@ +{ + "name": "PVC META", + "type": "BEP20", + "symbol": "PVC", + "decimals": 9, + "website": "https://pvcmeta.io/", + "description": "PVC Meta is your premier source for everything cryptocurrency related. PVC Meta is definitely the most trusted and leading cryptocurrency on all digital platforms which is based on Binance smart chain", + "explorer": "https://bscscan.com/token/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3", + "status": "active", + "id": "0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/pvcmeta" + }, + { + "name": "github", + "url": "https://github.com/pvcmetaofficial" + }, + { + "name": "telegram", + "url": "https://t.me/PVCMETATKN" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pvc-meta/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/logo.png b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/logo.png new file mode 100644 index 000000000000..828b3695b69b Binary files /dev/null and b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/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/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/info.json b/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/info.json index 13822be5d2de..5cb034d7336c 100644 --- a/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/info.json +++ b/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/info.json @@ -1,44 +1,42 @@ { - "name": "OVR", - "symbol": "OVR", - "type": "BEP20", - "decimals": 18, - "description": "OVR is the decentralized infrastructure for the metaverse, merging physical and virtual world through Augmented Reality", - "website": "https://www.ovr.ai/", - "explorer": "https://bscscan.com/token/0x7e35d0e9180bf3a1fc47b0d110be7a21a10b41fe", - "status": "active", - "id": "0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe", - "tags": [ - "nft" - ], - "links": [ - { - "name": "telegram", - "url": "https://t.me/OVRtheReality" - }, - { - "name": "twitter", - "url": "https://twitter.com/OVRtheReality" - }, - { - "name": "facebook", - "url": "https://facebook.com/OVRmetaverse/" - }, - { - "name": "telegram_news", - "url": "https://t.me/ovrannouncements" - }, - { - "name": "medium", - "url": "https://medium.com/ovrthereality" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/ovr" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/ovr/" - } - ] + "name": "OVR", + "symbol": "OVR", + "type": "BEP20", + "decimals": 18, + "description": "OVR is the decentralized infrastructure for the metaverse, merging physical and virtual world through Augmented Reality", + "website": "https://www.overthereality.ai/", + "explorer": "https://bscscan.com/token/0x7e35d0e9180bf3a1fc47b0d110be7a21a10b41fe", + "status": "active", + "id": "0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe", + "tags": ["nft"], + "links": [ + { + "name": "telegram", + "url": "https://t.me/OVRtheReality" + }, + { + "name": "twitter", + "url": "https://twitter.com/OVRtheReality" + }, + { + "name": "facebook", + "url": "https://facebook.com/Overmetaverse" + }, + { + "name": "telegram_news", + "url": "https://t.me/ovrannouncements" + }, + { + "name": "medium", + "url": "https://medium.com/ovrthereality" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ovr" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ovr/" + } + ] } diff --git a/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/logo.png b/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/logo.png index c3045348fbd1..5bc8414cd246 100644 Binary files a/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/logo.png and b/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/logo.png differ diff --git a/blockchains/smartchain/assets/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/0x7dDEE176F665cD201F93eEDE625770E2fD911990/info.json b/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/info.json index 33e46a8080b3..2ed8cfc09757 100644 --- a/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/info.json +++ b/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "GALA", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x7dDEE176F665cD201F93eEDE625770E2fD911990", "tags": [ "nft", diff --git a/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/logo.png b/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/logo.png deleted file mode 100644 index c1a6a7a90050..000000000000 Binary files a/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/logo.png and /dev/null 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/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/info.json b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/info.json new file mode 100644 index 000000000000..973ec8a77a8b --- /dev/null +++ b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/info.json @@ -0,0 +1,36 @@ +{ + "name": "GridX", + "type": "BEP20", + "symbol": "GDX", + "decimals": 18, + "website": "https://gridxecosystem.com", + "description": "GridX is a decentralized finance (DeFi) project that has recently gained attention in the cryptocurrency world. This project aims to address some of the issues that have plagued the DeFi space, such as high transaction fees, low transaction speeds, and limited scalability.", + "explorer": "https://bscscan.com/token/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2", + "status": "active", + "id": "0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GridxEcosystem" + }, + { + "name": "github", + "url": "https://github.com/gridxeco" + }, + { + "name": "telegram", + "url": "https://t.me/gridxfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gridx-ecosystem/" + }, + { + "name": "whitepaper", + "url": "https://gridxecosystem.com/img/whitepaper.pdf" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/logo.png b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/logo.png new file mode 100644 index 000000000000..ee164b461d0f Binary files /dev/null and b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/logo.png differ diff --git a/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/info.json b/blockchains/smartchain/assets/0x800a25741A414Ea6E6e2B382435081A479A8Cc3c/info.json new file mode 100644 index 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/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/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/info.json b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/info.json new file mode 100644 index 000000000000..39386a049c50 --- /dev/null +++ b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/info.json @@ -0,0 +1,44 @@ +{ + "name": "TRUMP", + "type": "BEP20", + "symbol": "MAGA", + "decimals": 9, + "website": "https://trumpmaga.dev", + "description": "MAGA Movement on the Blockchain. Powered by AI Technology.", + "explorer": "https://bscscan.com/token/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8", + "status": "active", + "id": "0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/maga_bnb" + }, + { + "name": "github", + "url": "https://github.com/trumpmagadev" + }, + { + "name": "telegram", + "url": "https://t.me/trump_eng" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x8479b19c5a3c43e024b2543582af0fc2fef2e6a8#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trump-maga/" + }, + { + "name": "docs", + "url": "https://doc.trumpmaga.dev/" + }, + { + "name": "medium", + "url": "https://medium.com/@maga_bnb" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/logo.png b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/logo.png new file mode 100644 index 000000000000..e40c5e6a14a7 Binary files /dev/null and b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/logo.png differ diff --git a/blockchains/smartchain/assets/0x8595F9dA7b868b1822194fAEd312235E43007b49/info.json b/blockchains/smartchain/assets/0x8595F9dA7b868b1822194fAEd312235E43007b49/info.json index 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..8fd135b3bbc9 --- /dev/null +++ b/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/info.json @@ -0,0 +1,53 @@ +{ + "name": "CRYPTO SNACK", + "type": "BEP20", + "symbol": "SNACK", + "decimals": 18, + "website": "https://cryptosnacks.org/", + "description": "Crypto Snack is the world’s fastest growing iGaming token", + "explorer": "https://bscscan.com/token/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657", + "status": "abandoned", + "id": "0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/cryptosnack_" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoSnackCommunity" + }, + { + "name": "telegram_news", + "url": "https://t.me/CryptoSnackOfficial" + }, + { + "name": "medium", + "url": "https://cryptosnack.medium.com/" + }, + { + "name": "whitepaper", + "url": "https://cryptosnacks.org/white-paper" + }, + { + "name": "facebook", + "url": "https://facebook.com/CryptoSnackOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/es/currencies/crypto-snack/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/crypto-snack" + }, + { + "name": "github", + "url": "https://github.com/CryptoSnackProject" + }, + { + "name": "discord", + "url": "https://discord.com/invite/NyemjyETwA" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json b/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json index 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/info.json b/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json index 737755caec8a..5850b8922011 100644 --- a/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json +++ b/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json @@ -6,7 +6,7 @@ "website": "https://squidgrow.wtf", "description": "SquidGrow is the next big meme utility token in the cryptocurrency space! Created by the biggest Shiba Inu whale, SquidGrow has the building blocks to get to the highest level. With our owner being one of the biggest investors in the world, the possibilities and connections for SquidGrow are endless!", "explorer": "https://bscscan.com/token/0x88479186BAC914E4313389a64881F5ed0153C765", - "status": "active", + "status": "abandoned", "id": "0x88479186BAC914E4313389a64881F5ed0153C765", "links": [ { diff --git a/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/logo.png b/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/logo.png deleted file mode 100644 index cc9f959d0251..000000000000 Binary files a/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/logo.png and /dev/null 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/0x88DA9901B3A02fE24E498e1eD683D2310383E295/info.json b/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/info.json new file mode 100644 index 000000000000..a9caae0910db --- /dev/null +++ b/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/info.json @@ -0,0 +1,36 @@ +{ + "name": "Baby Grok", + "type": "BEP20", + "symbol": "BabyGrok", + "decimals": 9, + "website": "https://babygrok.ai", + "description": "Welcome to Baby Grok The Future of DeFi! 🚀", + "explorer": "https://bscscan.com/token/0x88da9901b3a02fe24e498e1ed683d2310383e295", + "status": "active", + "id": "0x88DA9901B3A02fE24E498e1eD683D2310383E295", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/babygrok_" + }, + { + "name": "telegram", + "url": "https://t.me/babygrok" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-grok-bsc" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/baby-grok" + }, + { + "name": "telegram_news", + "url": "https://t.me/babygrok" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/logo.png b/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/logo.png new file mode 100644 index 000000000000..99779d45fb57 Binary files /dev/null and b/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/logo.png 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/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/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/info.json b/blockchains/smartchain/assets/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/info.json new file mode 100644 index 000000000000..c107dbaa313e --- /dev/null +++ b/blockchains/smartchain/assets/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/info.json @@ -0,0 +1,21 @@ +{ +"name": "ZigCoin", +"type": "BEP20", +"symbol": "ZIG", +"decimals": 18, +"website": "https://zignaly.com/", +"description": "Zignaly is a social investment platform where users can follow winning strategies and participate in their returns.", +"explorer": "https://bscscan.com/token/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145", +"status": "active", +"id": "0x8C907e0a72C3d55627E853f4ec6a96b0C8771145", +"links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zigcoin/" + }, + { + "name": "twitter", + "url": "https://twitter.com/zignaly" + } +] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/logo.png b/blockchains/smartchain/assets/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/logo.png new file mode 100644 index 000000000000..e610bbed620f Binary files /dev/null and b/blockchains/smartchain/assets/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/logo.png differ diff --git a/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/info.json b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/info.json new file mode 100644 index 000000000000..afe12c9d7923 --- /dev/null +++ b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/info.json @@ -0,0 +1,40 @@ +{ + "name": "Rimaunangis", + "type": "BEP20", + "symbol": "RXT", + "decimals": 18, + "website": "https://www.rimaunangis.world", + "description": "Tokenization for Food Chain and Lifestyle as Bridge of Metaworld Ecosystem", + "explorer": "https://bscscan.com/token/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01", + "status": "active", + "id": "0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/RimaunangisRXT" + }, + { + "name": "facebook", + "url": "https://facebook.com/Rimaunangis-Digital-LLC-107415268757938/" + }, + { + "name": "telegram", + "url": "https://t.me/rimaunangis_official" + }, + { + "name": "telegram_news", + "url": "https://t.me/Rimau_Nangis" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rimaunangis/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rimaunangis" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/logo.png b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/logo.png new file mode 100644 index 000000000000..232f1cd502cb Binary files /dev/null and b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/logo.png differ 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/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/info.json b/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/info.json new file mode 100644 index 000000000000..1a43c12b173a --- /dev/null +++ b/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/info.json @@ -0,0 +1,48 @@ +{ + "name": "xAI", + "type": "BEP20", + "symbol": "xAI", + "decimals": 9, + "website": "https://xai.gd", + "description": "xAI the science of making machines that can think like humans.", + "explorer": "https://bscscan.com/token/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f", + "status": "active", + "id": "0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/xai_gd" + }, + { + "name": "github", + "url": "https://github.com/xaigd" + }, + { + "name": "source_code", + "url": "https://github.com/xaigd/contract/blob/main/contract.sol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/xai-3" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xai-token/" + }, + { + "name": "docs", + "url": "https://doc.xai.gd" + }, + { + "name": "medium", + "url": "https://medium.com/@xai_gd" + }, + { + "name": "whitepaper", + "url": "https://doc.xai.gd" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/logo.png b/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/logo.png new file mode 100644 index 000000000000..7b59e64247d7 Binary files /dev/null and b/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/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/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..511e509d186d --- /dev/null +++ b/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json @@ -0,0 +1,46 @@ +{ + "name": "Dypius", + "type": "BEP20", + "symbol": "DYP", + "decimals": 18, + "website": "https://www.dypius.com/", + "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", + "explorer": "https://bscscan.com/token/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "status": "abandoned", + "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", + "links": [ + { + "name": "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/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/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/info.json b/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/info.json new file mode 100644 index 000000000000..0f21b42f9c62 --- /dev/null +++ b/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/info.json @@ -0,0 +1,33 @@ +{ + "name": "DIA", + "website": "https://diadata.org", + "description": "DIA (Decentralised Information Asset) claims to provide financial institutions with an immutable and verified single source of financial market data for any market and asset type.", + "explorer": "https://bscscan.com/token/0x99956d38059cf7beda96ec91aa7bb2477e0901dd", + "research": "https://research.binance.com/en/projects/dia", + "symbol": "DIA", + "type": "BEP20", + "decimals": 18, + "status": "active", + "tags": [ + "defi" + ], + "links": [ + { + "name": "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": "0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/logo.png b/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/logo.png new file mode 100644 index 000000000000..8fd8d3e70ba4 Binary files /dev/null and b/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/logo.png differ 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/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/info.json b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/info.json new file mode 100644 index 000000000000..5b4c202a3da1 --- /dev/null +++ b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/info.json @@ -0,0 +1,28 @@ +{ + "name": "Platform of meme coins", + "type": "BEP20", + "symbol": "PAYU", + "decimals": 18, + "website": "http://www.memecoins.finance/", + "description": "The most catchy memecoin out there that anyone can win. Platform of meme coins. Shop with your meme coins. Stake or earn meme coins.", + "explorer": "https://bscscan.com/token/0x9aeb2e6dd8d55e14292acfcfc4077e33106e4144", + "status": "active", + "id": "0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/payu_coin" + }, + { + "name": "telegram", + "url": "https://t.me/payu_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/platform-of-meme-coins/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/logo.png b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/logo.png new file mode 100644 index 000000000000..de6546b7fd72 Binary files /dev/null and b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/logo.png differ diff --git a/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/info.json b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/info.json new file mode 100644 index 000000000000..956543b93c63 --- /dev/null +++ b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/info.json @@ -0,0 +1,24 @@ +{ + "name": "Natronz", + "type": "BEP20", + "symbol": "NTZ", + "decimals": 18, + "website": "https://natronz.com/", + "description": "NatronZ aims to empower our investors by pushing the boundaries of investment profitability through advanced technological enhancements, taking it to a superior level.", + "explorer": "https://bscscan.com/token/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD", + "status": "active", + "id": "0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/natronzofficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/natronzofficial" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/logo.png b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/logo.png new file mode 100644 index 000000000000..1a14dd8ae40f Binary files /dev/null and b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/logo.png differ diff --git a/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/info.json b/blockchains/smartchain/assets/0x9Cb9478C5Db5dAe52D5Af91737FF706F60195e45/info.json new file mode 100644 index 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/0x9b208b117B2C4F76C1534B6f006b033220a681A4/info.json b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/info.json new file mode 100644 index 000000000000..34ed5013db1d --- /dev/null +++ b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Dingocoin", + "symbol": "DINGO", + "type": "BEP20", + "decimals": 8, + "description": "Dingocoin is an Scrypt AuxPow fork of Dogecoin, with a vibrant and active community that seeks to build fun projects around the coin.", + "website": "http://dingocoin.org/", + "explorer": "https://bscscan.com/token/0x9b208b117b2c4f76c1534b6f006b033220a681a4", + "status": "active", + "id": "0x9b208b117B2C4F76C1534B6f006b033220a681A4", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dingocoincrypto" + }, + { + "name": "github", + "url": "https://github.com/dingocoin/dingocoin" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/logo.png b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/logo.png new file mode 100644 index 000000000000..488a2ec35662 Binary files /dev/null and b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/logo.png differ 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/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/info.json b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/info.json new file mode 100644 index 000000000000..c4a81bad591b --- /dev/null +++ b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/info.json @@ -0,0 +1,32 @@ +{ + "name": "TRUSTxGAMING", + "type": "BEP20", + "symbol": "TXG", + "decimals": 18, + "website": "https://trustxgaming.io/", + "description": "TRUSTxGAMING is an online gaming platform with games like ludo, colour prediction and many skilled games like rummy and poker. TrustxGaming has its own native token named TXG which can be used to participate and play games. TXG serves as utility token in its Gaming ecosystem. ", + "explorer": "https://bscscan.com/token/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0", + "status": "active", + "id": "0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/trust_xgaming" + }, + { + "name": "telegram", + "url": "https://t.me/trustxgaming" + }, + { + "name": "whitepaper", + "url": "https://trustxgaming.io/Content/casinous/assets/images/TXG_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trustxgaming/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/logo.png b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/logo.png new file mode 100644 index 000000000000..bfa2555a58ab Binary files /dev/null and b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/logo.png differ diff --git a/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/info.json b/blockchains/smartchain/assets/0x9f589e3eabe42ebC94A44727b3f3531C0c877809/info.json index 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/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/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json b/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json index b74fcfa0de18..e3847f4468c1 100644 --- a/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json +++ b/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "QANX", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa", "links": [ { diff --git a/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json new file mode 100644 index 000000000000..b3589d2c72b7 --- /dev/null +++ b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json @@ -0,0 +1,57 @@ +{ + "name": "QANX Token", + "website": "https://qanplatform.com", + "description": "QANX is the utility token of QAN Platform.", + "explorer": "https://bscscan.com/token/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA", + "type": "BEP20", + "symbol": "QANX", + "decimals": 18, + "status": "active", + "id": "0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA", + "links": [ + { + "name": "telegram", + "url": "https://t.me/QANplatform" + }, + { + "name": "telegram_news", + "url": "https://t.me/QANplatform_ANN" + }, + { + "name": "twitter", + "url": "https://twitter.com/qanplatform" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bABaQeTPN7" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/qanplatform" + }, + { + "name": "medium", + "url": "https://medium.com/qanplatform" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/QANplatform" + }, + { + "name": "whitepaper", + "url": "https://assets.qanplatform.com/whitepaper.pdf" + }, + { + "name": "source_code", + "url": "https://github.com/QANplatform" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qanplatform/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/qanplatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/logo.png b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/logo.png rename to blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png diff --git a/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/info.json b/blockchains/smartchain/assets/0xAC68931B666E086E9de380CFDb0Fb5704a35dc2D/info.json new file mode 100644 index 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/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json b/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json index d35c1534257c..3baf286b2cef 100644 --- a/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json +++ b/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "GMR", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884", "links": [ { diff --git a/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/info.json b/blockchains/smartchain/assets/0xAE788F80F2756A86aa2F410C651F2aF83639B95b/info.json new file mode 100644 index 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/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/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/info.json b/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/info.json index aa3ea3a60fe9..3ac04fd922af 100644 --- a/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/info.json +++ b/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/info.json @@ -1,11 +1,44 @@ { "name": "Moonlight Token", - "symbol": "MOONLIGHT", "type": "BEP20", + "symbol": "MOONLIGHT", "decimals": 9, - "description": "Moonlight is a comprehensive set of analytical tools for the BSC network.", - "website": "https://moonlighttoken.com/", - "explorer": "https://bscscan.com/token/0xb1ced2e320e3f4c8e3511b1dc59203303493f382", + "website": "https://bubblemaps.io", + "description": "Hold Moonlight Token to get premium access to Bubblemaps", + "explorer": "https://bscscan.com/token/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382", "status": "active", - "id": "0xB1CeD2e320E3f4C8e3511B1DC59203303493F382" + "id": "0xB1CeD2e320E3f4C8e3511B1DC59203303493F382", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bubblemaps" + }, + { + "name": "telegram", + "url": "https://t.me/bubblemaps" + }, + { + "name": "telegram_news", + "url": "https://t.me/BubblemapsNEWS" + }, + { + "name": "medium", + "url": "https://bubblemaps.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Bubblemaps" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moonlight-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/moonlight-token" + } + ], + "tags": [ + "dapp" + ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/logo.png b/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/logo.png index 3232b249ffb7..31ef60f9e3fe 100644 Binary files a/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/logo.png and b/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/logo.png differ diff --git a/blockchains/smartchain/assets/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/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/info.json b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/info.json new file mode 100644 index 000000000000..361effadcde4 --- /dev/null +++ b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/info.json @@ -0,0 +1,11 @@ +{ + "name": "RYOSHI TOKEN", + "type": "BEP20", + "symbol": "RYOSHI", + "decimals": 18, + "website": "https://www.ryoshitoken.com", + "description": "Ryoshi is a deflationary, community driven meme token that came to take over the meme game. With 10% burn from every transaction that decreases the supply and increases the demand you can kick back and watch your RYOSHI value grow.", + "explorer": "https://bscscan.com/token/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5", + "status": "active", + "id": "0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/logo.png b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/logo.png new file mode 100644 index 000000000000..20119148a5b0 Binary files /dev/null and b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/logo.png differ diff --git a/blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/info.json b/blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/info.json new file mode 100644 index 000000000000..cd3e78a7737e --- /dev/null +++ b/blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/info.json @@ -0,0 +1,52 @@ +{ + "name": "Openleverage Token V2", + "website": "https://openleverage.finance/", + "description": "OpenLeverage is a permissionless money market protocol enabling decentralized lending, borrowing, and margin trading across a diverse range of cryptocurrency pairs, fostering an accessible and efficient DeFi ecosystem.", + "explorer": "https://bscscan.com/token/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467", + "type": "BEP20", + "symbol": "OLE", + "decimals": 18, + "status": "active", + "id": "0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/OpenLeverage" + }, + { + "name": "discord", + "url": "https://discord.com/invite/openleverage" + }, + { + "name": "medium", + "url": "https://openleverage.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openleverage/" + }, + { + "name": "docs", + "url": "https://docs.openleverage.finance/main/" + }, + { + "name": "telegram", + "url": "https://t.me/openleverageofficial" + }, + { + "name": "github", + "url": "https://github.com/OpenLeverageDev/openleverage-contracts" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openleverage" + }, + { + "name": "youtube", + "url": "https://youtube.com/@openleverageprotocol9047" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/logo.png b/blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/logo.png rename to blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/logo.png diff --git a/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/info.json b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/info.json new file mode 100644 index 000000000000..97cc3c9441b6 --- /dev/null +++ b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/info.json @@ -0,0 +1,29 @@ +{ + "name": "Metatime", + "website": "https://metatime.com/en", + "description": "Metatime has emerged as a visionary ecosystem that builds the world of the future, designed from the start to be beneficial to everyone. By completely self-funding its technology development stages, Metatime aims to establish the world’s most comprehensive and transparent ecosystem.", + "explorer": "https://bscscan.com/token/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3", + "type": "BEP20", + "symbol": "MTC", + "decimals": 18, + "status": "active", + "id": "0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3", + "links": [ + { + "name": "github", + "url": "https://github.com/Metatime-Technology-Inc" + }, + { + "name": "twitter", + "url": "https://twitter.com/metatimecom" + }, + { + "name": "telegram", + "url": "https://t.me/metatime" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metatime-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/logo.png b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/logo.png new file mode 100644 index 000000000000..11b60376bb37 Binary files /dev/null and b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/logo.png 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/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/info.json b/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/info.json new file mode 100644 index 000000000000..31889ba60ae7 --- /dev/null +++ b/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/info.json @@ -0,0 +1,21 @@ +{ + "name": "AI Token", + "website": "https://www.sleeplessai.net/home", + "description": "Where AI meets affections Sleepless AI emerges as a groundbreaking Web3+AI gaming platform, ingeniously blending artificial intelligence and blockchain technology.", + "explorer": "https://bscscan.com/token/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2", + "symbol": "AI", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SleeplessAIGroup" + }, + { + "name": "twitter", + "url": "https://twitter.com/SleeplessAI_Lab" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/logo.png b/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/logo.png new file mode 100644 index 000000000000..dfb8d4242728 Binary files /dev/null and b/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/logo.png differ diff --git a/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/info.json b/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/info.json new file mode 100644 index 000000000000..cabf23942d2e --- /dev/null +++ b/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/info.json @@ -0,0 +1,43 @@ +{ + "name": "BNB Smart Chain", + "website": "https://babybonkcoin.io/", + "description": "Baby Bonk isn't just a regular coin; it's a special idea that brings together the power of DeFi with the strength of a community.", + "explorer": "https://bscscan.com/token/0xbb2826ab03b6321e170f0558804f2b6488c98775", + "symbol": "BabyBonk", + "type": "BEP20", + "decimals": 9, + "status": "active", + "id": "0xBb2826Ab03B6321E170F0558804F2B6488C98775", + "tags": [ + "gamefi" ], + "links": [ + { + "name": "github", + "url": "https://github.com/babybonktoken/" + }, + { + "name": "twitter", + "url": "https://twitter.com/BabyBonkCoin" + }, + { + "name": "telegram", + "url": "https://t.me/BabyBonkEntry" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-bonk-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/babybonk" + }, + { + "name": "facebook", + "url": "https://facebook.com/people/BabyBonk-Coin/61554415552680/" + }, + { + "name": "whitepaper", + "url": "https://bonkroyale.com/docs" + } + ] +} diff --git a/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/logo.png b/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/logo.png new file mode 100644 index 000000000000..242f44fdf051 Binary files /dev/null and b/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/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/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/info.json b/blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/info.json new file mode 100644 index 000000000000..5af152b6ef34 --- /dev/null +++ b/blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/info.json @@ -0,0 +1,42 @@ +{ + "name": "Laqira Protocol", + "website": "https://laqira.io/", + "description": "Crafting Solutions for Your Blockchain Needs", + "explorer": "https://bscscan.com/token/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF", + "type": "BEP20", + "symbol": "LQR", + "decimals": 18, + "status": "active", + "id": "0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF", + "tags": ["defi", "nft", "gamefi"], + "links": [ + { + "name": "github", + "url": "https://github.com/laqiraprotocol/" + }, + { + "name": "twitter", + "url": "https://twitter.com/laqiraprotocol/" + }, + { + "name": "telegram", + "url": "https://t.me/LaqiraProtocol" + }, + { + "name": "telegram_news", + "url": "https://t.me/laqira_official" + }, + { + "name": "blog", + "url": "https://blog.laqira.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/laqira-protocol/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@LaqiraProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/logo.png b/blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/logo.png rename to blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/logo.png diff --git a/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/info.json b/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/info.json new file mode 100644 index 000000000000..d55b707f80ec --- /dev/null +++ b/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/info.json @@ -0,0 +1,32 @@ +{ + "name": "GROK", + "type": "BEP20", + "symbol": "GROK", + "decimals": 18, + "website": "https://www.grokbsc.xyz/", + "description": "Grok is a token issued on the Binance Smart Chain (BSC). We have a strong user base and a dedicated technical team, working hard to establish Grok as a popular brand.", + "explorer": "https://bscscan.com/token/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e", + "status": "active", + "id": "0xC53ca0d56C420E8f913316e84d2c492eDe99c61e", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/TOKEN204999" + }, + { + "name": "telegram", + "url": "https://t.me/GROKBSC8" + }, + { + "name": "whitepaper", + "url": "https://doc.groktoken.vip" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grok-4" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/logo.png b/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/logo.png new file mode 100644 index 000000000000..29a4e6a018bd Binary files /dev/null and b/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/logo.png differ diff --git a/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/info.json b/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/info.json new file mode 100644 index 000000000000..527541755af1 --- /dev/null +++ b/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/info.json @@ -0,0 +1,44 @@ +{ + "name": "FRGX Finance", + "type": "BEP20", + "symbol": "FRGX", + "decimals": 18, + "website": "https://frgx.finance", + "description": "FRGX is a token on BNB Chain with a fair launch in a decentralized environment and an audience of 1.6 M users prepared over 4 years", + "explorer": "https://bscscan.com/token/0xc703da39ae3b9db67c207c7bad8100e1afdc0f9c", + "status": "active", + "id": "0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/FRGXfinance" + }, + { + "name": "telegram", + "url": "https://t.me/frgxfinance" + }, + { + "name": "whitepaper", + "url": "https://frgx.finance/litepaper" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0xc703da39ae3b9db67c207c7bad8100e1afdc0f9c#code" + }, + { + "name": "docs", + "url": "https://docs.frgx.finance/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elanausd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/frgx-finance" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/logo.png b/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/logo.png new file mode 100644 index 000000000000..c556d05ed3b3 Binary files /dev/null and b/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/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/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/info.json b/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/info.json index a8b9cae8e532..bccf9a335643 100644 --- a/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/info.json +++ b/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/info.json @@ -1,45 +1,41 @@ { - "name": "XcelDefi", - "website": "https://www.xceldefi.com", - "description": "XcelDefi is native token of XcelLab ecosystem and is the governance token for XcelSwap, a decentralised exchange built to power the future of finance by the XcelLab ecosystem. Users can vote by holding and staking XcelDefi and propose changes in the mechanics of XcelSwap.", - "explorer": "https://bscscan.com/token/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2", - "type": "BEP20", - "symbol": "XLD", - "decimals": 18, - "status": "active", - "id": "0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2", - "links": [ - { - "name": "github", - "url": "https://github.com/XcelDefi" - }, - { - "name": "whitepaper", - "url": "https://www.xceldefi.com/whitepaper" - }, - { - "name": "telegram", - "url": "https://t.me/XcelToken" - }, - { - "name": "twitter", - "url": "https://twitter.com/XcelDefi" - }, - { - "name": "medium", - "url": "https://xceldefi.medium.com" - }, - { - "name": "discord", - "url": "https://discord.com/channels/843873130808213524" - }, - { - "name": "facebook", - "url": "https://facebook.com/XcelDefiOfficial" - }, - { - "name": "youtube", - "url": "https://youtube.com/channel/UCJwGB8JGkh15KBV8a5NwsJA" - } - ] -} \ No newline at end of file + "name": "XcelPay", + "website": "https://www.xcelpay.io", + "description": "XLD is the native token of XcelPay ecosystem. It's a key part of an ecosystem designed to integrate blockchain technology into everyday transactions and experiences. From secure asset management in XcelPay Wallet to real-world applications in XcelTrip, XcelPay (XLD) is paving the way for a more inclusive, accessible, and practical use of cryptocurrencies in daily life.", + "explorer": "https://bscscan.com/token/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2", + "type": "BEP20", + "symbol": "XLD", + "decimals": 18, + "status": "active", + "id": "0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2", + "links": [ + { + "name": "github", + "url": "https://github.com/xceltripinc/" + }, + { + "name": "whitepaper", + "url": "https://xcelpay.io/whitepaper" + }, + { + "name": "telegram", + "url": "https://t.me/XcelToken" + }, + { + "name": "twitter", + "url": "https://twitter.com/XcelPayWallet" + }, + { + "name": "medium", + "url": "https://medium.com/xcellab-magazine" + }, + { + "name": "facebook", + "url": "https://facebook.com/xcelpay" + }, + { + "name": "youtube", + "url": "https://youtube.com/@xcelpay" + } + ] +} diff --git a/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/logo.png b/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/logo.png index 1046fe1f6a08..4ba143a0de08 100644 Binary files a/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/logo.png and b/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/logo.png differ diff --git a/blockchains/smartchain/assets/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/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json b/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json index 31c71c20f699..9d131ddada11 100644 --- a/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json +++ b/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json @@ -2,7 +2,7 @@ "name": "Bobcoin", "type": "BEP20", "symbol": "BOBC", - "decimals": 16, + "decimals": 18, "website": "https://bob.eco", "description": "Bobcoin is a social asset-backed crypto—a cryptographically secured representation of the rights of a Bobcoin holder to receive a benefit from their tokens. As every Bobcoin is linked to an electric vehicle managed by Bob Eco, the tokens are always backed by the value of the asset they represent. ", "explorer": "https://bscscan.com/token/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811", diff --git a/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json new file mode 100644 index 000000000000..ba7c7cc73b37 --- /dev/null +++ b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json @@ -0,0 +1,33 @@ +{ + "name": "TRON", + "type": "BEP20", + "symbol": "TRX", + "decimals": 6, + "website": "https://tron.network/", + "description": "TRON is a dedicated to build the infrastructure for a truly decentralized Internet.", + "explorer": "https://bscscan.com/token/0xce7de646e7208a4ef112cb6ed5038fa6cc6b12e3", + "status": "active", + "id": "0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Tronfoundation" + }, + { + "name": "telegram", + "url": "https://t.me/tronnetworkEN" + }, + { + "name": "whitepaper", + "url": "https://tron.network/static/doc/white_paper_v_2_0.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tron/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tron/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/logo.png b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/logo.png new file mode 100644 index 000000000000..74ec9785f66d Binary files /dev/null and b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/logo.png differ diff --git a/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/info.json b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/info.json new file mode 100644 index 000000000000..af2cf5cae35c --- /dev/null +++ b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/info.json @@ -0,0 +1,32 @@ +{ + "name": "PLANET", + "type": "BEP20", + "symbol": "PLANET", + "decimals": 18, + "description": "Join The Planet is a pioneering #ReFi project that partners with the world’s biggest celebrities to address environmental and sustainable causes. Backed by the $PLANET token, this blockchain for good platform is disrupting the $300 billion green tech market by introducing celebrity-backed Real World Assets (RWAs) to Web3, unlocking incredible real-life experiences for $PLANET holders and creating a sustainable revenue model.", + "website": "https://planetrefi.com/", + "explorer": "https://bscscan.com/token/0xca6d678e74f553f0e59cccc03ae644a3c2c5ee7d", + "id": "0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d", + "status": "active", + "tags": [ + "nft" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/PlanetReFi" + }, + { + "name": "telegram", + "url": "https://t.me/PlanetReFi" + }, + { + "name": "medium", + "url": "https://medium.com/@PlanetReFi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/planettoken/" + } + ] +} diff --git a/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/logo.png b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/logo.png new file mode 100644 index 000000000000..a3fb80da0a20 Binary files /dev/null and b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/logo.png differ 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/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/info.json b/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/info.json new file mode 100644 index 000000000000..7c3b2daffebd --- /dev/null +++ b/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/info.json @@ -0,0 +1,36 @@ +{ + "name": "Grok Inu", + "type": "BEP20", + "symbol": "GROKINU", + "decimals": 9, + "website": "https://grokinucoin.vip/", + "description": "GROK INU is the combination of two trends, Elon Musk's Grok AI and Shiba Inu. This combination will be pervasive and is expected to be a future trend in the cryptocurrency sector.", + "explorer": "https://bscscan.com/token/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC", + "status": "active", + "id": "0xD08b9e557D1f64c8dd50A168453eA302A83E47FC", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/RealGrok_Inu" + }, + { + "name": "telegram", + "url": "https://t.me/grokinu_portal" + }, + { + "name": "whitepaper", + "url": "https://grokinucoin.gitbook.io/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grok-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grok-inu" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/logo.png b/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/logo.png new file mode 100644 index 000000000000..e6309995c04e Binary files /dev/null and b/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/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/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/0xE6Ce27025F13f5213bBc560dC275e292965a392F/info.json b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/info.json new file mode 100644 index 000000000000..a0b8ffc78da5 --- /dev/null +++ b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/info.json @@ -0,0 +1,25 @@ +{ + "name": "Loom Token", + "website": "https://loomx.io", + "description": "Loom Network is a Platform as a Service intended to allow Ethereum-based Solidity applications to be run on side chains.", + "explorer": "https://bscscan.com/token/0xe6ce27025f13f5213bbc560dc275e292965a392f", + "type": "BEP20", + "symbol": "LOOM", + "decimals": 18, + "status": "active", + "id": "0xE6Ce27025F13f5213bBc560dC275e292965a392F", + "links": [ + { + "name": "telegram", + "url": "https://t.me/loomnetwork" + }, + { + "name": "twitter", + "url": "https://twitter.com/loomnetwork" + }, + { + "name": "github", + "url": "https://github.com/loomnetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/logo.png b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/logo.png new file mode 100644 index 000000000000..0d6c30316b0e Binary files /dev/null and b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/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/0xEcf99aB23C11ddc6520252105308C251001AEfBB/info.json b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/info.json new file mode 100644 index 000000000000..c334da94e807 --- /dev/null +++ b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/info.json @@ -0,0 +1,48 @@ +{ + "name": "UNS Token", + "type": "BEP20", + "symbol": "UNS", + "decimals": 18, + "website": "https://uns.technology", + "description": "UNS Token, a Multi-Sector Utility BEP20 Token that enables in connecting real-life utilities with the digital world.", + "explorer": "https://bscscan.com/token/0xecf99ab23c11ddc6520252105308c251001aefbb", + "status": "active", + "id": "0xEcf99aB23C11ddc6520252105308C251001AEfBB", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/_unsofficial_" + }, + { + "name": "telegram", + "url": "https://t.me/uns_token" + }, + { + "name": "discord", + "url": "https://discord.com/invite/wjFHg94mAW" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uns-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uns-token" + }, + { + "name": "telegram_news", + "url": "https://t.me/unstoken" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/UNS_Token" + }, + { + "name": "github", + "url": "https://github.com/Uns-Technology" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/logo.png b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/logo.png new file mode 100644 index 000000000000..aa527486df97 Binary files /dev/null and b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/logo.png differ diff --git a/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/info.json b/blockchains/smartchain/assets/0xEd8c8Aa8299C10f067496BB66f8cC7Fb338A3405/info.json new file mode 100644 index 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/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json b/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json index 0c1595e48839..4c41ea3dc867 100644 --- a/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json +++ b/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "BBANK", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xF4b5470523cCD314C6B9dA041076e7D79E0Df267", "links": [ { diff --git a/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/logo.png b/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/logo.png deleted file mode 100644 index d7ce5e9cec87..000000000000 Binary files a/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49/info.json b/blockchains/smartchain/assets/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49/info.json new file mode 100644 index 000000000000..f74f33f2dea9 --- /dev/null +++ b/blockchains/smartchain/assets/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49/info.json @@ -0,0 +1,36 @@ +{ + "name": "VLaunch", + "type": "BEP20", + "symbol": "VPAD", + "decimals": 18, + "website": "https://www.vlaunch.com", + "description": "The Launchpad where Leading Influencers and Projects meet.", + "explorer": "https://bscscan.com/token/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49", + "status": "active", + "id": "0xF574Ba6bde97cC09784e616ebAeD432b4e896B49", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/VLaunchCOM" + }, + { + "name": "telegram", + "url": "https://t.me/VLaunchCOMToken" + }, + { + "name": "telegram_news", + "url": "https://t.me/codenamevalerts" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vlaunch" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vlaunch" + } + ], + "tags": [ + "staking" + ] +} diff --git a/blockchains/smartchain/assets/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49/logo.png b/blockchains/smartchain/assets/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49/logo.png new file mode 100644 index 000000000000..77ba6a3a7253 Binary files /dev/null and b/blockchains/smartchain/assets/0xF574Ba6bde97cC09784e616ebAeD432b4e896B49/logo.png differ diff --git a/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/info.json b/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/info.json new file mode 100644 index 000000000000..59bbfdf636de --- /dev/null +++ b/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/info.json @@ -0,0 +1,33 @@ +{ + "name": "Binance-Peg MANTRA", + "website": "http://mantradao.com", + "description": "MANTRA DAO leverages the wisdom of the crowd to create a community-governed, transparent, and decentralized ecosystem for Web 3.0", + "explorer": "https://bscscan.com/token/0xf78d2e7936f5fe18308a3b2951a93b6c4a41f5e2", + "type": "BEP20", + "symbol": "OM", + "decimals": 18, + "status": "active", + "id": "0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2", + "links": [ + { + "name": "github", + "url": "https://github.com/Mantradao" + }, + { + "name": "twitter", + "url": "https://twitter.com/MANTRADAO" + }, + { + "name": "telegram", + "url": "https://t.me/MANTRADAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mantra-dao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mantra-dao/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/logo.png b/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/logo.png new file mode 100644 index 000000000000..e879c18c6349 Binary files /dev/null and b/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/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/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/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/info.json b/blockchains/smartchain/assets/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/info.json new file mode 100644 index 000000000000..2158c9c3bee9 --- /dev/null +++ b/blockchains/smartchain/assets/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/info.json @@ -0,0 +1,21 @@ +{ + "name": "CZ THE GOAT", + "type": "BEP20", + "symbol": "CZGOAT", + "decimals": 9, + "website": "https://czthegoat.io/", + "description": "CZ the G.O.A.T is meme token in Honor of CZ. The next opportunity was yesterday, the next best one is today, keep building said by the goat.", + "explorer": "https://bscscan.com/token/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d", + "status": "active", + "id": "0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/czthegoat" + }, + { + "name": "telegram", + "url": "https://t.me/cz_thegoat" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/logo.png b/blockchains/smartchain/assets/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/logo.png new file mode 100644 index 000000000000..4cc976d6f47a Binary files /dev/null and b/blockchains/smartchain/assets/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/logo.png differ diff --git a/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json new file mode 100644 index 000000000000..ed36e2d3c9f5 --- /dev/null +++ b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Binance Beacon ETH", + "type": "BEP20", + "symbol": "wBETH", + "decimals": 18, + "website": "https://www.binance.com/en/wbeth", + "description": "wBETH is a reward-bearing ETH liquid staking token offered by Binance. Each wBETH represents 1 BETH (1:1 to staked ETH) plus all of its accrued ETH2.0 staking rewards starting from when wBETH's conversion rate was initialized at 1:1 on Apr 27th 2023 00:00 (UTC+0).", + "explorer": "https://bscscan.com/token/0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "status": "active", + "id": "0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-beacon-eth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-beacon-eth" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png new file mode 100644 index 000000000000..832596160ae8 Binary files /dev/null and b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png differ diff --git a/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/info.json b/blockchains/smartchain/assets/0xa4080f1778e69467E905B8d6F72f6e441f9e9484/info.json new file mode 100644 index 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/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F/info.json b/blockchains/smartchain/assets/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F/info.json new file mode 100644 index 000000000000..5ea1f5de80ed --- /dev/null +++ b/blockchains/smartchain/assets/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F/info.json @@ -0,0 +1,25 @@ +{ + "name": "SerenityShield", + "website": "https://www.serenityshield.io/", + "description": "Serenity Shield is a self-custodial, privacy-centric digital data storage platform built on the blockchain, featuring a built-in inheritance protocol. It serves various use cases, including storage, recovery, and estate planning for wallet seed phrases and diverse digital data types.", + "explorer": "https://bscscan.com/token/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F", + "type": "BEP20", + "symbol": "SERSH", + "decimals": 18, + "status": "active", + "id": "0xa6D3D8698056cbb01785343B9cCeB205C7065f5F", + "links": [ + { + "name": "telegram", + "url": "https://t.me/serenityshield" + }, + { + "name": "twitter", + "url": "https://twitter.com/SerenityShield_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/serenity-shield/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F/logo.png b/blockchains/smartchain/assets/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F/logo.png new file mode 100644 index 000000000000..4d36b415c66f Binary files /dev/null and b/blockchains/smartchain/assets/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F/logo.png differ diff --git a/blockchains/smartchain/assets/0xa7ffb399d44eb830f01751052C75d14f0b47E779/info.json b/blockchains/smartchain/assets/0xa7ffb399d44eb830f01751052C75d14f0b47E779/info.json new file mode 100644 index 000000000000..42a3cabebc84 --- /dev/null +++ b/blockchains/smartchain/assets/0xa7ffb399d44eb830f01751052C75d14f0b47E779/info.json @@ -0,0 +1,33 @@ +{ + "name": "GROK X", + "type": "BEP20", + "symbol": "GROK X", + "decimals": 18, + "website": "http://www.grokxbsc.vip/", + "description": "Grok x is not just a meme coin; it's a playful revolution in the cryptocurrency world. Grok X brings joy and positivity to the blockchain.", + "explorer": "https://bscscan.com/token/0xa7ffb399d44eb830f01751052C75d14f0b47E779", + "status": "active", + "id": "0xa7ffb399d44eb830f01751052C75d14f0b47E779", + "links": [ + { + "name": "telegram_news", + "url": "https://t.me/grokxbnb" + }, + { + "name": "twitter", + "url": "https://twitter.com/GrokXBsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/grok-x/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/grok-x" + }, + { + "name": "whitepaper", + "url": "https://grok-x.gitbook.io/grok-x/" + } + ] +} diff --git a/blockchains/smartchain/assets/0xa7ffb399d44eb830f01751052C75d14f0b47E779/logo.png b/blockchains/smartchain/assets/0xa7ffb399d44eb830f01751052C75d14f0b47E779/logo.png new file mode 100644 index 000000000000..84b43f33dbe2 Binary files /dev/null and b/blockchains/smartchain/assets/0xa7ffb399d44eb830f01751052C75d14f0b47E779/logo.png differ diff --git a/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/info.json b/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/info.json index 00683b6a9736..46d1c13579ff 100644 --- a/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/info.json +++ b/blockchains/smartchain/assets/0xa865197A84E780957422237B5D152772654341F3/info.json @@ -1,12 +1,12 @@ { - "name": "Openleverage Token", + "name": "Openleverage Token (Old)", "website": "https://openleverage.finance/", - "description": "A permissionless lending and margin trading protocol, enabling traders to go long or short with any pairs on DEXs efficiently and securely.", + "description": "OpenLeverage is a permissionless money market protocol enabling decentralized lending, borrowing, and margin trading across a diverse range of cryptocurrency pairs, fostering an accessible and efficient DeFi ecosystem.", "explorer": "https://bscscan.com/token/0xa865197A84E780957422237B5D152772654341F3", "type": "BEP20", - "symbol": "OLE", + "symbol": "Old OLE", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xa865197A84E780957422237B5D152772654341F3", "tags": [ "defi" @@ -27,6 +27,26 @@ { "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/openleverage/" + }, + { + "name": "docs", + "url": "https://docs.openleverage.finance/main/" + }, + { + "name": "telegram", + "url": "https://t.me/openleverageofficial" + }, + { + "name": "github", + "url": "https://github.com/OpenLeverageDev/openleverage-contracts" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openleverage" + }, + { + "name": "youtube", + "url": "https://youtube.com/@openleverageprotocol9047" } ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/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/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/info.json b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/info.json new file mode 100644 index 000000000000..1bb16d833e80 --- /dev/null +++ b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/info.json @@ -0,0 +1,24 @@ +{ + "name": "VizslaSwap", + "type": "BEP20", + "symbol": "VIZSLASWAP", + "decimals": 18, + "website": "https://www.vizslaswap.com/", + "description": "VizslaSwap is a decentralized exchange running on BNB Smart Chain with lots of features that let you trade and earn tokens.", + "explorer": "https://bscscan.com/token/0xadaae082237cb1772c9e079db95c117e6dd0c5af", + "status": "active", + "id": "0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF", + "links": [ + { + "name": "telegram", + "url": "https://t.me/hungarianvizslainucoin" + }, + { + "name": "twitter", + "url": "https://twitter.com/HunVizslainu" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/logo.png b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/logo.png new file mode 100644 index 000000000000..c2d1e4c3d022 Binary files /dev/null and b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/logo.png differ diff --git a/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/info.json b/blockchains/smartchain/assets/0xaE90CA218f9c3b1AA84af33A7907E4890Ec6A167/info.json new file mode 100644 index 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/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/info.json b/blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/info.json new file mode 100644 index 000000000000..0b0ce8902556 --- /dev/null +++ b/blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/info.json @@ -0,0 +1,36 @@ +{ + "name": "PirateCash", + "type": "BEP20", + "symbol": "PIRATE", + "decimals": 8, + "website": "https://p.cash/", + "description": "PirateCash as Software-defined networking (SDN). This technology will provide good quality of service and it will be High Availability (HA), flexible and DDoS resistant network.", + "explorer": "https://bscscan.com/token/0xafcc12e4040615e7afe9fb4330eb3d9120acac05", + "status": "active", + "id": "0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05", + "links": [ + { + "name": "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/0xafcc12e4040615e7afe9fb4330eb3d9120acac05#code" + }, + { + "name": "github", + "url": "https://github.com/piratecash" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/logo.png b/blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/logo.png new file mode 100644 index 000000000000..239b9fff819e Binary files /dev/null and b/blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/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/0xb3Ed0A426155B79B898849803E3B36552f7ED507/info.json b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/info.json new file mode 100644 index 000000000000..4b18ca3ad7c2 --- /dev/null +++ b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/info.json @@ -0,0 +1,33 @@ +{ + "name": "Pendle", + "website": "https://www.pendle.finance/", + "description": "Pendle is a protocol for people to trade and hedge yield. Users can tokenize yield and trade them on Pendle's AMM", + "explorer": "https://bscscan.com/token/0xb3Ed0A426155B79B898849803E3B36552f7ED507", + "type": "BEP20", + "symbol": "PENDLE", + "decimals": 18, + "status": "active", + "id": "0xb3Ed0A426155B79B898849803E3B36552f7ED507", + "links": [ + { + "name": "github", + "url": "https://github.com/pendle-finance" + }, + { + "name": "twitter", + "url": "https://twitter.com/pendle_fi" + }, + { + "name": "docs", + "url": "https://docs.pendle.finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pendle" + }, + { + "name": "discord", + "url": "https://discord.com/invite/9x9VUngNZD" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/logo.png b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/logo.png new file mode 100644 index 000000000000..4f5c2f60ea7d Binary files /dev/null and b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/logo.png differ diff --git a/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/info.json b/blockchains/smartchain/assets/0xb46584e0efdE3092e04010A13f2eAe62aDb3b9F0/info.json new file mode 100644 index 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/0xb4E14166F6dE109f800C52A84a434C383137C8dC/info.json b/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/info.json new file mode 100644 index 000000000000..5423bceb926d --- /dev/null +++ b/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/info.json @@ -0,0 +1,40 @@ +{ + "name": "Payvertise", + "type": "BEP20", + "symbol": "PVT", + "decimals": 18, + "website": "https://Payvertise.com", + "description": "Payvertise is a blockchain-based digital advertising platform that integrates cryptocurrency and NFTs, offering a unique revenue-sharing model for token holders and innovative advertising solutions.", + "explorer": "https://bscscan.com/token/0xb4E14166F6dE109f800C52A84a434C383137C8dC", + "status": "active", + "id": "0xb4E14166F6dE109f800C52A84a434C383137C8dC", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/payvertise_" + }, + { + "name": "github", + "url": "https://github.com/payvertise" + }, + { + "name": "telegram", + "url": "https://t.me/payvertisechat" + }, + { + "name": "telegram_news", + "url": "https://t.me/payvertiseann" + }, + { + "name": "blog", + "url": "https://medium.payvertise.com" + }, + { + "name": "docs", + "url": "https://docs.payvertise.com" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/logo.png b/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/logo.png new file mode 100644 index 000000000000..8bef532c45d0 Binary files /dev/null and b/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/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/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/info.json b/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/info.json new file mode 100644 index 000000000000..95ac86a60038 --- /dev/null +++ b/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/info.json @@ -0,0 +1,25 @@ +{ + "name": "Jencoin", + "website": "http://www.jencoin.net/", + "description": "Jen coin is token based in BNB Smart Chain. its total supply is 21 Million. it has multiple utilities like online shopping Store, Von, Lottery and Networking.", + "explorer": "https://bscscan.com/token/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F", + "type": "BEP20", + "symbol": "JEN", + "decimals": 18, + "status": "active", + "id": "0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F", + "links": [ + { + "name": "telegram", + "url": "https://t.me/jencoin0" + }, + { + "name": "twitter", + "url": "https://twitter.com/Thejencoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jen-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/logo.png b/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/logo.png new file mode 100644 index 000000000000..72ed08137d52 Binary files /dev/null and b/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/logo.png differ 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/0xbAeA9aBA1454DF334943951d51116aE342eAB255/info.json b/blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/info.json new file mode 100644 index 000000000000..1936280d2b0e --- /dev/null +++ b/blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/info.json @@ -0,0 +1,29 @@ +{ + "name": "Poolz Finance", + "website": "https://www.poolz.finance", + "description": "Poolz is a decentralized swapping protocol for cross-chain token pools and auctions, enabling projects to raise capital.", + "explorer": "https://bscscan.com/token/0xbAeA9aBA1454DF334943951d51116aE342eAB255", + "type": "BEP20", + "symbol": "POOLZ", + "decimals": 18, + "status": "active", + "id": "0xbAeA9aBA1454DF334943951d51116aE342eAB255", + "links": [ + { + "name": "github", + "url": "https://github.com/The-Poolz" + }, + { + "name": "twitter", + "url": "https://twitter.com/Poolz" + }, + { + "name": "telegram", + "url": "https://t.me/PoolzOfficialCommunity" + }, + { + "name": "discord", + "url": "https://discord.com/invite/xwtWw4sGPp" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/logo.png b/blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/logo.png similarity index 100% rename from blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/logo.png rename to blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/logo.png diff --git a/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/info.json b/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/info.json new file mode 100644 index 000000000000..9eec3efdaa96 --- /dev/null +++ b/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/info.json @@ -0,0 +1,38 @@ +{ + "name": "CryptoPeso", + "website": "https://cryptopesos.pro/index.html", + "description": "It is an innovative initiative that seeks to revolutionize the financial landscape in Latin America through the implementation of a robust and sustainable blockchain. Our main goal is to promote access to decentralized financial services and foster economic inclusion in the region.", + "explorer": "https://bscscan.com/token/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858", + "research": "https://cryptopesos.pro/index.html", + "symbol": "CryptoPesos", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858", + "tags": [ + "staking-native", + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Crypto_Pesos" + }, + { + "name": "whitepaper", + "url": "https://cryptopesos.pro/index.html" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoPesoColombia" + }, + { + "name": "github", + "url": "https://github.com/CryptoPesos" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/dexscan/bsc/0x6c7336d6dd9947481bc6f81f670a104cb963ea39/" + } + ] +} diff --git a/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/logo.png b/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/logo.png new file mode 100644 index 000000000000..69ca6c7128b3 Binary files /dev/null and b/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/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/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/info.json b/blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/info.json index 0fcb3ac614c7..73a382332219 100644 --- a/blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/info.json +++ b/blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "LQR", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xbc81ea817b579eC0334BcA8E65E436b7cB540147", "tags": [], "links": [ 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/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/info.json b/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/info.json index 9c4632d1462b..20a282643687 100644 --- a/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/info.json +++ b/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "BLK", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xc0E6AD13BD58413Ed308729b688d601243E1CF77", "links": [ { @@ -41,4 +41,4 @@ "tags": [ "defi" ] -} +} diff --git a/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/logo.png b/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/logo.png deleted file mode 100644 index e608f8fb7f1a..000000000000 Binary files a/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/logo.png and /dev/null 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/0xc3601108947A46B219C09f24c668a52756C8d977/info.json b/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/info.json index 3396804d8e7f..fb5c64abf88c 100644 --- a/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/info.json +++ b/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/info.json @@ -6,7 +6,7 @@ "website": "https://www.vlaunch.com", "description": "First Fully Influencer-Backed Multi-Chain Launchpad", "explorer": "https://bscscan.com/token/0xc3601108947A46B219C09f24c668a52756C8d977", - "status": "active", + "status": "abandoned", "id": "0xc3601108947A46B219C09f24c668a52756C8d977", "links": [ { diff --git a/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/logo.png b/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/logo.png deleted file mode 100644 index 62b8c4918469..000000000000 Binary files a/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/logo.png and /dev/null 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/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json b/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json new file mode 100644 index 000000000000..7585968a4664 --- /dev/null +++ b/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json @@ -0,0 +1,28 @@ +{ + "name": "First Digital USD", + "type": "BEP20", + "symbol": "FDUSD", + "decimals": 18, + "website": "https://firstdigitallabs.com/", + "description": "FDUSD (First Digital USD) is a 1:1 USD-backed Stablecoin. FDUSD revolutionizes global finance with a cutting-edge digital stablecoin, providing businesses and builders with security, speed, and innovation worldwide.", + "explorer": "https://bscscan.com/token/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409", + "status": "active", + "id": "0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/FDLabsHQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/first-digital-usd" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/first-digital-usd" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/logo.png b/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/logo.png new file mode 100644 index 000000000000..5d54b8a4dba0 Binary files /dev/null and b/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/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/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/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/info.json b/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/info.json new file mode 100644 index 000000000000..82ec11ebe94c --- /dev/null +++ b/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/info.json @@ -0,0 +1,28 @@ +{ + "name": "AWT", + "type": "BEP20", + "symbol": "AWT", + "decimals": 18, + "website": "https://awttoken.io", + "description": "AWT is a decentralized blockchain protocol that allow users to lend borrow selected cryptocurrency. It establishes money markets by polling assets together and algorithmically setting interest rates based on supply and demand of assets.", + "explorer": "https://bscscan.com/token/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e", + "status": "active", + "id": "0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/TokenAwt/" + }, + { + "name": "telegram", + "url": "https://t.me/+ileHCXlWvTY2MTc1" + }, + { + "name": "github", + "url": "https://github.com/awttokenapp" + } + ], + "tags": [ + "dapp" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/logo.png b/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/logo.png new file mode 100644 index 000000000000..19ee44e53e6b Binary files /dev/null and b/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/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/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/info.json b/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/info.json new file mode 100644 index 000000000000..93a22f13858d --- /dev/null +++ b/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/info.json @@ -0,0 +1,25 @@ +{ + "name": "Maverick Token", + "website": "https://www.mav.xyz/", + "description": "Maverick Protocol offers a new infrastructure for decentralized finance, built to facilitate the most liquid markets for traders, liquidity providers, DAO treasuries, and developers, powered by a revolutionary Dynamic Distribution Automated Market Maker (AMM).", + "explorer": "https://bscscan.com/token/0xd691d9a68c887bdf34da8c36f63487333acfd103", + "type": "BEP20", + "symbol": "MAV", + "decimals": 18, + "status": "active", + "id": "0xd691d9a68C887BDF34DA8c36f63487333ACfD103", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/mavprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/maverickprotocolofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maverick-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/logo.png b/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/logo.png new file mode 100644 index 000000000000..f21e40bef227 Binary files /dev/null and b/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/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/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/info.json b/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/info.json index bcd232e68a19..43507c9713bb 100644 --- a/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/info.json +++ b/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/info.json @@ -3,39 +3,23 @@ "type": "BEP20", "symbol": "FOUR", "decimals": 18, - "website": "https://4thtech.io/", - "description": "FOUR is 4thTech ecosystem utility token used as the primary means to enable services such as data file and instant messages wallet to wallet exchange.", + "website": "https://the4thpillar.io/", + "description": "FOUR token is a technical and incentive component dedicated to; (1) RTA (i.e. right-to-access), and; (2) MTO (i.e. multiple-transfer option) models in the ecosystem of Web3 communication.", "explorer": "https://bscscan.com/token/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147", "status": "active", "id": "0xd882739Fca9CBAE00F3821c4c65189E2D7e26147", "links": [ { "name": "twitter", - "url": "https://twitter.com/4thtechProject" + "url": "https://twitter.com/4pfour" }, { "name": "coingecko", "url": "https://coingecko.com/en/coins/the-4th-pillar" - }, - { - "name": "medium", - "url": "https://medium.com/the4thpillar" - }, - { - "name": "telegram", - "url": "https://t.me/the4thpillarofficial" - }, - { - "name": "youtube", - "url": "https://youtube.com/c/4thpillartechnologies" - }, - { - "name": "whitepaper", - "url": "https://github.com/4thtech/static-assets/raw/main/pdf/whitepaper.pdf" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/4thpillar-technologies/" } + ], + "tags": [ + "governance", + "staking" ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/logo.png b/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/logo.png index 044f8c292da1..b0d3e287349f 100644 Binary files a/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/logo.png and b/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/logo.png differ diff --git a/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json new file mode 100644 index 000000000000..4db11f969740 --- /dev/null +++ b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json @@ -0,0 +1,36 @@ +{ + "name": "SquidGrow", + "type": "BEP20", + "symbol": "SquidGrow", + "decimals": 9, + "website": "https://squidgrow.wtf", + "description": "SquidGrow is the next big meme utility token in the cryptocurrency space! Created by the biggest Shiba Inu whale, SquidGrow has the building blocks to get to the highest level. With our owner being one of the biggest investors in the world, the possibilities and connections for SquidGrow are endless!", + "explorer": "https://bscscan.com/token/0xd8fa690304d2b2824d918c0c7376e2823704557a", + "status": "active", + "id": "0xd8Fa690304D2B2824D918C0c7376e2823704557A", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/squid-grow/" + }, + { + "name": "telegram", + "url": "https://t.me/SquidGrowPortal" + }, + { + "name": "twitter", + "url": "https://twitter.com/Squid_Grow" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/squidgrow" + }, + { + "name": "github", + "url": "https://github.com/shibtoshi" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png new file mode 100644 index 000000000000..599cd735e829 Binary files /dev/null and b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png differ diff --git a/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/info.json b/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/info.json new file mode 100644 index 000000000000..d6dc9eb34edf --- /dev/null +++ b/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/info.json @@ -0,0 +1,30 @@ +{ + "name": "Travala.com", + "website": "https://travala.com", + "description": "Travala.com claims to be the leading blockchain-based travel booking platform.", + "explorer": "https://bscscan.com/token/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52", + "research": "https://research.binance.com/en/projects/travala", + "type": "BEP20", + "symbol": "AVA", + "decimals": 18, + "status": "active", + "id": "0xd9483EA7214FCfd89B4Fb8f513B544920E315A52", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/travalacom" + }, + { + "name": "github", + "url": "https://github.com/AVA-Foundation" + }, + { + "name": "telegram", + "url": "https://t.me/travala" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ava/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/logo.png b/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/logo.png new file mode 100644 index 000000000000..1b8b37e0f5b2 Binary files /dev/null and b/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/logo.png differ diff --git a/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/info.json b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/info.json new file mode 100644 index 000000000000..0f8ec1318189 --- /dev/null +++ b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/info.json @@ -0,0 +1,40 @@ +{ + "name": "HowInu", + "type": "BEP20", + "symbol": "How", + "decimals": 18, + "website": "https://howinu.com/", + "description": "HowInu is a Meme Cryptocurrency running on the Binance Smart Chain Network created by Pasindu Shenal based on an image of a fictional dog.The HowInu Crypto project aims to play a role in advancing the crypto industry beyond the functionality of a normal meme cryptocurrency.Ultimately, the project aims to remain stable in the Crypto market for a long time and become a popular Meme Cryptocurrency in the world along with the growth of the Crypto market.", + "explorer": "https://bscscan.com/token/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8", + "status": "active", + "id": "0xdAa64420e769fae36CCaA78e26024FE9f583e9D8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/howinu" + }, + { + "name": "telegram", + "url": "https://t.me/howinu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/howinu/" + }, + { + "name": "facebook", + "url": "https://facebook.com/howinu" + }, + { + "name": "youtube", + "url": "https://youtube.com/howinu" + }, + { + "name": "whitepaper", + "url": "https://howinu.com/download/107/?tmstv=1685559667" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/logo.png b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/logo.png new file mode 100644 index 000000000000..113c19589edc Binary files /dev/null and b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/logo.png differ diff --git a/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/info.json b/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/info.json new file mode 100644 index 000000000000..8e751ce59027 --- /dev/null +++ b/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/info.json @@ -0,0 +1,33 @@ +{ + "name": "EtherPoS", + "website": "https://etherpos.io", + "description": "Ether Proof-of-Stake", + "explorer": "https://bscscan.com/token/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d", + "id": "0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d", + "symbol": "ETPOS", + "type": "BEP20", + "decimals": 6, + "status": "active", + "tags": [ + "staking", + "dapp" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/etherposio/etpos-token" + }, + { + "name": "twitter", + "url": "https://twitter.com/etherpos22" + }, + { + "name": "telegram", + "url": "https://t.me/EtherPosValidator" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.etherpos.info" + } + ] +} diff --git a/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/logo.png b/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/logo.png new file mode 100644 index 000000000000..f6079535aa18 Binary files /dev/null and b/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/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/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/info.json b/blockchains/smartchain/assets/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/info.json new file mode 100644 index 000000000000..d91b34e96508 --- /dev/null +++ b/blockchains/smartchain/assets/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/info.json @@ -0,0 +1,32 @@ +{ + "name": "MCNCOIN", + "type": "BEP20", + "symbol": "MCN", + "decimals": 8, + "website": "https://mcncoin.io", + "description": "MCN - Multi-Community Network! MCN is an innovative GameFi platform that revolutionizes the way players interact with gaming entertainment and earn.", + "explorer": "https://bscscan.com/token/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79", + "status": "active", + "id": "0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MCNOfficialM" + }, + { + "name": "telegram", + "url": "https://t.me/mcn_network" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mcncoin" + }, + { + "name": "whitepaper", + "url": "https://mcncoin.io/white-paper" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/logo.png b/blockchains/smartchain/assets/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/logo.png new file mode 100644 index 000000000000..f3607f6cf9a5 Binary files /dev/null and b/blockchains/smartchain/assets/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/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/0xe52bB35344cceedd014Be2896d01e604ad992c85/info.json b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/info.json new file mode 100644 index 000000000000..15d44bbe0913 --- /dev/null +++ b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/info.json @@ -0,0 +1,60 @@ +{ + "name": "Crypto Snack 2.0", + "type": "BEP20", + "symbol": "SNACK", + "decimals": 18, + "website": "https://cryptosnacks.org/", + "description": "Crypto Snack leverages blockchain technology to bring exclusive business and investment opportunities. Introducing SNACK 2.0, the most sophisticated utility token, Crypto Snack now provides revolutionary benefits in the igaming, real estate and ticketing industries.", + "explorer": "https://bscscan.com/token/0xe52bB35344cceedd014Be2896d01e604ad992c85", + "status": "active", + "id": "0xe52bB35344cceedd014Be2896d01e604ad992c85", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CryptoSnack_" + }, + { + "name": "github", + "url": "https://github.com/CryptoSnackProject" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoSnackCommunity" + }, + { + "name": "discord", + "url": "https://discord.com/channels/915605284402130964/915605286662844458" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/CryptoSnackProject" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1TSS1MQPIojeOJUQ4YcaZ4t2vAvLi-8ZM/view" + }, + { + "name": "medium", + "url": "https://cryptosnack.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/CryptoSnack" + }, + { + "name": "facebook", + "url": "https://facebook.com/CryptoSnackOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crypto-snack/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cryptosnack" + } + ], + "tags": [ + "synthetics" + ] +} diff --git a/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/logo.png b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/logo.png new file mode 100644 index 000000000000..6a9a2201dfa2 Binary files /dev/null and b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/logo.png differ diff --git a/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json b/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json new file mode 100644 index 000000000000..fc2838a2dc2c --- /dev/null +++ b/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json @@ -0,0 +1,28 @@ +{ + "id": "0xe552Fb52a4F19e44ef5A967632DBc320B0820639", + "name": "MetisDAO", + "website": "https://metis.io", + "description": "Metis Token", + "explorer": "https://bscscan.com/token/0xe552fb52a4f19e44ef5a967632dbc320b0820639", + "type": "BEP20", + "symbol": "Metis", + "decimals": 18, + "status": "abandoned", + "tags": [ + "defi" + ], + "links": [ + { + "name": "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/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/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/logo.png b/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/logo.png index 01778c9a953d..a83d58a242a0 100644 Binary files a/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/logo.png and b/blockchains/smartchain/assets/0xeDF3ce4Dd6725650a8e9398e5C6398D061Fa7955/logo.png 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/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/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/info.json b/blockchains/smartchain/assets/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/info.json new file mode 100644 index 000000000000..b4f1457d05b8 --- /dev/null +++ b/blockchains/smartchain/assets/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/info.json @@ -0,0 +1,40 @@ +{ + "name": "TFS Token", + "type": "BEP20", + "symbol": "TFS", + "decimals": 18, + "website": "https://tfstoken.com/", + "description": "TFS is an ERC-20/BEP-20 internal token of the Fairspin platform. It is a full-fledged tool that will suit both players and crypto investors willing to increase their profits.", + "explorer": "https://bscscan.com/token/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E", + "status": "active", + "id": "0xf4BEa2c219Eb95C6745983B68185C7340c319D9E", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/tfsinfo" + }, + { + "name": "telegram", + "url": "https://t.me/tfstoken_channel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tfs-token/" + }, + { + "name": "facebook", + "url": "https://facebook.com/TFStoken" + }, + { + "name": "discord", + "url": "https://discord.com/invite/fairspin" + }, + { + "name": "whitepaper", + "url": "https://tfstoken.com/storage/2021/12/White-Paper-Fairspin.pdf" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/logo.png b/blockchains/smartchain/assets/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/logo.png new file mode 100644 index 000000000000..3ba6533d7e0d Binary files /dev/null and b/blockchains/smartchain/assets/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/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/info/info.json b/blockchains/smartchain/info/info.json index d5acb8d94e11..c745cc84b86d 100644 --- a/blockchains/smartchain/info/info.json +++ b/blockchains/smartchain/info/info.json @@ -9,7 +9,8 @@ "decimals": 18, "status": "active", "tags": [ - "staking-native" + "staking-native", + "dapp" ], "links": [ { diff --git a/blockchains/smartchain/tokenlist.json b/blockchains/smartchain/tokenlist.json index b25f4b25c20b..b3e13d77d3a6 100644 --- a/blockchains/smartchain/tokenlist.json +++ b/blockchains/smartchain/tokenlist.json @@ -186,6 +186,16 @@ }, { "base": "c20000714_t0x6679eB24F59dFe111864AEc72B443d1Da666B360" + }, + { + "base": "c20000714_t0x734D66f635523D7ddb7d2373C128333DA313041b" + + }, + { + "base": "c20000714_t0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34" + }, + { + "base": "c20000714_t0xc748673057861a797275CD8A068AbB95A902e8de" } ] }, @@ -204,7 +214,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", @@ -225,7 +235,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", @@ -235,7 +245,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", @@ -256,7 +266,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", @@ -266,7 +276,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", @@ -287,7 +297,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", @@ -337,7 +347,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", @@ -357,7 +367,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", @@ -410,7 +420,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", @@ -420,7 +430,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", @@ -471,7 +481,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", @@ -482,7 +492,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", @@ -542,7 +552,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", @@ -562,7 +572,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", @@ -572,7 +582,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", @@ -655,7 +665,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", @@ -676,7 +686,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", @@ -686,7 +696,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", @@ -779,7 +789,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", @@ -820,7 +830,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", @@ -847,16 +857,6 @@ "pairs": [] }, { - "asset": "c20000714_t0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97", - "type": "BEP20", - "address": "0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97", - "name": "BinaryX", - "symbol": "BNX", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x8C851d1a123Ff703BD1f9dabe631b69902Df5f97/logo.png", - "pairs": [] - }, - { "asset": "c20000714_t0x6679eB24F59dFe111864AEc72B443d1Da666B360", "type": "BEP20", "address": "0x6679eB24F59dFe111864AEc72B443d1Da666B360", @@ -865,6 +865,56 @@ "decimals": 8, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x6679eB24F59dFe111864AEc72B443d1Da666B360/logo.png", "pairs": [] + }, + { + "asset": "c20000714_t0x734D66f635523D7ddb7d2373C128333DA313041b", + "type": "BEP20", + "address": "0x734D66f635523D7ddb7d2373C128333DA313041b", + "name": "ZEDXION", + "symbol": "USDZ", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34", + "type": "BEP20", + "address": "0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34", + "name": "ZEDXION", + "symbol": "ZEDXION", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xC3137c696796D69F783CD0Be4aB4bB96814234Aa", + "type": "BEP20", + "address": "0xC3137c696796D69F783CD0Be4aB4bB96814234Aa", + "name": "Pepa Inu", + "symbol": "PEPA", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xC3137c696796D69F783CD0Be4aB4bB96814234Aa/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0xc748673057861a797275CD8A068AbB95A902e8de", + "type": "BEP20", + "address": "0xc748673057861a797275CD8A068AbB95A902e8de", + "name": "Baby Doge Coin", + "symbol": "BabyDoge", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xc748673057861a797275CD8A068AbB95A902e8de/logo.png", + "pairs": [] + }, + { + "asset": "c20000714_t0x95c91eEf65F50570cFC3f269961a00108Cf7BF59", + "type": "BEP20", + "address": "0x95c91eEf65F50570cFC3f269961a00108Cf7BF59", + "name": "The DONS", + "symbol": "DONS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x95c91eEf65F50570cFC3f269961a00108Cf7BF59/logo.png", + "pairs": [] } ], "version": { diff --git a/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/info.json b/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/info.json new file mode 100644 index 000000000000..8f2fe46d60c4 --- /dev/null +++ b/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Jupiter Perps LP", + "symbol": "JLP", + "type": "SPL", + "decimals": 6, + "description": "The live Jupiter Perps LP price today is $2.06 USD with a 24-hour trading volume of $31,355,509 USD.", + "website": "https://jup.ag", + "explorer": "https://solscan.io/token/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4", + "status": "active", + "id": "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/JupiterExchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jupiter-perps-lp/" + } +] +} \ No newline at end of file diff --git a/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/logo.png b/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/logo.png new file mode 100644 index 000000000000..266099b84950 Binary files /dev/null and b/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/logo.png differ diff --git a/blockchains/solana/assets/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6/info.json b/blockchains/solana/assets/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6/info.json new file mode 100644 index 000000000000..d8791cde3925 --- /dev/null +++ b/blockchains/solana/assets/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6/info.json @@ -0,0 +1,25 @@ +{ + "name": "Elumia Crowns", + "symbol": "ELU", + "type": "SPL", + "decimals": 9, + "description": "Legends of Elumia is leading the way for MMORPG players to gain full ownership of their ingame assets via revolutionary new mechanics.", + "website": "https://www.elumia.io", + "explorer": "https://solscan.io/token/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6", + "status": "active", + "id": "4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/PlayElumia" + }, + { + "name": "telegram", + "url": "https://t.me/Legends_of_Elumia_Official/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/legends-of-elumia/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6/logo.png b/blockchains/solana/assets/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6/logo.png new file mode 100644 index 000000000000..92c92a10b118 Binary files /dev/null and b/blockchains/solana/assets/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6/logo.png differ diff --git a/blockchains/solana/assets/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy/info.json b/blockchains/solana/assets/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy/info.json new file mode 100644 index 000000000000..863a6b4fc8c8 --- /dev/null +++ b/blockchains/solana/assets/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy/info.json @@ -0,0 +1,21 @@ +{ + "name": "HONEY", + "website": "https://hivemapper.com/explorer", + "description": "Launched in November 2022, Hivemapper (HONEY) is a decentralized global mapping network that rewards its contributors for collecting high-volume 4K street-level imagery with dashcams through a Drive-to-Earn model.", + "explorer": "https://solscan.io/token/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy", + "symbol": "HONEY", + "type": "SPL", + "decimals": 9, + "status": "active", + "id": "4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hivemapper/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Hivemapper" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy/logo.png b/blockchains/solana/assets/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy/logo.png new file mode 100644 index 000000000000..ac3d13752469 Binary files /dev/null and b/blockchains/solana/assets/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy/logo.png differ diff --git a/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/info.json b/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/info.json new file mode 100644 index 000000000000..49741c3e86be --- /dev/null +++ b/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/info.json @@ -0,0 +1,25 @@ +{ + "name": "Access Protocol", + "website": "https://www.accessprotocol.co", + "description": "Access Protocol offers a new way for digital media publications and content creators to monetize their work. Instead of traditional subscription payments, users stake the ACS token to receive access to premium digital content.", + "explorer": "https://solscan.io/token/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y", + "symbol": "ACS", + "type": "SPL", + "decimals": 6, + "status": "active", + "id":"5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y", + "links": [ + { + "name": "github", + "url": "https://github.com/Access-Labs-Inc/accessprotocol.co" + }, + { + "name": "twitter", + "url": "https://twitter.com/AccessProtocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/access-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/logo.png b/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/logo.png new file mode 100644 index 000000000000..9d66724aecb7 Binary files /dev/null and b/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/logo.png differ diff --git a/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/info.json b/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/info.json new file mode 100644 index 000000000000..aa2302ce2dd9 --- /dev/null +++ b/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/info.json @@ -0,0 +1,21 @@ +{ + "name": "KNOB", + "type": "SPL", + "symbol": "KNOB", + "decimals": 9, + "website": "https://www.knobcoin.xyz", + "description": "The first ever reverse meta coin on Solana Chain", + "explorer": "https://solscan.io/token/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy", + "status": "active", + "id": "5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/uni_knob" + }, + { + "name": "telegram", + "url": "https://t.me/knobcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/logo.png b/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/logo.png new file mode 100644 index 000000000000..a448f9dc289c Binary files /dev/null and b/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/logo.png differ diff --git a/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/info.json b/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/info.json new file mode 100644 index 000000000000..6d60c5d4b02e --- /dev/null +++ b/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/info.json @@ -0,0 +1,21 @@ +{ + "name": "ANALOS", + "website": "https://www.analos.meme", + "description": "GRAB YOUR $ANALOS AND MOONWALK TO THE MOON – IT'S THE ONLY WAY TO GO FORWARD", + "explorer": "https://solscan.io/token/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5", + "symbol": "ANALOS", + "type": "SPL", + "decimals": 8, + "status": "active", + "id": "7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5", + "links": [ + { + "name": "telegram", + "url": "https://t.me/analos_coin" + }, + { + "name": "twitter", + "url": "https://twitter.com/analos_coin__" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/logo.png b/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/logo.png new file mode 100644 index 000000000000..d175aab19c3d Binary files /dev/null and b/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/logo.png differ 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/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/info.json b/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/info.json new file mode 100644 index 000000000000..6daaa2bac494 --- /dev/null +++ b/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/info.json @@ -0,0 +1,21 @@ +{ + "name": "GameStop", + "type": "SPL", + "symbol": "GME", + "decimals": 9, + "description": "GME coin on sol is a meme paying tribute to the 2021 short squeeze of GameStop", + "website": "https://wallstsucks.lol", + "explorer": "https://solscan.io/token/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB", + "status": "active", + "id": "8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB", + "links": [ +{ + "name": "twitter", + "url": "https://twitter.com/gmecoinsol" +}, +{ + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gme/" +} +] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/logo.png b/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/logo.png new file mode 100644 index 000000000000..4c457735157a Binary files /dev/null and b/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/logo.png differ diff --git a/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/info.json b/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/info.json new file mode 100644 index 000000000000..8cae703d0458 --- /dev/null +++ b/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/info.json @@ -0,0 +1,25 @@ +{ + "name": "SerenityShield", + "website": "https://www.serenityshield.io/", + "description": "Serenity Shield is a self-custodial, privacy-centric digital data storage platform built on the blockchain, featuring a built-in inheritance protocol. It serves various use cases, including storage, recovery, and estate planning for wallet seed phrases and diverse digital data types.", + "explorer": "https://solscan.io/token/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR", + "type": "SPL", + "symbol": "SERSH", + "decimals": 18, + "status": "active", + "id": "9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR", + "links": [ + { + "name": "telegram", + "url": "https://t.me/serenityshield" + }, + { + "name": "twitter", + "url": "https://twitter.com/SerenityShield_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/serenity-shield/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/logo.png b/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/logo.png new file mode 100644 index 000000000000..4d36b415c66f Binary files /dev/null and b/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/logo.png differ diff --git a/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/info.json b/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/info.json new file mode 100644 index 000000000000..d831ad876c67 --- /dev/null +++ b/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/info.json @@ -0,0 +1,33 @@ +{ + "name": "Coin98", + "website": "https://coin98.com/", + "description": "Coin98 enables value transfer as easily as using the Internet by the innovation of Multi-chain Engine, Fully Automatic Liquidity and Space Gate, all in one Super Liquidity Aggregator.", + "explorer": "https://solscan.io/token/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9", + "type": "SPL", + "symbol": "C98", + "decimals": 6, + "status": "active", + "id": "C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/coin98_finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/coin98/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/coin98/" + }, + { + "name": "github", + "url": "https://github.com/coin98" + }, + { + "name": "telegram", + "url": "https://t.me/StackerVentures" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/logo.png b/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/logo.png new file mode 100644 index 000000000000..adc079763a7c Binary files /dev/null and b/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/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/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/info.json b/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/info.json index 57c75dbab5de..9a126c55ed98 100644 --- a/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/info.json +++ b/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/info.json @@ -3,39 +3,23 @@ "symbol": "FOUR", "type": "SPL", "decimals": 9, - "description": "FOUR is 4thTech ecosystem utility token used as the primary means to enable services such as data file and instant messages wallet to wallet exchange.", - "website": "https://4thtech.io/", + "description": "FOUR token is a technical and incentive component dedicated to; (1) RTA (i.e. right-to-access), and; (2) MTO (i.e. multiple-transfer option) models in the ecosystem of Web3 communication.", + "website": "https://the4thpillar.io/", "explorer": "https://solscan.io/token/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE", "status": "active", "id": "DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE", "links": [ { "name": "twitter", - "url": "https://twitter.com/4thtechProject" + "url": "https://twitter.com/4pfour" }, { "name": "coingecko", "url": "https://coingecko.com/en/coins/the-4th-pillar" - }, - { - "name": "medium", - "url": "https://medium.com/the4thpillar" - }, - { - "name": "telegram", - "url": "https://t.me/the4thpillarofficial" - }, - { - "name": "youtube", - "url": "https://youtube.com/c/4thpillartechnologies" - }, - { - "name": "whitepaper", - "url": "https://github.com/4thtech/static-assets/raw/main/pdf/whitepaper.pdf" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/4thpillar-technologies/" } + ], + "tags": [ + "governance", + "staking" ] } \ No newline at end of file diff --git a/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/logo.png b/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/logo.png index 4948f43ebc58..b0d3e287349f 100644 Binary files a/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/logo.png and b/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/logo.png differ diff --git a/blockchains/solana/assets/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/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/info.json b/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/info.json new file mode 100644 index 000000000000..fbfda128ac56 --- /dev/null +++ b/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/info.json @@ -0,0 +1,21 @@ +{ + "name": "dogwifhat", + "type": "SPL", + "symbol": "WIF", + "decimals": 6, + "description": "The live dogwifhat price today is $0.239284 USD with a 24-hour trading volume of $32,653,726 USD.", + "website": "https://dogwifcoin.org", + "explorer": "https://solscan.io/token/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm", + "status": "active", + "id": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dogwifcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogwifhat/" + } +] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/logo.png b/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/logo.png new file mode 100644 index 000000000000..b7068fa56e17 Binary files /dev/null and b/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/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/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/info.json b/blockchains/solana/assets/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/info.json new file mode 100644 index 000000000000..11782478302e --- /dev/null +++ b/blockchains/solana/assets/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/info.json @@ -0,0 +1,21 @@ +{ + "name": "CROWN", + "type": "SPL", + "symbol": "CROWN", + "decimals": 9, + "website": "https://thirdtimegames.com/", + "description": "CROWN brings a novel application of blockchain technology to the world of digital horse racing and gaming.", + "explorer": "https://solscan.io/token/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG", + "status": "active", + "id": "GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/photofinishgame" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crown-by-third-time-games/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/logo.png b/blockchains/solana/assets/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/logo.png new file mode 100644 index 000000000000..c2251af7377f Binary files /dev/null and b/blockchains/solana/assets/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/logo.png differ diff --git a/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/info.json b/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/info.json new file mode 100644 index 000000000000..21857e8ab187 --- /dev/null +++ b/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Whales Market", + "type": "SPL", + "symbol": "WHALES", + "decimals": 6, + "description": "Whales Market offers a decentralized OTC trading platform for users to directly exchange assets across multiple blockchains, with complete trustlessness and security guaranteed.", + "website": "https://whales.market", + "explorer": "https://solscan.io/token/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1", + "status": "active", + "id": "GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1", + "links": [ +{ + "name": "twitter", + "url": "https://twitter.com/WhalesMarket" +}, +{ + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/whales-market/" +} +] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/logo.png b/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/logo.png new file mode 100644 index 000000000000..9786f80a3873 Binary files /dev/null and b/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/logo.png differ diff --git a/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/info.json b/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/info.json new file mode 100644 index 000000000000..8dca2c6ee7b2 --- /dev/null +++ b/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/info.json @@ -0,0 +1,25 @@ +{ + "name": "Pyth Network", + "symbol": "PYTH", + "type": "SPL", + "decimals": 6, + "description": "The Pyth Network is the largest and fastest-growing first-party oracle network. Pyth delivers real-time market data to financial dApps across 40+ blockchains and provides 380+ low-latency price feeds across cryptocurrencies, equities, ETFs, FX pairs, and commodities.", + "website": "https://pyth.network", + "explorer": "https://solscan.io/token/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", + "status": "active", + "id": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Pyth_Network" + }, + { + "name": "twitter", + "url": "https://twitter.com/PythNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pyth-network/" + } +] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/logo.png b/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/logo.png new file mode 100644 index 000000000000..4f9dcebfeb81 Binary files /dev/null and b/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/logo.png differ diff --git a/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png b/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png index 8e97855518bf..276a83baae8d 100644 Binary files a/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png and b/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png differ diff --git a/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/info.json b/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/info.json new file mode 100644 index 000000000000..a27665b08f51 --- /dev/null +++ b/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Myro", + "website": "https://myrothedog.com", + "description": "Myro the dog: Named after Solana Founder Raj Gokal’s dog Myro.", + "explorer": "https://solscan.io/token/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4", + "symbol": "MYRO", + "type": "SPL", + "decimals": 9, + "status": "active", + "id": "HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4", + "links": [ + { + "name": "telegram", + "url": "https://t.me/myroSOL" + }, + { + "name": "twitter", + "url": "https://twitter.com/MyroSOL" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/logo.png b/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/logo.png new file mode 100644 index 000000000000..fabeb382dad6 Binary files /dev/null and b/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/logo.png differ diff --git a/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/info.json b/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/info.json new file mode 100644 index 000000000000..40a8e4940977 --- /dev/null +++ b/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/info.json @@ -0,0 +1,21 @@ +{ + "name": "Jito Staked SOL", + "symbol": "JitoSOL", + "type": "SPL", + "decimals": 9, + "description": "The live Jito Staked SOL price today is $114.17 USD with a 24-hour trading volume of $69,422,180 USD. We update our JITOSOL to USD price in real-time. Jito Staked SOL is up 2.20% in the last 24 hours.", + "website": "https://www.jito.network", + "explorer": "https://solscan.io/token/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", + "status": "active", + "id": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/jito_sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jito-staked-sol/" + } +] +} \ No newline at end of file diff --git a/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/logo.png b/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/logo.png new file mode 100644 index 000000000000..cfc8dc6ad174 Binary files /dev/null and b/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/logo.png differ diff --git a/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/info.json b/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/info.json new file mode 100644 index 000000000000..fc5e9267be8a --- /dev/null +++ b/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/info.json @@ -0,0 +1,21 @@ +{ + "name": "Jupiter", + "symbol": "JUP", + "type": "SPL", + "decimals": 6, + "description": "As one of the industry's most advanced swap aggregation engines, Jupiter excels in delivering essential liquidity infrastructure for the Solana ecosystem.", + "website": "https://jup.ag/", + "explorer": "https://solscan.io/token/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", + "status": "active", + "id": "JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/JupiterExchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jupiter-ag/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/logo.png b/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/logo.png new file mode 100644 index 000000000000..793364c84544 Binary files /dev/null and b/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/logo.png differ diff --git a/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/info.json b/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/info.json new file mode 100644 index 000000000000..81a224b2f4b2 --- /dev/null +++ b/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shadow Token", + "type": "SPL", + "symbol": "SHDW", + "decimals": 9, + "website": "https://www.shdwdrive.com", + "description": "$SHDW is the utility token that powers the Shadow dePIN ecosystem providing decentralized storage, compute, and network orchestration to its users.", + "explorer": "https://solscan.io/token/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y", + "status": "active", + "id": "SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/genesysgo" + }, + { + "name": "telegram", + "url": "https://t.me/FrankGenGo" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/logo.png b/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/logo.png new file mode 100644 index 000000000000..afc437a4388d Binary files /dev/null and b/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/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/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk/info.json b/blockchains/solana/assets/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk/info.json new file mode 100644 index 000000000000..13d679a730cd --- /dev/null +++ b/blockchains/solana/assets/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wen", + "website": "https://www.wenwencoin.com/", + "description": "A community coin to give back and immortalize WEN culture.", + "explorer": "https://solscan.io/token/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk", + "type": "SPL", + "symbol": "WEN", + "decimals": 5, + "status": "active", + "id": "WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/wenwencoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wen/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk/logo.png b/blockchains/solana/assets/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk/logo.png new file mode 100644 index 000000000000..d38d3505d841 Binary files /dev/null and b/blockchains/solana/assets/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk/logo.png differ diff --git a/blockchains/solana/assets/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1/info.json b/blockchains/solana/assets/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1/info.json new file mode 100644 index 000000000000..b6f4e3bfe3af --- /dev/null +++ b/blockchains/solana/assets/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1/info.json @@ -0,0 +1,21 @@ +{ + "name": "BlazeStake Staked SOL", + "symbol": "bSOL", + "type": "SPL", + "decimals": 9, + "description": "BlazeStake is a fully non-custodial Solana stake pool protocol that is supported by the Solana Foundation.", + "website": "https://stake.solblaze.org", + "explorer": "https://solscan.io/token/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1", + "status": "active", + "id": "bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/solblaze_org" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blazestake-staked-sol/" + } +] +} \ No newline at end of file diff --git a/blockchains/solana/assets/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1/logo.png b/blockchains/solana/assets/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1/logo.png new file mode 100644 index 000000000000..3660c0b579cd Binary files /dev/null and b/blockchains/solana/assets/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1/logo.png differ diff --git a/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/info.json b/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/info.json new file mode 100644 index 000000000000..286d0fd1ee90 --- /dev/null +++ b/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/info.json @@ -0,0 +1,21 @@ +{ + "name": "Helium Network", + "website": "https://www.helium.com", + "description": "Helium (HNT) is a decentralized blockchain-powered network for Internet of Things (IoT) devices.", + "explorer": "https://solscan.io/token/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux", + "type": "SPL", + "symbol": "HNT", + "decimals": 8, + "status": "active", + "id": "hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/helium" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/helium/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/logo.png b/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/logo.png new file mode 100644 index 000000000000..993296affee7 Binary files /dev/null and b/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/logo.png differ diff --git a/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/info.json b/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/info.json new file mode 100644 index 000000000000..a051e4c05e30 --- /dev/null +++ b/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/info.json @@ -0,0 +1,29 @@ +{ + "name": "JITO", + "website": "https://www.jito.network/", + "description": "Jito Network is a major contributor to the Solana ecosystem through its JitoSOL liquid staking pool, and its collection of MEV products.", + "explorer": "https://solscan.io/token/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL", + "type": "SPL", + "symbol": "JTO", + "decimals": 9, + "status": "active", + "id": "jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/jito_sol" + }, + { + "name": "discord", + "url": "https://discord.com/invite/jito" + }, + { + "name": "telegram", + "url": "https://t.me/+csIgnEQMCHhiYjVh" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jito/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/logo.png b/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/logo.png new file mode 100644 index 000000000000..3edcdfe7c00e Binary files /dev/null and b/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/logo.png differ diff --git a/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/info.json b/blockchains/solana/assets/kinXdEcpDQeHPEuQnqmUgtYykqKGVFq6CeVX5iAHJq6/info.json index 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/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/info.json b/blockchains/solana/assets/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/info.json new file mode 100644 index 000000000000..b8560f8e8a3c --- /dev/null +++ b/blockchains/solana/assets/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/info.json @@ -0,0 +1,21 @@ +{ + "name": "Nosana", + "type": "SPL", + "symbol": "NOS", + "decimals": 6, + "website": "https://nosana.io", + "description": "Nosana will democratize GPU cloud computing. They privode companies with more accessible and affordable compute power for running AI.", + "explorer": "https://solscan.io/token/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7", + "status": "active", + "id": "nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/nosana_ci" + }, + { + "name": "telegram", + "url": "https://t.me/NosanaCompute" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/logo.png b/blockchains/solana/assets/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/logo.png new file mode 100644 index 000000000000..9489d85bd5f4 Binary files /dev/null and b/blockchains/solana/assets/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/logo.png differ diff --git a/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/info.json b/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/info.json new file mode 100644 index 000000000000..76538a3bb775 --- /dev/null +++ b/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/info.json @@ -0,0 +1,25 @@ +{ + "name": "Render Token", + "symbol": "RNDR", + "type": "SPL", + "decimals": 8, + "description": "Distributed GPU rendering on the blockchain.", + "website": "https://rendertoken.com/", + "explorer": "https://solscan.io/token/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof", + "status": "active", + "id": "rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof", + "links": [ + { + "name": "telegram", + "url": "https://t.me/rendernetwork" + }, + { + "name": "twitter", + "url": "https://twitter.com/rendernetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/render/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/logo.png b/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/logo.png new file mode 100644 index 000000000000..0abda3243d4b Binary files /dev/null and b/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/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/tokenlist.json b/blockchains/solana/tokenlist.json new file mode 100644 index 000000000000..9128f5a3dc2e --- /dev/null +++ b/blockchains/solana/tokenlist.json @@ -0,0 +1,572 @@ +{ + "name": "Trust Wallet: Solana List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2024-02-01T14:23:26.183301", + "tokens": [ + { + "asset": "c501_t2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk", + "type": "SPL", + "address": "2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk", + "name": "Wrapped ETH", + "symbol": "ETH", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk/logo.png", + "pairs": [] + }, + { + "asset": "c501_t2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD", + "type": "SPL", + "address": "2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD", + "name": "Hedget (Portal)", + "symbol": "HGET", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD/logo.png", + "pairs": [] + }, + { + "asset": "c501_t2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX", + "type": "SPL", + "address": "2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX", + "name": "Chainlink (Portal)", + "symbol": "LINK", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX/logo.png", + "pairs": [] + }, + { + "asset": "c501_t3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh", + "type": "SPL", + "address": "3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh", + "name": "Wrapped BTC (Portal)", + "symbol": "WBTC", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh/logo.png", + "pairs": [] + }, + { + "asset": "c501_t3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg", + "type": "SPL", + "address": "3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg", + "name": "Aave Token (Portal)", + "symbol": "AAVE", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao", + "type": "SPL", + "address": "4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao", + "name": "AnchorUST (Portal)", + "symbol": "aUST", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP", + "type": "SPL", + "address": "4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP", + "name": "DAI (Portal from Polygon)", + "symbol": "DAIpo", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4", + "type": "SPL", + "address": "4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4", + "name": "Smooth Love Potion (Portal)", + "symbol": "SLP", + "decimals": 0, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU", + "type": "SPL", + "address": "4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU", + "name": "dYdX (Portal)", + "symbol": "DYDX", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R", + "type": "SPL", + "address": "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R", + "name": "Raydium", + "symbol": "RAY", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R/logo.png", + "pairs": [] + }, + { + "asset": "c501_t5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1", + "type": "SPL", + "address": "5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1", + "name": "Tether USD (PoS) (Portal from Polygon)", + "symbol": "USDTpo", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj", + "type": "SPL", + "address": "4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj", + "name": "LIQ Protocol", + "symbol": "LIQ", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj/logo.png", + "pairs": [] + }, + { + "asset": "c501_t5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2", + "type": "SPL", + "address": "5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2", + "name": "Binance USD (Portal from BSC)", + "symbol": "BUSDbs", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/logo.png", + "pairs": [] + }, + { + "asset": "c501_t5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG", + "type": "SPL", + "address": "5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG", + "name": "Chiliz (Portal)", + "symbol": "CHZ", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi", + "type": "SPL", + "address": "7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi", + "name": "Decentraland (Portal)", + "symbol": "MANA", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8", + "type": "SPL", + "address": "7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8", + "name": "Huobi BTC (Portal)", + "symbol": "HBTC", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs", + "type": "SPL", + "address": "7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs", + "name": "Curve DAO Token (Portal)", + "symbol": "CRV", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx", + "type": "SPL", + "address": "7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx", + "name": "Green Metaverse Token", + "symbol": "GMT", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs", + "type": "SPL", + "address": "7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs", + "name": "Ether (Portal)", + "symbol": "ETH", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw", + "type": "SPL", + "address": "7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw", + "name": "HUSD Stablecoin (Portal)", + "symbol": "HUSD", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw/logo.png", + "pairs": [] + }, + { + "asset": "c501_t8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56", + "type": "SPL", + "address": "8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56", + "name": "Synthetix Network Token (Portal)", + "symbol": "SNX", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56/logo.png", + "pairs": [] + }, + { + "asset": "c501_t8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36", + "type": "SPL", + "address": "8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36", + "name": "Uniswap (Portal)", + "symbol": "UNI", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36/logo.png", + "pairs": [] + }, + { + "asset": "c501_t8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN", + "type": "SPL", + "address": "8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN", + "name": "Fantom (Portal from Ethereum)", + "symbol": "FTMet", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN/logo.png", + "pairs": [] + }, + { + "asset": "c501_t8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv", + "type": "SPL", + "address": "8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv", + "name": "Tether USD (Portal from BSC)", + "symbol": "USDTbs", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv/logo.png", + "pairs": [] + }, + { + "asset": "c501_t9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa", + "type": "SPL", + "address": "9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa", + "name": "Binance Coin (Portal)", + "symbol": "BNB", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa/logo.png", + "pairs": [] + }, + { + "asset": "c501_t9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E", + "type": "SPL", + "address": "9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E", + "name": "Wrapped BTC", + "symbol": "BTC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E/logo.png", + "pairs": [] + }, + { + "asset": "c501_t49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt", + "type": "SPL", + "address": "49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt", + "name": "The Sandbox (Portal)", + "symbol": "SAND", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt/logo.png", + "pairs": [] + }, + { + "asset": "c501_tA9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM", + "type": "SPL", + "address": "A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM", + "name": "USD Coin (Portal from Ethereum)", + "symbol": "USDCet", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM/logo.png", + "pairs": [] + }, + { + "asset": "c501_tAFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB", + "type": "SPL", + "address": "AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB", + "name": "Green Satoshi Token", + "symbol": "GST", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/logo.png", + "pairs": [] + }, + { + "asset": "c501_tAGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3", + "type": "SPL", + "address": "AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3", + "name": "Wrapped FTX", + "symbol": "FTT", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3/logo.png", + "pairs": [] + }, + { + "asset": "c501_tAjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC", + "type": "SPL", + "address": "AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC", + "name": "1INCH Token (Portal)", + "symbol": "1INCH", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC/logo.png", + "pairs": [] + }, + { + "asset": "c501_tAwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom", + "type": "SPL", + "address": "AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom", + "name": "Compound (Portal)", + "symbol": "COMP", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom/logo.png", + "pairs": [] + }, + { + "asset": "c501_tBCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U", + "type": "SPL", + "address": "BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U", + "name": "Spell Token (Portal)", + "symbol": "SPELL", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U/logo.png", + "pairs": [] + }, + { + "asset": "c501_tBQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4", + "type": "SPL", + "address": "BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4", + "name": "Wrapped USDT", + "symbol": "USDT", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4/logo.png", + "pairs": [] + }, + { + "asset": "c501_tBXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX", + "type": "SPL", + "address": "BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX", + "name": "yearn.finance (Portal)", + "symbol": "YFI", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/BXZX2JRJFjvKazM1ibeDFxgAngKExb74MRXzXKvgikxX/logo.png", + "pairs": [] + }, + { + "asset": "c501_tC7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h", + "type": "SPL", + "address": "C7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h", + "name": "MATIC (Portal from Ethereum)", + "symbol": "MATICet", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/C7NNPWuZCNjZBfW5p6JvGsR8pUdsRpEdP1ZAhnoDwj7h/logo.png", + "pairs": [] + }, + { + "asset": "c501_tChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj", + "type": "SPL", + "address": "ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj", + "name": "SushiToken (Portal)", + "symbol": "SUSHI", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/ChVzxWRmrTeSgwd3Ui3UumcN8KX7VK3WaD4KGeSKpypj/logo.png", + "pairs": [] + }, + { + "asset": "c501_tCiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z", + "type": "SPL", + "address": "CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z", + "name": "Shiba Inu (Portal)", + "symbol": "SHIB", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/CiKu4eHsVrc1eueVQeHn7qhXTcVu95gSQmBpX4utjL9z/logo.png", + "pairs": [] + }, + { + "asset": "c501_tDvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA", + "type": "SPL", + "address": "DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA", + "name": "Crypto.com Coin (Portal)", + "symbol": "CRO", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/DvjMYMVeXgKxaixGKpzQThLoG98nc7HSU7eanzsdCboA/logo.png", + "pairs": [] + }, + { + "asset": "c501_tEPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "type": "SPL", + "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png", + "pairs": [] + }, + { + "asset": "c501_tEs9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "type": "SPL", + "address": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", + "name": "USDT", + "symbol": "USDT", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB/logo.png", + "pairs": [] + }, + { + "asset": "c501_tF6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W", + "type": "SPL", + "address": "F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W", + "name": "LUNA (Portal)", + "symbol": "LUNA", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/F6v4wfAdJB8D8p77bMXZgYt8TDKsYxLYxH5AFhUkYx9W/logo.png", + "pairs": [] + }, + { + "asset": "c501_tEPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "type": "SPL", + "address": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png", + "pairs": [] + }, + { + "asset": "c501_tGz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG", + "type": "SPL", + "address": "Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG", + "name": "MATIC (Portal from Polygon)", + "symbol": "MATICpo", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/Gz7VkD4MacbEB6yC5XD3HcumEiYx2EtDYYrfikGsvopG/logo.png", + "pairs": [] + }, + { + "asset": "c501_tHUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx", + "type": "SPL", + "address": "HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx", + "name": "Rocket Pool (Portal)", + "symbol": "RPL", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/HUCyuyqESEUV4YWTKFvvB4JiQLqoovscTBpRXfGzW4Wx/logo.png", + "pairs": [] + }, + { + "asset": "c501_t27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4", + "type": "SPL", + "address": "27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4", + "name": "Jupiter Perps LP", + "symbol": "JLP", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/logo.png", + "pairs": [] + }, + { + "asset": "c501_t5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y", + "type": "SPL", + "address": "5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y", + "name": "Access Protocol", + "symbol": "ACS", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/logo.png", + "pairs": [] + }, + { + "asset": "c501_t8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB", + "type": "SPL", + "address": "8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB", + "name": "GameStop", + "symbol": "GME", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/logo.png", + "pairs": [] + }, + { + "asset": "c501_tC98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9", + "type": "SPL", + "address": "C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9", + "name": "Coin98", + "symbol": "C98", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/logo.png", + "pairs": [] + }, + { + "asset": "c501_tEKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm", + "type": "SPL", + "address": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm", + "name": "dogwifhat", + "symbol": "WIF", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/logo.png", + "pairs": [] + }, + { + "asset": "c501_tGTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1", + "type": "SPL", + "address": "GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1", + "name": "Whales Market", + "symbol": "WHALES", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/logo.png", + "pairs": [] + }, + { + "asset": "c501_tHZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", + "type": "SPL", + "address": "HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3", + "name": "Pyth Network", + "symbol": "PYTH", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/logo.png", + "pairs": [] + }, + { + "asset": "c501_tJ1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", + "type": "SPL", + "address": "J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", + "name": "Jito Staked SOL", + "symbol": "JitoSOL", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/logo.png", + "pairs": [] + }, + { + "asset": "c501_tbSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1", + "type": "SPL", + "address": "bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1", + "name": "BlazeStake Staked SOL", + "symbol": "bSOL", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/bSo13r4TkiE4KumL71LsHTPpL2euBYLFx6h9HP3piy1/logo.png", + "pairs": [] + }, + { + "asset": "c501_thntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux", + "type": "SPL", + "address": "hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux", + "name": "Helium Network", + "symbol": "HNT", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/logo.png", + "pairs": [] + }, + { + "asset": "c501_trndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof", + "type": "SPL", + "address": "rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof", + "name": "Render Token", + "symbol": "RNDR", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/logo.png", + "pairs": [] + } + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/solana/validators/assets/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/D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz/logo.png b/blockchains/solana/validators/assets/D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/solana/validators/assets/D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz/logo.png differ diff --git a/blockchains/solana/validators/assets/DTwEEF6VSrmTBYkDcj3BKAc52qhvP8CEQUEAMMT1cG3/logo.png b/blockchains/solana/validators/assets/DTwEEF6VSrmTBYkDcj3BKAc52qhvP8CEQUEAMMT1cG3/logo.png new file mode 100644 index 000000000000..c38be6e29f03 Binary files /dev/null and b/blockchains/solana/validators/assets/DTwEEF6VSrmTBYkDcj3BKAc52qhvP8CEQUEAMMT1cG3/logo.png differ diff --git a/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png b/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png index 3c29ee005d51..0888af01c5da 100644 Binary files a/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png and b/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png differ diff --git a/blockchains/solana/validators/assets/EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z/logo.png b/blockchains/solana/validators/assets/EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z/logo.png deleted file mode 100644 index f4ef0f5deea0..000000000000 Binary files a/blockchains/solana/validators/assets/EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z/logo.png and /dev/null differ diff --git a/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png b/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png new file mode 100644 index 000000000000..f5f3ada9451c Binary files /dev/null and b/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png differ diff --git a/blockchains/solana/validators/assets/PUmpKiNnSVAZ3w4KaFX6jKSjXUNHFShGkXbERo54xjb/logo.png b/blockchains/solana/validators/assets/PUmpKiNnSVAZ3w4KaFX6jKSjXUNHFShGkXbERo54xjb/logo.png new file mode 100644 index 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..ed0c804be4c3 100644 --- a/blockchains/solana/validators/list.json +++ b/blockchains/solana/validators/list.json @@ -1,16 +1,28 @@ [ + { + "id": "FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "DTwEEF6VSrmTBYkDcj3BKAc52qhvP8CEQUEAMMT1cG3", + "name": "Capital Alliance - 0% fee", + "description": "Best APY, 0% fee, MEV Bonus. All stake welcome.", + "website": "https://capitall.app" + }, + { + "id": "PUmpKiNnSVAZ3w4KaFX6jKSjXUNHFShGkXbERo54xjb", + "name": "Pumpkin's Pool", + "description": "High Yield - Top 1% APY + No fee + MEV Sharing | Professionally run on high-end enterprise hardware.", + "website": "https://www.pumpkinspool.eco/" + }, { "id": "AS3nKBQfKs8fJ8ncyHrdvo4FDT6S8HMRhD75JjCcyr1t", "name": "Overclock", "description": "Dedicated members of the Solana ecosystem running a high performance, secure validator operation.", "website": "https://www.overclock.one/" }, - { - "id": "EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z", - "name": "0% fee 🌻 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": "9QU2QSxhb24FUX3Tu2FpczXjpK3VYrvRudywSZaM29mF", "name": "Everstake", @@ -23,6 +35,12 @@ "description": "Chorus One helps you securely increase your crypto holdings by participating in decentralized networks.", "website": "https://chorus.one/" }, + { + "id": "D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz", + "name": "AutoStake ⚡️ 0% fee forever", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund 🛡️", + "website": "https://autostake.com" + }, { "id": "CertusDeBmqN8ZawdkxK5kFGMwBXdudvWHYwtNgNhvLu", "name": "Jump Crypto", @@ -49,9 +67,9 @@ }, { "id": "EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F", - "name": "Genesis Lab", - "description": "Genesis Lab is a validation nodes operator in PoS networks and blockchain-focused software development company", - "website": "https://genesislab.net" + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" }, { "id": "9tedbEYypEKXAMkHcg42rn3fXY1B8hB6cdE3ZTFouXLL", @@ -62,7 +80,7 @@ { "id": "4PsiLMyoUQ7QRn1FFiFCvej4hsUTFzfvJnyN4bj1tmSN", "name": "Stakin", - "description": "Your Trusted Crypto Rewards", + "description": "Staking Services Trusted by Institutions.", "website": "https://stakin.com/" }, { @@ -124,5 +142,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/sommelier/validators/assets/sommvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z4mj4sy/logo.png b/blockchains/sommelier/validators/assets/sommvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z4mj4sy/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z4mj4sy/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper15urq2dtp9qce4fyc85m6upwm9xul30499el64g/logo.png b/blockchains/sommelier/validators/assets/sommvaloper15urq2dtp9qce4fyc85m6upwm9xul30499el64g/logo.png new file mode 100644 index 000000000000..83225b316714 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper15urq2dtp9qce4fyc85m6upwm9xul30499el64g/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1a583xjv6ylrdfzm3udk6jnj4xy28k2wge0eazz/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1a583xjv6ylrdfzm3udk6jnj4xy28k2wge0eazz/logo.png new file mode 100644 index 000000000000..18b82452aaf2 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1a583xjv6ylrdfzm3udk6jnj4xy28k2wge0eazz/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3/logo.png new file mode 100644 index 000000000000..552a01c6cb62 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1pedd3sk0qhwc3yr6zh036gcwc0d6yhuntw9lcw/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1pedd3sk0qhwc3yr6zh036gcwc0d6yhuntw9lcw/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1pedd3sk0qhwc3yr6zh036gcwc0d6yhuntw9lcw/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1tl6jl7ecqwvgagsc4w46n9nm470cwjyg24hlw3/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1tl6jl7ecqwvgagsc4w46n9nm470cwjyg24hlw3/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1tl6jl7ecqwvgagsc4w46n9nm470cwjyg24hlw3/logo.png differ diff --git a/blockchains/sommelier/validators/list.json b/blockchains/sommelier/validators/list.json new file mode 100644 index 000000000000..e8864571aa5d --- /dev/null +++ b/blockchains/sommelier/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "id": "sommvaloper1pedd3sk0qhwc3yr6zh036gcwc0d6yhuntw9lcw", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash", + "website": "https://polkachu.com/" + }, + { + "id": "sommvaloper15urq2dtp9qce4fyc85m6upwm9xul30499el64g", + "name": "Chorus One", + "description": "Secure Sommelier and shape its future by delegating to Chorus One, a highly secure and stable validator.", + "website": "https://chorus.one/" + }, + { + "id": "sommvaloper1tl6jl7ecqwvgagsc4w46n9nm470cwjyg24hlw3", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "sommvaloper1a583xjv6ylrdfzm3udk6jnj4xy28k2wge0eazz", + "name": "Polychain", + "description": "Polychain is an investment firm committed to exceptional returns for investors through actively managed portfolios of blockchain assets.", + "website": "https://polychain.capital/" + }, + { + "id": "sommvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z4mj4sy", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + } +] diff --git a/blockchains/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..029163721d79 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/starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1swer6tl0s59g82xnq5gmgsdueld79wpw8vptlu/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1swer6tl0s59g82xnq5gmgsdueld79wpw8vptlu/logo.png new file mode 100644 index 000000000000..eaf66cb5cbb1 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1swer6tl0s59g82xnq5gmgsdueld79wpw8vptlu/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1ulvgmlttxhrnmegu57sj0n2qc7xvtrn9245jtu/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1ulvgmlttxhrnmegu57sj0n2qc7xvtrn9245jtu/logo.png new file mode 100644 index 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..8a07987fd1b5 --- /dev/null +++ b/blockchains/stargaze/validators/list.json @@ -0,0 +1,74 @@ +[ + { + "id": "starsvaloper1mz2qks48v486d9m8wp4l9fxm2e9l0e0kzk79m5", + "name": "StakeLab", + "description": "Staking Hub for Cosmos ecosystem", + "website": "https://www.stakelab.zone/" + }, + { + "id": "starsvaloper1ulvgmlttxhrnmegu57sj0n2qc7xvtrn9245jtu", + "name": "Cosmostation", + "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", + "website": "https://www.cosmostation.io/" + }, + { + "id": "starsvaloper13htkxk8nw6qwhfdugllp8ldtgt5nm80xf679h5", + "name": "Figment", + "description": "The complete staking solution for 250+ institutional clients including asset managers, custodians, exchanges, foundations, and wallets to earn rewards on their digital assets.", + "website": "https://figment.io/" + }, + { + "id": "starsvaloper1fhznrvfyv25f27se8pqw79ytfcwh45j0ppy6lz", + "name": "OmniFlix Network", + "description": "OmniFlix is a p2p network for creators, curators and their sovereign communities to mint, manage and monetize assets. Developed Cosmic Compass, winner of the Best Custom Zone category in Cosmos (GOZ) and run nodes on networks that share our vision.", + "website": "https://omniflix.network" + }, + { + "id": "starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "starsvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p60w86a", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at hello@polkachu.com", + "website": "https://polkachu.com/" + }, + { + "id": "starsvaloper1wvh8n82r4alqhxs45m8jtf536sqc5nzzgfzs7x", + "name": "STAKECRAFT", + "description": "StakeCraft is a team of geeks with vast experience in programming, developing and managing digital assets.", + "website": "https://stakecraft.com" + }, + { + "id": "starsvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qlh8sg9", + "name": "Stakecito", + "description": "Securing & Decentralizing PoS Networks.", + "website": "https://stakecito.com" + }, + { + "id": "starsvaloper1y3cxrze7kmktj93atd42g9rffyg823g0qjqelc", + "name": "Imperator.co", + "description": "100% refund on downtime slashing -- Professional Delegated Proof-of-Stake Network Validator", + "website": "https://imperator.co/" + }, + { + "id": "starsvaloper18wkkhsrsw7gwl3z9gn6e25ag3sn0crzp89el6n", + "name": "White Marlin Staking", + "description": "Validator on Stargaze, Osmosis, Chihuahua and Nomic. | 🫵 Delegate", + "website": "https://twitter.com/WhiteMarlin4" + }, + { + "id": "starsvaloper1gz645mefvu5emd0llpfjchqqpyuxt0xxq34per", + "name": "Bad Kids | 100% Slashing", + "description": "Unprotected slashing, 100% fees till 2025", + "website": "http://discord.com/CUbNQh9bFC" + }, + { + "id": "starsvaloper1swer6tl0s59g82xnq5gmgsdueld79wpw8vptlu", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com" + } +] diff --git a/blockchains/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/stridevaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zv8hy7g/logo.png b/blockchains/stride/validators/assets/stridevaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zv8hy7g/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zv8hy7g/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1624f0qe76yhnwvlwp3ury2r2xh6cqemmpts8ge/logo.png b/blockchains/stride/validators/assets/stridevaloper1624f0qe76yhnwvlwp3ury2r2xh6cqemmpts8ge/logo.png new file mode 100644 index 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/stridevaloper1a5c3ejnzy0827t62cyj7etmuchdqvznhp5yp94/logo.png b/blockchains/stride/validators/assets/stridevaloper1a5c3ejnzy0827t62cyj7etmuchdqvznhp5yp94/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1a5c3ejnzy0827t62cyj7etmuchdqvznhp5yp94/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1dae4zycvmyd2qt5td9zzgdjdnwyawp79c5tuec/logo.png b/blockchains/stride/validators/assets/stridevaloper1dae4zycvmyd2qt5td9zzgdjdnwyawp79c5tuec/logo.png new file mode 100644 index 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/assets/stridevaloper1xgvc86nkv03z7rgyx9t8t66kfz7y9tgpewkww2/logo.png b/blockchains/stride/validators/assets/stridevaloper1xgvc86nkv03z7rgyx9t8t66kfz7y9tgpewkww2/logo.png new file mode 100644 index 000000000000..e11781707123 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1xgvc86nkv03z7rgyx9t8t66kfz7y9tgpewkww2/logo.png differ diff --git a/blockchains/stride/validators/list.json b/blockchains/stride/validators/list.json new file mode 100644 index 000000000000..ad2431d0d48c --- /dev/null +++ b/blockchains/stride/validators/list.json @@ -0,0 +1,86 @@ +[ + { + "id": "stridevaloper1dtqsnk3mlqrcxgfvu39lm0jm3pyd0mkrmgkwec", + "name": "Imperator.co", + "description": "100% refund on downtime slashing -- Professional Delegated Proof-of-Stake Network Validator", + "website": "https://imperator.co/" + }, + { + "id": "stridevaloper1x0agh4jnvamn6y5ss94s6ktugwkljp6y2tkj0w", + "name": "Swiss Staking", + "description": "Experienced validator based in Switzerland. We offer a highly secure and stable staking infrastructure.", + "website": "https://swiss-staking.ch/" + }, + { + "id": "stridevaloper1jj9z2xwxesuy65n90dujsak554eqkrr28aqpl0", + "name": "Cosmostation", + "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", + "website": "https://www.cosmostation.io/" + }, + { + "id": "stridevaloper1dqpg0hfva0k0awzhxwarjpgzj82hlmvrnxlzsd", + "name": "NodeRun", + "description": "Proudly giving back to the community with a portion of our validators rewards using Quick Grants.", + "website": "https://noderun.vip/" + }, + { + "id": "stridevaloper19nktvlnhd7j2tsyt97jyfnv3kdemx8cqx25ng7", + "name": "Everstake", + "description": "Reliable and experienced staking service provider from Ukraine. Visit our website for more details.", + "website": "https://everstake.one/" + }, + { + "id": "stridevaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p9nfwja", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at hello@polkachu.com", + "website": "https://polkachu.com/" + }, + { + "id": "stridevaloper1a5c3ejnzy0827t62cyj7etmuchdqvznhp5yp94", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "stridevaloper1kvwpcr45lh7wn53wp9ac42ypr3t8zjqy6ks9au", + "name": "Notional", + "description": "Notional Ventures is a leading security auditing consultant, software engineering, and infrastructure provider for the Cosmos blockchain ecosystem", + "website": "https://notional.ventures" + }, + { + "id": "stridevaloper1dae4zycvmyd2qt5td9zzgdjdnwyawp79c5tuec", + "name": "Staking Facilities", + "description": "Secure blockchain ecosystems by staking tokens and participate in the next evolution of the internet!", + "website": "https://stakingfacilities.com/" + }, + { + "id": "stridevaloper1md2j38ls8hg94vjfafu0a2p9htwlkjmhux9e4v", + "name": "Citadel.one", + "description": "Citadel.one is a multi-asset non-custodial staking platform that lets anyone become a part of decentralized infrastructure and earn passive income. Stake with our nodes or any other validator across multiple networks in a few clicks", + "website": "https://citadel.one/" + }, + { + "id": "stridevaloper1624f0qe76yhnwvlwp3ury2r2xh6cqemmpts8ge", + "name": "Flipside", + "description": "Explore the best data and insights in Web3.", + "website": "https://flipsidecrypto.xyz/" + }, + { + "id": "stridevaloper17axr56uvurzt9dzjl6zplk4qwjkmxgmmqmthwv", + "name": "Allnodes.com ⚡️ 0% fee", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/strd/staking" + }, + { + "id": "stridevaloper1xgvc86nkv03z7rgyx9t8t66kfz7y9tgpewkww2", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "stridevaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zv8hy7g", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + } +] diff --git a/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/info.json b/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/info.json new file mode 100644 index 000000000000..6a66ea610de1 --- /dev/null +++ b/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/info.json @@ -0,0 +1,21 @@ +{ + "name": "USD Coin (Portal from Ethereum)", + "symbol": "USDC", + "type": "SUI", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://portalbridge.com/?targetChain=sui", + "explorer": "https://explorer.sui.io/address/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN", + "status": "active", + "id": "0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN", + "links": [ + { + "name": "docs", + "url": "https://portalbridge.com/docs/faqs/liquid-markets/#target-chain-sui" + } + ], + "tags": [ + "stablecoin", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/logo.png b/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/logo.png new file mode 100644 index 000000000000..8047edf737f3 Binary files /dev/null and b/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/logo.png differ diff --git a/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/info.json b/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/info.json new file mode 100644 index 000000000000..34261b0bf39c --- /dev/null +++ b/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/info.json @@ -0,0 +1,21 @@ +{ + "name": "USD Coin (Portal from Solana)", + "symbol": "USDCsol", + "type": "SUI", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://portalbridge.com/?targetChain=sui", + "explorer": "https://explorer.sui.io/address/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN", + "status": "active", + "id": "0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN", + "links": [ + { + "name": "docs", + "url": "https://portalbridge.com/docs/faqs/liquid-markets/#target-chain-sui" + } + ], + "tags": [ + "stablecoin", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/logo.png b/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/logo.png new file mode 100644 index 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..3e9560aa3f6d --- /dev/null +++ b/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tether USD (Portal from Ethereum)", + "symbol": "USDTet", + "type": "SUI", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://portalbridge.com/?targetChain=sui", + "explorer": "https://explorer.sui.io/address/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN", + "status": "active", + "id": "0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN", + "links": [ + { + "name": "docs", + "url": "https://portalbridge.com/docs/faqs/liquid-markets/#target-chain-sui" + } + ], + "tags": [ + "stablecoin", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/logo.png b/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/logo.png new file mode 100644 index 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..451b6588d1b8 --- /dev/null +++ b/blockchains/sui/info/info.json @@ -0,0 +1,32 @@ +{ + "name": "Sui", + "website": "https://sui.io/", + "description": "Sui is a boundless platform to build rich and dynamic on-chain assets from gaming to finance.", + "explorer": "https://explorer.sui.io/", + "symbol": "SUI", + "type": "coin", + "decimals": 9, + "status": "active", + "tags": [ + "defi", + "staking-native" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SuiNetwork" + }, + { + "name": "github", + "url": "https://github.com/MystenLabs/sui" + }, + { + "name": "discord", + "url": "https://discord.com/invite/suiglobal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sui/" + } + ] +} diff --git a/blockchains/sui/info/logo.png b/blockchains/sui/info/logo.png new file mode 100644 index 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/0x9b8b11c9b2336d35f2db8d5318ff32de51b85857f0e53a5c31242cf3797f4be4/logo.png b/blockchains/sui/validators/assets/0x9b8b11c9b2336d35f2db8d5318ff32de51b85857f0e53a5c31242cf3797f4be4/logo.png new file mode 100644 index 000000000000..eaf66cb5cbb1 Binary files /dev/null and b/blockchains/sui/validators/assets/0x9b8b11c9b2336d35f2db8d5318ff32de51b85857f0e53a5c31242cf3797f4be4/logo.png differ diff --git a/blockchains/sui/validators/assets/0xad1ca3844353d0c1b86fea2d848fda0c62439168c29e132ef17f9964a19a551f/logo.png b/blockchains/sui/validators/assets/0xad1ca3844353d0c1b86fea2d848fda0c62439168c29e132ef17f9964a19a551f/logo.png new file mode 100644 index 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..3e1bb03c6c05 --- /dev/null +++ b/blockchains/sui/validators/list.json @@ -0,0 +1,74 @@ +[ + { + "id": "0x61953ea72709eed72f4441dd944eec49a11b4acabfc8e04015e89c63be81b6ab", + "name": "Staketab", + "description": "Staketab is engaged in professional validation in various blockchain networks. We develop fast and high-quality explorers and other ecosystem tools.", + "website": "https://staketab.com/" + }, + { + "id": "0x184fbf9d6c2d2d3f27e27fe3ca2d3b4080bd406221e345e2d36633e638e988e1", + "name": "Cosmostation", + "description": "Intelligent crypto infrastructure. Earn with Cosmostation.", + "website": "https://www.cosmostation.io/" + }, + { + "id": "0xad1ca3844353d0c1b86fea2d848fda0c62439168c29e132ef17f9964a19a551f", + "name": "TestnetPride", + "description": "TestnetPride is a staking provider for different Proof of Stake blockchains. We provide a secure service for our community to put their crypto to work", + "website": "http://testnet-pride.com/" + }, + { + "id": "0x4fffd0005522be4bc029724c7f0f6ed7093a6bf3a09b90e62f61dc15181e1a3e", + "name": "Mysten-1", + "description": "Creators of SUI", + "website": "https://mystenlabs.com/" + }, + { + "id": "0xec73ec4d6b2a9403937b12ca625f7b3124c4459ff4e3caae6cf6376edefb9f3a", + "name": "Nodes.Guru", + "description": "Guru of non-custodial staking. Professional node running, the best uptime and 24/7 customer support.", + "website": "https://nodes.guru/" + }, + { + "id": "0x4f9791d5c689306862b4eb9a25914c5433b7dfd5cb4827b461f7dfc813f28a7c", + "name": "Citadel.one", + "description": "Citadel.one is a multi-asset non-custodial staking platform that lets anyone become a part of decentralized infrastructure and earn passive income.", + "website": "https://citadel.one/about" + }, + { + "id": "0xe719405821d7bd32ded86a2aed34f06f3dacd09c91241ec3f34b219ebeddc6f0", + "name": "mrgn", + "description": "mrgn research is a proprietary trading firm solving DeFi's liquidity problems", + "website": "https://www.mrgn.ch/" + }, + { + "id": "0x91b3d7211dbe057d02e2aa06f1cd678f1408438d494d2e783e0b67a77cca4599", + "name": "Chainbase", + "description": "The all-in-one data infra for Web3 — Indexing, transforming, and Large-scale utilization of on-chain data with APIs, Pipeline, and SQL.", + "website": "https://chainbase.com/" + }, + { + "id": "0x60ce054d9dc5771fcbeb9a52a1881a97d3092efc8eb29befc3e60281dbe80ca0", + "name": "GalaxyDigital", + "description": "Galaxy is a digital asset and blockchain leader helping institutions, startups, and qualified individuals shape a changing economy.", + "website": "https://www.galaxy.com/" + }, + { + "id": "0x68cf08c4ef8b0462d8c3879f4e26cc371fbddd844650d0c41a9c3badc8104609", + "name": "Stakingcabin", + "description": "We offer enterprise-level, highly secure infrastructure services for public blockchain protocols.", + "website": "https://stakingcabin.com/" + }, + { + "id": "0x885c0345bbf4441f39b98caf2295640a4dc3696ee9e8bc68f2101ca5e6f9bbf1", + "name": "Allnodes.com ⚡️", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes.", + "website": "https://www.allnodes.com/sui/staking" + }, + { + "id": "0x9b8b11c9b2336d35f2db8d5318ff32de51b85857f0e53a5c31242cf3797f4be4", + "name": "Stakin", + "description": "SUI staking services by an experienced enterprise validator trusted by institutions and the communities", + "website": "https://stakin.com" + } +] diff --git a/blockchains/syscoin/info/info.json b/blockchains/syscoin/info/info.json new file mode 100644 index 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/teritori/validators/assets/torivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztl8j0u/logo.png b/blockchains/teritori/validators/assets/torivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztl8j0u/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/teritori/validators/assets/torivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztl8j0u/logo.png differ diff --git a/blockchains/teritori/validators/assets/torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h/logo.png b/blockchains/teritori/validators/assets/torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/teritori/validators/assets/torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h/logo.png differ diff --git a/blockchains/teritori/validators/assets/torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq/logo.png b/blockchains/teritori/validators/assets/torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/teritori/validators/assets/torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq/logo.png differ diff --git a/blockchains/teritori/validators/list.json b/blockchains/teritori/validators/list.json new file mode 100644 index 000000000000..72ea8f6f51cb --- /dev/null +++ b/blockchains/teritori/validators/list.json @@ -0,0 +1,20 @@ +[ + { + "id": "torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "torivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztl8j0u", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + } +] \ No newline at end of file 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/terravaloper13avdm9rqxpftv3vrkaqaakakgh30909x8c07v3/logo.png b/blockchains/terra/validators/assets/terravaloper13avdm9rqxpftv3vrkaqaakakgh30909x8c07v3/logo.png new file mode 100644 index 000000000000..8247888dd198 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper13avdm9rqxpftv3vrkaqaakakgh30909x8c07v3/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper14xjkj5rv72fgqz3h78l883rw0njwhmzce45006/logo.png b/blockchains/terra/validators/assets/terravaloper14xjkj5rv72fgqz3h78l883rw0njwhmzce45006/logo.png new file mode 100644 index 000000000000..7377f61b2a54 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper14xjkj5rv72fgqz3h78l883rw0njwhmzce45006/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper15ahd0dg9qwkg5tjmkn7fm6sdrpwa47m50l4zrg/logo.png b/blockchains/terra/validators/assets/terravaloper15ahd0dg9qwkg5tjmkn7fm6sdrpwa47m50l4zrg/logo.png new file mode 100644 index 000000000000..af4630e029a1 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper15ahd0dg9qwkg5tjmkn7fm6sdrpwa47m50l4zrg/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper16e0s5t7q69elnlchrupryw3h7vu8zk23pe5wh8/logo.png b/blockchains/terra/validators/assets/terravaloper16e0s5t7q69elnlchrupryw3h7vu8zk23pe5wh8/logo.png new file mode 100644 index 000000000000..80d398ff24f8 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper16e0s5t7q69elnlchrupryw3h7vu8zk23pe5wh8/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82/logo.png b/blockchains/terra/validators/assets/terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82/logo.png new file mode 100644 index 000000000000..472936ed16f0 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1der0lqp4grpnmpuefhwlj72fzccqmhmwgjh6ys/logo.png b/blockchains/terra/validators/assets/terravaloper1der0lqp4grpnmpuefhwlj72fzccqmhmwgjh6ys/logo.png new file mode 100644 index 000000000000..51a327ab316c Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1der0lqp4grpnmpuefhwlj72fzccqmhmwgjh6ys/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1f2t96sz9hnwsqnneux6v28xfgn07pkxjduvwjz/logo.png b/blockchains/terra/validators/assets/terravaloper1f2t96sz9hnwsqnneux6v28xfgn07pkxjduvwjz/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1f2t96sz9hnwsqnneux6v28xfgn07pkxjduvwjz/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1fuk24ujq5e7zrj7st2m4wvgczdfchhzm5f2ml0/logo.png b/blockchains/terra/validators/assets/terravaloper1fuk24ujq5e7zrj7st2m4wvgczdfchhzm5f2ml0/logo.png new file mode 100644 index 000000000000..70ee36d1bc85 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1fuk24ujq5e7zrj7st2m4wvgczdfchhzm5f2ml0/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx/logo.png b/blockchains/terra/validators/assets/terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx/logo.png deleted file mode 100644 index 3c29ee005d51..000000000000 Binary files a/blockchains/terra/validators/assets/terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx/logo.png and /dev/null differ diff --git a/blockchains/terra/validators/assets/terravaloper1pu8lpz64erz47eemtkhq9wzwu9st9ehywnlw4q/logo.png b/blockchains/terra/validators/assets/terravaloper1pu8lpz64erz47eemtkhq9wzwu9st9ehywnlw4q/logo.png new file mode 100644 index 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..e0627e5475c9 100644 --- a/blockchains/terra/validators/list.json +++ b/blockchains/terra/validators/list.json @@ -14,7 +14,7 @@ { "id": "terravaloper1nwrksgv2vuadma8ygs8rhwffu2ygk4j24w2mku", "name": "Stakin", - "description": "Your Trusted Crypto Rewards", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", "website": "https://stakin.com/" }, { @@ -23,12 +23,6 @@ "description": "Validators of today, Auditors of tomorrow", "website": "https://audit.one/" }, - { - "id": "terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx", - "name": "Genesis Lab", - "description": "Genesis Lab is a validation nodes operator in PoS networks and blockchain-focused software development company", - "website": "https://genesislab.net" - }, { "id": "terravaloper1259cmu5zyklsdkmgstxhwqpe0utfe5hhyty0at", "name": "Orion.Money", @@ -65,6 +59,12 @@ "description": "Creator of Terra Analytics @ terra.smartstake.io - Supply, airdrop apr/timer, tvl, ecosystem, projects, & many other tools. Creator of validator analytics @ tpa.smartstake.io. Automated monitoring & alerts to ensure high uptime. Commission fixed @ 5%. Support @ t.me/SmartStake", "website": "https://smartstake.io/" }, + { + "id": "terravaloper1f2t96sz9hnwsqnneux6v28xfgn07pkxjduvwjz", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, { "id": "terravaloper108lmrztvc3pc3w774shgvpry4d3lf79k2ummna", "name": "Stakely.io", @@ -73,8 +73,68 @@ }, { "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" + }, + { + "id": "terravaloper13avdm9rqxpftv3vrkaqaakakgh30909x8c07v3", + "name": "GalacticShift.io", + "description": "Terra Classic validator provided and maintained by GalacticShift.io / StrathCole", + "website": "https://galacticshift.io" + }, + { + "id": "terravaloper15ahd0dg9qwkg5tjmkn7fm6sdrpwa47m50l4zrg", + "name": "HappyCattyCrypto | Minimum Fees | Auto Compound | Auto USTC Airdrops", + "description": "I am a LUNC Revivalist who has brought to life the enchanting world of LUNCpenguinsNFT and spearheaded the visionary ProjectLUNCBurn initiative.", + "website": "https://hccfactory.com" + }, + { + "id": "terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82", + "name": "Hexxagon - 100% Fund Infrastructure and Terra Classic Station", + "description": "Hexxagon provides infrastructure and Terra Classic Station wallet to the Terra Classic commmunity, 100% of our validator commissions goes to funding these services.", + "website": "https://hexxagon.io" } -] \ No newline at end of file +] diff --git a/blockchains/terrav2/validators/assets/terravaloper1mgpgp53tynj4djmckxdjhufa7q8lqqjuwnrlqm/logo.png b/blockchains/terrav2/validators/assets/terravaloper1mgpgp53tynj4djmckxdjhufa7q8lqqjuwnrlqm/logo.png new file mode 100644 index 000000000000..4b09813738a9 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper1mgpgp53tynj4djmckxdjhufa7q8lqqjuwnrlqm/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper1tfy452kxfcsa2353nenltade9esj7ffrc38gwn/logo.png b/blockchains/terrav2/validators/assets/terravaloper1tfy452kxfcsa2353nenltade9esj7ffrc38gwn/logo.png new file mode 100644 index 000000000000..0888af01c5da Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper1tfy452kxfcsa2353nenltade9esj7ffrc38gwn/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper1vcd42qfvlvnjwaw7hvl6y32wrzqxvas653yus9/logo.png b/blockchains/terrav2/validators/assets/terravaloper1vcd42qfvlvnjwaw7hvl6y32wrzqxvas653yus9/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper1vcd42qfvlvnjwaw7hvl6y32wrzqxvas653yus9/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz/logo.png b/blockchains/terrav2/validators/assets/terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz/logo.png differ diff --git a/blockchains/terrav2/validators/list.json b/blockchains/terrav2/validators/list.json new file mode 100644 index 000000000000..2ffd255107b9 --- /dev/null +++ b/blockchains/terrav2/validators/list.json @@ -0,0 +1,26 @@ +[ + { + "id": "terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "terravaloper1tfy452kxfcsa2353nenltade9esj7ffrc38gwn", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "terravaloper1vcd42qfvlvnjwaw7hvl6y32wrzqxvas653yus9", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "terravaloper1mgpgp53tynj4djmckxdjhufa7q8lqqjuwnrlqm", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + } +] \ 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/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/tia/info/info.json b/blockchains/tia/info/info.json new file mode 100644 index 000000000000..933091e0030f --- /dev/null +++ b/blockchains/tia/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Celestia", + "website": "https://celestia.org", + "description": "Celestia is a modular data availability network that securely scales with the number of users, making it easy for anyone to launch their own blockchain.", + "explorer": "https://www.mintscan.io/celestia", + "symbol": "TIA", + "type": "coin", + "decimals": 6, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/celestiaorg" + }, + { + "name": "twitter", + "url": "https://twitter.com/CelestiaOrg" + } + ] +} diff --git a/blockchains/tia/info/logo.png b/blockchains/tia/info/logo.png new file mode 100644 index 000000000000..38a1dbc366c9 Binary files /dev/null and b/blockchains/tia/info/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcvqd22/logo.png b/blockchains/tia/validators/assets/celestiavaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcvqd22/logo.png new file mode 100644 index 000000000000..9b28ec000f28 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcvqd22/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper15urq2dtp9qce4fyc85m6upwm9xul3049gwdz0x/logo.png b/blockchains/tia/validators/assets/celestiavaloper15urq2dtp9qce4fyc85m6upwm9xul3049gwdz0x/logo.png new file mode 100644 index 000000000000..a1fb2e987e3c Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper15urq2dtp9qce4fyc85m6upwm9xul3049gwdz0x/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1dlsl4u42ycahzjfwc6td6upgsup9tt7cz8vqm4/logo.png b/blockchains/tia/validators/assets/celestiavaloper1dlsl4u42ycahzjfwc6td6upgsup9tt7cz8vqm4/logo.png new file mode 100644 index 000000000000..4b09813738a9 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1dlsl4u42ycahzjfwc6td6upgsup9tt7cz8vqm4/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1e2p4u5vqwgum7pm9vhp0yjvl58gvhfc6yfatw4/logo.png b/blockchains/tia/validators/assets/celestiavaloper1e2p4u5vqwgum7pm9vhp0yjvl58gvhfc6yfatw4/logo.png new file mode 100644 index 000000000000..14f73e55dfe2 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1e2p4u5vqwgum7pm9vhp0yjvl58gvhfc6yfatw4/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1geuw5f6u3n5l4ne2d2nze3fehxf023f7s8h08t/logo.png b/blockchains/tia/validators/assets/celestiavaloper1geuw5f6u3n5l4ne2d2nze3fehxf023f7s8h08t/logo.png new file mode 100644 index 000000000000..405520244e26 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1geuw5f6u3n5l4ne2d2nze3fehxf023f7s8h08t/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1mhux0vt6qszz8qwv8axggt02jjm7tuvdfhz78j/logo.png b/blockchains/tia/validators/assets/celestiavaloper1mhux0vt6qszz8qwv8axggt02jjm7tuvdfhz78j/logo.png new file mode 100644 index 000000000000..09ad204add31 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1mhux0vt6qszz8qwv8axggt02jjm7tuvdfhz78j/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1xqc7w3pe38kg4tswjt7mnvks7gy4p38vtsuycj/logo.png b/blockchains/tia/validators/assets/celestiavaloper1xqc7w3pe38kg4tswjt7mnvks7gy4p38vtsuycj/logo.png new file mode 100644 index 000000000000..962c00c941b3 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1xqc7w3pe38kg4tswjt7mnvks7gy4p38vtsuycj/logo.png differ diff --git a/blockchains/tia/validators/list.json b/blockchains/tia/validators/list.json new file mode 100644 index 000000000000..60a687fae2ab --- /dev/null +++ b/blockchains/tia/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "id": "celestiavaloper1e2p4u5vqwgum7pm9vhp0yjvl58gvhfc6yfatw4", + "name": "Finoa Consensus Services", + "description": "Stake and grow your assets using Finoa's institutional-grade infrastructure.", + "website": "https://www.finoa.io/staking-delegation/" + }, + { + "id": "celestiavaloper15urq2dtp9qce4fyc85m6upwm9xul3049gwdz0x", + "name": "Chorus One", + "description": "Secure Celestia and shape its future by delegating to Chorus One, a highly secure and stable validator.", + "website": "https://chorus.one/" + }, + { + "id": "celestiavaloper1geuw5f6u3n5l4ne2d2nze3fehxf023f7s8h08t", + "name": "Coinbase Cloud", + "description": "Coinbase Cloud provides secure and reliable blockchain infrastructure and APIs. Stake your crypto to our enterprise-grade validators.", + "website": "https://www.coinbase.com/cloud" + }, + { + "id": "celestiavaloper1mhux0vt6qszz8qwv8axggt02jjm7tuvdfhz78j", + "name": "Twinstake", + "description": "Twinstake is an institutional-grade, non-custodial staking provider designed and built in collaboration with leaders in the digital assets space. The platform offers industry leading performance, institutional-grade security and uncompromising Know Your Client (KYC) procedures.", + "website": "https://twinstake.io/" + }, + { + "id": "celestiavaloper1xqc7w3pe38kg4tswjt7mnvks7gy4p38vtsuycj", + "name": "Figment", + "description": "Staking with Figment is supported by the leading digital asset wallets and custody providers.", + "website": "https://figment.io/" + }, + { + "id": "celestiavaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcvqd22", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "celestiavaloper1dlsl4u42ycahzjfwc6td6upgsup9tt7cz8vqm4", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + } +] diff --git a/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/info.json b/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/info.json index c5efbc470695..b5a9039f90e5 100644 --- a/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/info.json +++ b/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/info.json @@ -5,7 +5,7 @@ "decimals": 6, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776", + "explorer": "https://tomoscan.io/token/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776", "status": "abandoned", "id": "0x01F83cE6636179b54b0CC0C408f9a8bce40ae776" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/logo.png b/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/logo.png deleted file mode 100644 index 91dd7c5e0ca8..000000000000 Binary files a/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/logo.png and /dev/null differ diff --git a/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json b/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json index 7f0cb96ab6af..83a1847656c8 100644 --- a/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json +++ b/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0x17B26400621695c2D8C2D8869f6259E82D7544c4", + "explorer": "https://tomoscan.io/token/0x17B26400621695c2D8C2D8869f6259E82D7544c4", "status": "active", "id": "0x17B26400621695c2D8C2D8869f6259E82D7544c4" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/info.json b/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/info.json new file mode 100644 index 000000000000..796cc04b1403 --- /dev/null +++ b/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/info.json @@ -0,0 +1,28 @@ +{ + "name": "Northern Lottery", + "type": "TRC21", + "symbol": "XSMB", + "decimals": 18, + "website": "https://lottoxsmb.com/", + "description": "Revolutionizing the Global Lottery Industry with Harnessing Blockchain and Smart Contracts", + "explorer": "https://tomoscan.io/token/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA", + "status": "active", + "id": "0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LottoXSMB" + }, + { + "name": "telegram", + "url": "https://t.me/lottoxsmb_us" + }, + { + "name": "whitepaper", + "url": "https://docs.google.com/document/d/14jDWJ6WI3YnSe5P-rth_bfDKUgnT_rwg/edit?usp=share_link&ouid=100963559652495354132&rtpof=true&sd=true" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/logo.png b/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/logo.png new file mode 100644 index 000000000000..004cabcc246f Binary files /dev/null and b/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/logo.png differ diff --git a/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/info.json b/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/info.json new file mode 100644 index 000000000000..96b18729376e --- /dev/null +++ b/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mega Lottery (MLR)", + "type": "TRC21", + "symbol": "MLR", + "decimals": 18, + "website": "https://megaltr.com", + "description": "lottery blockchain operates fully automatically based on smart contracts", + "explorer": "https://tomoscan.io/token/0x5080781e91237b6D7f026D5306b7233e26Cd6C16", + "status": "active", + "id": "0x5080781e91237b6D7f026D5306b7233e26Cd6C16", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MegaLTR" + }, + { + "name": "telegram", + "url": "https://t.me/megaltr_us" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/logo.png b/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/logo.png new file mode 100644 index 000000000000..516ff8be7c19 Binary files /dev/null and b/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/logo.png differ diff --git a/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/info.json b/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/info.json new file mode 100644 index 000000000000..5d23cfb32f28 --- /dev/null +++ b/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/info.json @@ -0,0 +1,28 @@ +{ + "name": "Crypto For Betting", + "type": "TRC21", + "symbol": "CFB", + "decimals": 18, + "website": "https://lottocfb.com", + "description": "Your Gateway to Winning", + "explorer": "https://tomoscan.io/token/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532", + "status": "active", + "id": "0x567b1e373f7285e9a32f5eeB9305b6964B6a3532", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CommunityCFB" + }, + { + "name": "telegram", + "url": "https://t.me/CommunityCFB" + }, + { + "name": "whitepaper", + "url": "https://docs.google.com/document/d/1c_v7P5sHneSTP6pHUBsF_Es_IZgAxCTG/edit?usp=sharing" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/logo.png b/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/logo.png new file mode 100644 index 000000000000..2a0fb19413dd Binary files /dev/null and b/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/logo.png differ diff --git a/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/info.json b/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/info.json index 7ec780b5a8eb..770baefab4af 100644 --- a/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/info.json +++ b/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/info.json @@ -5,7 +5,7 @@ "decimals": 6, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84", + "explorer": "https://tomoscan.io/token/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84", "status": "abandoned", "id": "0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/logo.png b/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/logo.png deleted file mode 100644 index cfb8873a44c9..000000000000 Binary files a/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/logo.png and /dev/null differ diff --git a/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/info.json b/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/info.json index 74915867e612..8265e69f1330 100644 --- a/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/info.json +++ b/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/info.json @@ -5,7 +5,7 @@ "decimals": 18, "website": "https://tabank.org", "description": "crypto ecosystem that include: e-commerce, social networks, exchanges and crypto wallet, gaming", - "explorer": "https://scan.tomochain.com/address/0x8103bb77ed2035b5da9a3a65d9c313cb6ee41dbd", + "explorer": "https://tomoscan.io/token/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD", "status": "active", "id": "0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD", "links": [ diff --git a/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/info.json b/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/info.json index 860c1da31c08..68bd663b46b5 100644 --- a/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/info.json +++ b/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/info.json @@ -5,7 +5,7 @@ "decimals": 4, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8", + "explorer": "https://tomoscan.io/token/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8", "status": "abandoned", "id": "0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/logo.png b/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/logo.png deleted file mode 100644 index 2b0e8d742bb2..000000000000 Binary files a/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/logo.png and /dev/null differ diff --git a/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json b/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json index 4f48cb290768..52526e3f57fb 100644 --- a/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json +++ b/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json @@ -5,7 +5,7 @@ "decimals": 6, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0xcE98172f4fC9Ad02da607843A2C211b7834431da", + "explorer": "https://tomoscan.io/token/0xcE98172f4fC9Ad02da607843A2C211b7834431da", "status": "abandoned", "id": "0xcE98172f4fC9Ad02da607843A2C211b7834431da" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/logo.png b/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/logo.png deleted file mode 100644 index 088da52294f2..000000000000 Binary files a/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/logo.png and /dev/null differ diff --git a/blockchains/tomochain/info/info.json b/blockchains/tomochain/info/info.json index c6c89ac22991..7e84cc2efa90 100644 --- a/blockchains/tomochain/info/info.json +++ b/blockchains/tomochain/info/info.json @@ -1,10 +1,9 @@ { - "name": "TomoChain", - "website": "https://tomochain.com", - "description": "TomoChain is a scalable blockchain powered via Proof-of-Stake Voting consensus and used commercially by companies globally.", + "name": "Viction", + "website": "https://viction.xyz/", + "description": "Viction (VIC) is a people-centric layer-1 blockchain that provides zero-gas transactions and heightened security, making Web3 accessible and safe for everyone.", "explorer": "https://scan.tomochain.com", - "research": "https://research.binance.com/en/projects/tomochain", - "symbol": "TOMO", + "symbol": "VIC", "type": "coin", "decimals": 18, "status": "active", @@ -15,15 +14,11 @@ }, { "name": "twitter", - "url": "https://twitter.com/TomoChainANN" + "url": "https://twitter.com/BuildOnViction" }, { - "name": "reddit", - "url": "https://reddit.com/r/Tomochain" - }, - { - "name": "whitepaper", - "url": "https://tomochain.com/docs/technical-whitepaper--1.0.pdf" + "name": "telegram", + "url": "https://t.me/buildonviction" } ] } \ No newline at end of file diff --git a/blockchains/tomochain/info/logo.png b/blockchains/tomochain/info/logo.png index 9b00b4c7ee35..4a9aa96eacf2 100644 Binary files a/blockchains/tomochain/info/logo.png and b/blockchains/tomochain/info/logo.png differ diff --git a/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/info.json b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/info.json new file mode 100644 index 000000000000..c9ce5091f788 --- /dev/null +++ b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO", + "name": "STON", + "type": "TON", + "symbol": "STON", + "decimals": 9, + "description": "STON is the utility token of the STON.fi DEX integrated into the core protocol mechanics. STON allows participation in protocol governance through long-term staking.", + "status": "active", + "explorer": "https://tonscan.org/address/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO", + "id": "EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO", + "website": "https://ston.fi/", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/logo.png b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/logo.png new file mode 100644 index 000000000000..c9eb9c8508e6 Binary files /dev/null and b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/logo.png differ diff --git a/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/info.json b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/info.json new file mode 100644 index 000000000000..8674cc72308c --- /dev/null +++ b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR", + "name": "Orbit Bridge Ton Dai", + "type": "TON", + "symbol": "oDAI", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR", + "id": "EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/logo.png b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/logo.png new file mode 100644 index 000000000000..8471bd656dbc Binary files /dev/null and b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/logo.png differ diff --git a/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/info.json b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/info.json new file mode 100644 index 000000000000..864ed7f308e4 --- /dev/null +++ b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn", + "name": "KISS Coin", + "type": "TON", + "symbol": "KISS", + "decimals": 9, + "description": "TON KISS project coin", + "status": "active", + "explorer": "https://tonscan.org/address/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn", + "id": "EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn", + "website": "https://t.me/KISS_Coin", + "links": [ + { + "name": "telegram", + "url": "https://t.me/KISSCoinChat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/logo.png b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/logo.png new file mode 100644 index 000000000000..d6eeb355ceb8 Binary files /dev/null and b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/logo.png differ diff --git a/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/info.json b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/info.json new file mode 100644 index 000000000000..bbde7d207707 --- /dev/null +++ b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L", + "name": "Orbit Bridge Ton KlaySwap Protocol", + "type": "TON", + "symbol": "oKSP", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L", + "id": "EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/logo.png b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/logo.png new file mode 100644 index 000000000000..44986ce38ed7 Binary files /dev/null and b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/logo.png differ diff --git a/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/info.json b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/info.json new file mode 100644 index 000000000000..2a3c5adc3e98 --- /dev/null +++ b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB", + "name": "Orbit Bridge Ton Wrapped BTC", + "type": "TON", + "symbol": "oWBTC", + "decimals": 8, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB", + "id": "EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/logo.png b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/logo.png new file mode 100644 index 000000000000..ecda101d9220 Binary files /dev/null and b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/logo.png differ diff --git a/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/info.json b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/info.json new file mode 100644 index 000000000000..b4bf0455c382 --- /dev/null +++ b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR", + "name": "Love You", + "type": "TON", + "symbol": "LOVE", + "decimals": 9, + "description": "The concept of the LOVE jetton is the Metaverse. Metaverse for virtual dating. Jetton based on the TON blockchain. Telegram channel - @loveholders, @loveholderschat, @loveholderseng, @loveengchat, loveholders.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR", + "id": "EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR", + "website": "https://loveholders.com/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/loveholderschat" + }, + { + "name": "telegram_news", + "url": "https://t.me/loveholderseng" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/logo.png b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/logo.png new file mode 100644 index 000000000000..431a0c1e3dc9 Binary files /dev/null and b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/logo.png differ diff --git a/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/info.json b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/info.json new file mode 100644 index 000000000000..2eab0179c430 --- /dev/null +++ b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-", + "name": "Orbit Bridge Ton Ethereum", + "type": "TON", + "symbol": "oETH", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-", + "id": "EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/logo.png b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/logo.png new file mode 100644 index 000000000000..c5cee244465c Binary files /dev/null and b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/logo.png differ diff --git a/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/info.json b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/info.json new file mode 100644 index 000000000000..37a79e8bc068 --- /dev/null +++ b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs", + "name": "Stalin", + "type": "TON", + "symbol": "IVS", + "decimals": 9, + "description": "Look for Stalin inside yourself.", + "status": "active", + "explorer": "https://tonscan.org/address/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs", + "id": "EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs", + "website": "https://t.me/Stalin_IVS", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Stalin_chat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/logo.png b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/logo.png new file mode 100644 index 000000000000..93f5bdd08f02 Binary files /dev/null and b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/logo.png differ diff --git a/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/info.json b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/info.json new file mode 100644 index 000000000000..e9625f2155e8 --- /dev/null +++ b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad", + "name": "Orbit Bridge Ton GALAXIA", + "type": "TON", + "symbol": "oGXA", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad", + "id": "EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/logo.png b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/logo.png new file mode 100644 index 000000000000..1fbb82754494 Binary files /dev/null and b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/logo.png differ diff --git a/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/info.json b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/info.json new file mode 100644 index 000000000000..a8886ea6f77c --- /dev/null +++ b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y", + "name": "Tegro", + "type": "TON", + "symbol": "TGR", + "decimals": 9, + "description": "Cross-platform payment token on the TON blockchain.", + "status": "active", + "explorer": "https://tonscan.org/address/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y", + "id": "EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y", + "website": "https://tegro.io", + "links": [ + { + "name": "telegram", + "url": "https://t.me/TgrTon" + }, + { + "name": "twitter", + "url": "https://twitter.com/tgrtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/logo.png b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/logo.png new file mode 100644 index 000000000000..27b09f47b50a Binary files /dev/null and b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/logo.png differ diff --git a/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/info.json b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/info.json new file mode 100644 index 000000000000..14c488880d5e --- /dev/null +++ b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy", + "name": "Ton Earth coin", + "type": "TON", + "symbol": "TEC", + "decimals": 9, + "description": "Ton Earth universe coin on the Legendary Blockchain.", + "status": "active", + "explorer": "https://tonscan.org/address/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy", + "id": "EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy", + "website": "https://tonearth.com/" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/logo.png b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/logo.png new file mode 100644 index 000000000000..a48bf77783d5 Binary files /dev/null and b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/logo.png differ diff --git a/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/info.json b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/info.json new file mode 100644 index 000000000000..90bf2f74093c --- /dev/null +++ b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx", + "name": "Orbit Bridge Ton Orbs", + "type": "TON", + "symbol": "oORBS", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx", + "id": "EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/logo.png b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/logo.png new file mode 100644 index 000000000000..80eb04ab97b7 Binary files /dev/null and b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/logo.png differ diff --git a/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/info.json b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/info.json new file mode 100644 index 000000000000..3f056535bbf6 --- /dev/null +++ b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO", + "name": "ELKITON", + "type": "TON", + "symbol": "SNEG", + "decimals": 9, + "status": "active", + "description": "The ecosystem of the Christmas Tree", + "explorer": "https://tonscan.org/address/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO", + "id": "EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO", + "website": "https://getgems.io/collection/EQBlZxMOVRhZxqKYmjeaJALBjHGyMReU5L9xSFCB6BjnA_hM" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/logo.png b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/logo.png new file mode 100644 index 000000000000..3d4f06ea31e3 Binary files /dev/null and b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/logo.png differ diff --git a/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/info.json b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/info.json new file mode 100644 index 000000000000..eba0ef30859d --- /dev/null +++ b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728", + "name": "jUSDC", + "type": "TON", + "symbol": "jUSDC", + "decimals": 6, + "description": "USDC transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "status": "active", + "explorer": "https://tonscan.org/address/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728", + "id": "EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728", + "website": "https://bridge.ton.org/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/logo.png b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/logo.png new file mode 100644 index 000000000000..daa81b4a3a3c Binary files /dev/null and b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/logo.png differ diff --git a/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/info.json b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/info.json new file mode 100644 index 000000000000..427c080c0891 --- /dev/null +++ b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp", + "name": "TonexCoin", + "type": "TON", + "symbol": "TNX", + "decimals": 9, + "description": "A tool to create the future", + "status": "active", + "explorer": "https://tonscan.org/address/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp", + "id": "EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp", + "website": "https://tonex.app/" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/logo.png b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/logo.png new file mode 100644 index 000000000000..440231cc26cc Binary files /dev/null and b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/logo.png differ diff --git a/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/info.json b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/info.json new file mode 100644 index 000000000000..b9ec1eba0ca1 --- /dev/null +++ b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr", + "name": "FANTIK", + "type": "TON", + "symbol": "FANT", + "decimals": 9, + "description": "The candy wrapper", + "status": "active", + "explorer": "https://tonscan.org/address/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr", + "id": "EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr", + "website": "https://olbanec.shop", + "links": [ + { + "name": "telegram", + "url": "https://t.me/olbania_memeland" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/logo.png b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/logo.png new file mode 100644 index 000000000000..13940d49f4a1 Binary files /dev/null and b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/logo.png differ diff --git a/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/info.json b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/info.json new file mode 100644 index 000000000000..67e9ac5e4b6d --- /dev/null +++ b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B", + "name": "DHD Coin", + "type": "TON", + "symbol": "DHD", + "decimals": 9, + "description": "Low fee dick-to-dick electronic cash alternative to Toncoin", + "status": "active", + "explorer": "https://tonscan.org/address/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B", + "id": "EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B", + "website": "http://www.dhdgame.ru/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WayofDHD" + }, + { + "name": "telegram_news", + "url": "https://t.me/CoinDHD" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/logo.png b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/logo.png new file mode 100644 index 000000000000..d40a01d666b8 Binary files /dev/null and b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/logo.png differ diff --git a/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/info.json b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/info.json new file mode 100644 index 000000000000..beed98f3fa8f --- /dev/null +++ b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu", + "name": "Orbit Bridge Ton MOOI", + "type": "TON", + "symbol": "oMOOI", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu", + "id": "EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/logo.png b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/logo.png new file mode 100644 index 000000000000..0e377dafdec0 Binary files /dev/null and b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/logo.png differ diff --git a/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/info.json b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/info.json new file mode 100644 index 000000000000..f29e1f86d8ed --- /dev/null +++ b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc", + "name": "Orbit Bridge Ton GemHUB", + "type": "TON", + "symbol": "oGHUB", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc", + "id": "EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/logo.png b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/logo.png new file mode 100644 index 000000000000..fbf97a9b6100 Binary files /dev/null and b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/logo.png differ diff --git a/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/info.json b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/info.json new file mode 100644 index 000000000000..21f6dfb71080 --- /dev/null +++ b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP", + "name": "Orbit Bridge Ton Kai Token", + "type": "TON", + "symbol": "KAI", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP", + "id": "EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/logo.png b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/logo.png new file mode 100644 index 000000000000..f8cda8555b24 Binary files /dev/null and b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/logo.png differ diff --git a/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/info.json b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/info.json new file mode 100644 index 000000000000..d37d6c946ee0 --- /dev/null +++ b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u", + "name": "FRAGMENT", + "type": "TON", + "symbol": "FRG", + "decimals": 9, + "description": "This token gives you the opportunity to be a member of Fragment Chat! @fragmentChat (https://t.me/fragmentChat)", + "status": "active", + "explorer": "https://tonscan.org/address/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u", + "id": "EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u", + "website": "https://ton.app/chats/frgchat", + "links": [ + { + "name": "telegram", + "url": "https://t.me/fragmentChat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/logo.png b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/logo.png new file mode 100644 index 000000000000..8bab713c9a02 Binary files /dev/null and b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/logo.png differ diff --git a/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/info.json b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/info.json new file mode 100644 index 000000000000..6b63a2d53ecf --- /dev/null +++ b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf", + "name": "MEGA", + "type": "TON", + "symbol": "MEGA", + "decimals": 9, + "description": "Megaton Finance Token", + "status": "active", + "explorer": "https://tonscan.org/address/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf", + "id": "EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf", + "website": "https://megaton.fi/", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/logo.png b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/logo.png new file mode 100644 index 000000000000..3cf611283b0c Binary files /dev/null and b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/logo.png differ diff --git a/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/info.json b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/info.json new file mode 100644 index 000000000000..c410b292d4c8 --- /dev/null +++ b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE", + "name": "HEDGE coin", + "type": "TON", + "symbol": "HEDGE", + "decimals": 9, + "description": "The spirit of wall-street hedgehogs on a legendary blockchain", + "status": "active", + "explorer": "https://tonscan.org/address/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE", + "id": "EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE", + "website": "https://t.me/tonhedgecoin" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/logo.png b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/logo.png new file mode 100644 index 000000000000..a0ebb65efe14 Binary files /dev/null and b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/logo.png differ diff --git a/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/info.json b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/info.json new file mode 100644 index 000000000000..90e0efaf9c83 --- /dev/null +++ b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA", + "name": "Grabscape game token", + "type": "TON", + "symbol": "GRBS", + "decimals": 9, + "description": "The token was created for the game mechanics of the universe of the web3 Grabscape project", + "status": "active", + "explorer": "https://tonscan.org/address/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA", + "id": "EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA", + "website": "https://grabscape.io/" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/logo.png b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/logo.png new file mode 100644 index 000000000000..962ff40608b1 Binary files /dev/null and b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/logo.png differ diff --git a/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/info.json b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/info.json new file mode 100644 index 000000000000..2b432fd62b97 --- /dev/null +++ b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9", + "name": "Orbit Bridge Ton apM Coin", + "type": "TON", + "symbol": "oAPM", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9", + "id": "EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/logo.png b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/logo.png new file mode 100644 index 000000000000..2c922532532f Binary files /dev/null and b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/logo.png differ diff --git a/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/info.json b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/info.json new file mode 100644 index 000000000000..003b6957a07c --- /dev/null +++ b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/info.json @@ -0,0 +1,26 @@ +{ + "address": "EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI", + "name": "Lavandos", + "type": "TON", + "symbol": "LAVE", + "decimals": 9, + "description": "This is a universal token for use in all areas of the decentralized Internet in the TON blockchain, web3, Telegram channels, TON sites, Tonkeeper. Issue of 4.6 billion coins. Telegram channels: @lave_eng, @lavetoken, @lavefoundation, @lave_esp, www.lavetoken.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI", + "id": "EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI", + "website": "https://t.me/lavetoken", + "links": [ + { + "name": "telegram", + "url": "https://t.me/laveteam" + }, + { + "name": "telegram_news", + "url": "https://t.me/lavefoundation" + }, + { + "name": "twitter", + "url": "https://twitter.com/lave_token" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/logo.png b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/logo.png new file mode 100644 index 000000000000..7ae24f3f879d Binary files /dev/null and b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/logo.png differ diff --git a/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/info.json b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/info.json new file mode 100644 index 000000000000..b785402df406 --- /dev/null +++ b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/info.json @@ -0,0 +1,25 @@ +{ + "address": "EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj", + "name": "Kote Coin", + "type": "TON", + "symbol": "KOTE", + "decimals": 9, + "description": "Kote Coin. It's the only one.", + "status": "active", + "explorer": "https://tonscan.org/address/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj", + "id": "EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj", + "website": "https://kotecoin.com/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/KoteCoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/KoteCoinRU" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/logo.png b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/logo.png new file mode 100644 index 000000000000..d7f49e3ceb09 Binary files /dev/null and b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/logo.png differ diff --git a/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/info.json b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/info.json new file mode 100644 index 000000000000..194ea6e736de --- /dev/null +++ b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/info.json @@ -0,0 +1,29 @@ +{ + "address": "EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE", + "name": "Scaleton", + "type": "TON", + "symbol": "SCALE", + "decimals": 9, + "description": "SCALE is a utility token that will be used to support all independent developers.", + "status": "active", + "explorer": "https://tonscan.org/address/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE", + "id": "EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE", + "website": "https://scaleton.io", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Scaleton" + }, + { + "name": "twitter", + "url": "https://twitter.com/ScaletonCo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/scaleton/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/logo.png b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/logo.png new file mode 100644 index 000000000000..31e775994454 Binary files /dev/null and b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/logo.png differ diff --git a/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/info.json b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/info.json new file mode 100644 index 000000000000..3334829e23f2 --- /dev/null +++ b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX", + "name": "Orbit Bridge Ton Matic Token", + "type": "TON", + "symbol": "oMATIC", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX", + "id": "EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/logo.png b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/logo.png new file mode 100644 index 000000000000..40cdc6a041b1 Binary files /dev/null and b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/logo.png differ diff --git a/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/info.json b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/info.json new file mode 100644 index 000000000000..9c7d0383a8b5 --- /dev/null +++ b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J", + "name": "Wallet Exchanger", + "type": "TON", + "symbol": "WEX", + "decimals": 9, + "description": "Crypto exchanger token Wallet Exchanger, based on the blockchain The Open Network", + "status": "active", + "explorer": "https://tonscan.org/address/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J", + "id": "EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J", + "website": "https://t.me/WalletExplorerBot", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WalletExplorerNews" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/logo.png b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/logo.png new file mode 100644 index 000000000000..2530203d0ec9 Binary files /dev/null and b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/logo.png differ diff --git a/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/info.json b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/info.json new file mode 100644 index 000000000000..29ef43d750f9 --- /dev/null +++ b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA", + "name": "jUSDT", + "type": "TON", + "symbol": "jUSDT", + "decimals": 6, + "description": "USDT transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0xdAC17F958D2ee523a2206206994597C13D831ec7", + "status": "active", + "explorer": "https://tonscan.org/address/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA", + "id": "EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA", + "website": "https://bridge.ton.org/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/logo.png b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/logo.png new file mode 100644 index 000000000000..d527902c3f22 Binary files /dev/null and b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/logo.png differ diff --git a/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/info.json b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/info.json new file mode 100644 index 000000000000..507c52e37e7f --- /dev/null +++ b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/info.json @@ -0,0 +1,30 @@ +{ + "address": "EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ", + "name": "KINGYTON", + "type": "TON", + "symbol": "KINGY", + "decimals": 9, + "description": "Is an ecosystem token in the TON blockchain with a large Telegram community.", + "status": "active", + "explorer": "https://tonscan.org/address/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ", + "id": "EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ", + "website": "https://kingy.wtf", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kingyton/" + }, + { + "name": "telegram", + "url": "https://t.me/investkingyru" + }, + { + "name": "telegram_news", + "url": "https://t.me/investkingyru_en" + }, + { + "name": "twitter", + "url": "https://twitter.com/IKingyru" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/logo.png b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/logo.png new file mode 100644 index 000000000000..439a80819c15 Binary files /dev/null and b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/logo.png differ diff --git a/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/info.json b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/info.json new file mode 100644 index 000000000000..054d1575695f --- /dev/null +++ b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY", + "name": "ExCoin", + "type": "TON", + "symbol": "EXC", + "decimals": 0, + "description": "EXC is a financial service token in EXTON", + "status": "active", + "explorer": "https://tonscan.org/address/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY", + "id": "EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY", + "website": "https://t.me/exc_coin", + "links": [ + { + "name": "telegram", + "url": "https://t.me/EXTON_SWAP_BOT" + }, + { + "name": "telegram_news", + "url": "https://t.me/yakovlev_serj" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/logo.png b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/logo.png new file mode 100644 index 000000000000..1dd358e16a02 Binary files /dev/null and b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/logo.png differ diff --git a/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/info.json b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/info.json new file mode 100644 index 000000000000..69a68a4ab448 --- /dev/null +++ b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4", + "name": "Orbit Bridge Ton USD Coin", + "type": "TON", + "symbol": "oUSDC", + "decimals": 6, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4", + "id": "EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/logo.png b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/logo.png new file mode 100644 index 000000000000..956f9aa7a68a Binary files /dev/null and b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/logo.png differ diff --git a/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/info.json b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/info.json new file mode 100644 index 000000000000..6cc8895b727d --- /dev/null +++ b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC", + "name": "Tenere", + "type": "TON", + "symbol": "Tnr", + "decimals": 9, + "description": "Audiatur et altera pars. Universal Altcoin on Ton. @teneretoken . chat: @tenerechat", + "status": "active", + "explorer": "https://tonscan.org/address/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC", + "id": "EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC", + "website": "https://t.me/teneretoken", + "links": [ + { + "name": "telegram", + "url": "https://t.me/tenerechat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/logo.png b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/logo.png new file mode 100644 index 000000000000..462c3ec6762b Binary files /dev/null and b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/logo.png differ diff --git a/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/info.json b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/info.json new file mode 100644 index 000000000000..4724fdfcbbfc --- /dev/null +++ b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz", + "name": "Find & Check", + "type": "TON", + "symbol": "FCK", + "decimals": 15, + "description": "The cornerstone of the Find & Check initiative within the TON ecosystem. Serving as the fuel of our unique set of analytical tools, FCK Token empowers the TON network users, catalyzes our initiatives, and opens up new possibilities for interaction with the blockchain. @FCKTokens, www.fck.dev ", + "status": "active", + "explorer": "https://tonscan.org/address/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz", + "id": "EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz", + "website": "https://fck.dev", + "links": [ + { + "name": "telegram", + "url": "https://t.me/FCKTokens" + }, + { + "name": "twitter", + "url": "https://twitter.com/FCKFoundation" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/logo.png b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/logo.png new file mode 100644 index 000000000000..52234341752c Binary files /dev/null and b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/logo.png differ diff --git a/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/info.json b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/info.json new file mode 100644 index 000000000000..f125d98d723f --- /dev/null +++ b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw", + "name": "Mars", + "type": "TON", + "symbol": "MARS", + "decimals": 9, + "description": "Mars Coin. Game TONPlanets.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw", + "id": "EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw", + "website": "https://tonplanets.com", + "links": [ + { + "name": "telegram", + "url": "https://t.me/TONPlanets" + }, + { + "name": "telegram_news", + "url": "https://t.me/TONPlanetsBot" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/logo.png b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/logo.png new file mode 100644 index 000000000000..e967fb23f112 Binary files /dev/null and b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/logo.png differ diff --git a/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/info.json b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/info.json new file mode 100644 index 000000000000..5cf7e1af9f0f --- /dev/null +++ b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi", + "name": "Orbit Bridge Ton USD Tether", + "type": "TON", + "symbol": "oUSDT", + "decimals": 6, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi", + "id": "EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/logo.png b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/logo.png new file mode 100644 index 000000000000..bb55902a38de Binary files /dev/null and b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/logo.png differ diff --git a/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/info.json b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/info.json new file mode 100644 index 000000000000..030887cdb14f --- /dev/null +++ b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C", + "name": "Wrapped TON", + "type": "TON", + "symbol": "WTON", + "decimals": 9, + "description": "Wrapped TON Coin", + "status": "active", + "explorer": "https://tonscan.org/address/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C", + "id": "EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C", + "website": "https://megaton.fi/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/logo.png b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/logo.png new file mode 100644 index 000000000000..f70cefde9e2c Binary files /dev/null and b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/logo.png differ diff --git a/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/info.json b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/info.json new file mode 100644 index 000000000000..f7b9a2607797 --- /dev/null +++ b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV", + "name": "Ambra", + "type": "TON", + "symbol": "AMBR", + "decimals": 9, + "description": "The Whales Club Token", + "status": "active", + "explorer": "https://tonscan.org/address/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV", + "id": "EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV", + "website": "https://tonwhales.com/", + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/logo.png b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/logo.png new file mode 100644 index 000000000000..176ee6a51b7d Binary files /dev/null and b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/logo.png differ diff --git a/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/info.json b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/info.json new file mode 100644 index 000000000000..4ba4611921f3 --- /dev/null +++ b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5", + "name": "Orbit Bridge Ton Meshswap Protocol", + "type": "TON", + "symbol": "oMESH", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5", + "id": "EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/logo.png b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/logo.png new file mode 100644 index 000000000000..38699eab4521 Binary files /dev/null and b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/logo.png differ diff --git a/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/info.json b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/info.json new file mode 100644 index 000000000000..f3cc0d96323a --- /dev/null +++ b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ", + "name": "Orbit Bridge Ton WEMIX", + "type": "TON", + "symbol": "oWEMIX", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ", + "id": "EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/logo.png b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/logo.png new file mode 100644 index 000000000000..b076f9345038 Binary files /dev/null and b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/logo.png differ diff --git a/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/info.json b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/info.json new file mode 100644 index 000000000000..43ef2ed98ccd --- /dev/null +++ b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/info.json @@ -0,0 +1,11 @@ +{ + "address": "EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP", + "name": "Cock Fights Token", + "type": "TON", + "symbol": "CFT", + "decimals": 9, + "description": "Cock Fights Game Token", + "status": "active", + "explorer": "https://tonscan.org/address/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP", + "id": "EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/logo.png b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/logo.png new file mode 100644 index 000000000000..b06b455fcc7e Binary files /dev/null and b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/logo.png differ diff --git a/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/info.json b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/info.json new file mode 100644 index 000000000000..05983fec4f57 --- /dev/null +++ b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR", + "name": "Orbit Bridge Ton Azit", + "type": "TON", + "symbol": "oAZIT", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR", + "id": "EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/logo.png b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/logo.png new file mode 100644 index 000000000000..84ee028f1ae5 Binary files /dev/null and b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/logo.png differ diff --git a/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/info.json b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/info.json new file mode 100644 index 000000000000..12ba55af5117 --- /dev/null +++ b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI", + "name": "Crumb Coin", + "type": "TON", + "symbol": "CRUMB", + "decimals": 9, + "description": "Crumb Coin (CRUMB) is a token used in the BRAD x Totkit ecosystem", + "status": "active", + "explorer": "https://tonscan.org/address/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI", + "id": "EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI", + "website": "https://tonbrad.com", + "links": [ + { + "name": "telegram", + "url": "https://t.me/brad_nft_ton" + }, + { + "name": "telegram_news", + "url": "https://t.me/totkitnews" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/logo.png b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/logo.png new file mode 100644 index 000000000000..f16bd0ec5cc8 Binary files /dev/null and b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/logo.png differ diff --git a/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/info.json b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/info.json new file mode 100644 index 000000000000..5740fcc3c46f --- /dev/null +++ b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/info.json @@ -0,0 +1,21 @@ +{ + "address": "EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw", + "name": "Huebel Bolt", + "type": "TON", + "symbol": "BOLT", + "decimals": 9, + "description": "Official token of the Huebel Company", + "status": "active", + "explorer": "https://tonscan.org/address/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw", + "id": "EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw", + "website": "https://huebel.art/", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/huebel-bolt/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/logo.png b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/logo.png new file mode 100644 index 000000000000..a0fe8fe2c7a1 Binary files /dev/null and b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/logo.png differ diff --git a/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/info.json b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/info.json new file mode 100644 index 000000000000..a64cf6ddddc0 --- /dev/null +++ b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl", + "name": "Pioneer", + "type": "TON", + "symbol": "PIO", + "decimals": 9, + "description": "This jetton was given to the first people who arrived on Mars. Game TONPlanets.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl", + "id": "EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl", + "website": "https://tonplanets.com", + "links": [ + { + "name": "telegram", + "url": "https://t.me/TONPlanets" + }, + { + "name": "telegram_news", + "url": "https://t.me/TONPlanetsBot" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/logo.png b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/logo.png new file mode 100644 index 000000000000..e18260b4afd1 Binary files /dev/null and b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/logo.png differ diff --git a/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/info.json b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/info.json new file mode 100644 index 000000000000..37c4f16b6af7 --- /dev/null +++ b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh", + "name": "Orbit Bridge Ton Klaymeta Token", + "type": "TON", + "symbol": "META", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh", + "id": "EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/logo.png b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/logo.png new file mode 100644 index 000000000000..e9a5e0b99256 Binary files /dev/null and b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/logo.png differ diff --git a/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/info.json b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/info.json new file mode 100644 index 000000000000..9c936b82bc40 --- /dev/null +++ b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo", + "name": "Red Coin", + "type": "TON", + "symbol": "REDC", + "decimals": 9, + "description": "Red company Coin on the Legendary Blockchain.", + "status": "active", + "explorer": "https://tonscan.org/address/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo", + "id": "EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo", + "website": "https://redcompany.team/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/RedList_NFT" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/logo.png b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/logo.png new file mode 100644 index 000000000000..9b526ddf9b30 Binary files /dev/null and b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/logo.png differ diff --git a/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/info.json b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/info.json new file mode 100644 index 000000000000..3b29d5c9cbc4 --- /dev/null +++ b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/info.json @@ -0,0 +1,14 @@ +{ + "address": "EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD", + "name": "Orbit Bridge Ton Orbit Chain", + "type": "TON", + "symbol": "oORC", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD", + "id": "EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/logo.png b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/logo.png new file mode 100644 index 000000000000..55050504d6b5 Binary files /dev/null and b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/logo.png differ diff --git a/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/info.json b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/info.json new file mode 100644 index 000000000000..06572b93f0c3 --- /dev/null +++ b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86", + "name": "Fanzee Token", + "type": "TON", + "symbol": "FNZ", + "decimals": 9, + "description": "fanz.ee is a web3 fan engagement platform designed to help sports and entertainment organisations meaningfully connect with their fans through immersive gamification experiences", + "status": "active", + "explorer": "https://tonscan.org/address/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86", + "id": "EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86", + "website": "https://fanz.ee", + "links": [ + { + "name": "telegram", + "url": "https://t.me/fanzeelabs" + }, + { + "name": "twitter", + "url": "https://twitter.com/fanzeelabs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/logo.png b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/logo.png new file mode 100644 index 000000000000..ba207f79bf5b Binary files /dev/null and b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/logo.png differ diff --git a/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/info.json b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/info.json new file mode 100644 index 000000000000..608949465fa3 --- /dev/null +++ b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/info.json @@ -0,0 +1,11 @@ +{ + "address": "EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv", + "name": "Pterodactyls", + "type": "TON", + "symbol": "PTERO", + "decimals": 9, + "description": "The best pterodactyls on the TON network", + "status": "active", + "explorer": "https://tonscan.org/address/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv", + "id": "EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/logo.png b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/logo.png new file mode 100644 index 000000000000..1e8911af2fdc Binary files /dev/null and b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/logo.png differ diff --git a/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/info.json b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/info.json new file mode 100644 index 000000000000..09a066fd09dd --- /dev/null +++ b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR", + "name": "Orbit Bridge Ton Klay", + "type": "TON", + "symbol": "oKLAY", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR", + "id": "EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/logo.png b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/logo.png new file mode 100644 index 000000000000..4ec6c0bb9b93 Binary files /dev/null and b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/logo.png differ diff --git a/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/info.json b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/info.json new file mode 100644 index 000000000000..a858106e105f --- /dev/null +++ b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5", + "name": "jWBTC", + "type": "TON", + "symbol": "jWBTC", + "decimals": 8, + "description": "WBTC transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599.", + "status": "active", + "explorer": "https://tonscan.org/address/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5", + "id": "EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5", + "website": "https://bridge.ton.org/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/logo.png b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/logo.png new file mode 100644 index 000000000000..76b1167d5f19 Binary files /dev/null and b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/logo.png differ diff --git a/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/info.json b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/info.json new file mode 100644 index 000000000000..220c39538067 --- /dev/null +++ b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B", + "name": "jDAI", + "type": "TON", + "symbol": "jDAI", + "decimals": 18, + "description": "DAI transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0x6B175474E89094C44Da98b954EedeAC495271d0F", + "status": "active", + "explorer": "https://tonscan.org/address/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B", + "id": "EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B", + "website": "https://bridge.ton.org/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/logo.png b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/logo.png new file mode 100644 index 000000000000..979613ab4164 Binary files /dev/null and b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/logo.png differ diff --git a/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/info.json b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/info.json new file mode 100644 index 000000000000..532f80cb6571 --- /dev/null +++ b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/info.json @@ -0,0 +1,11 @@ +{ + "address": "EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a", + "name": "Siberian TON", + "type": "TON", + "symbol": "SIBT", + "decimals": 9, + "description": "Private peer to peer jetton", + "status": "active", + "explorer": "https://tonscan.org/address/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a", + "id": "EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/logo.png b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/logo.png new file mode 100644 index 000000000000..f4dc20489149 Binary files /dev/null and b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/logo.png differ diff --git a/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/info.json b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/info.json new file mode 100644 index 000000000000..d89108c8bf12 --- /dev/null +++ b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX", + "name": "Orbit Bridge Ton WEMIX$", + "type": "TON", + "symbol": "oWEMIX$", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX", + "id": "EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/logo.png b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/logo.png new file mode 100644 index 000000000000..b81c0324f915 Binary files /dev/null and b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/logo.png differ diff --git a/blockchains/ton/info/info.json b/blockchains/ton/info/info.json index e61957ba04d8..82a1c1ae03d3 100644 --- a/blockchains/ton/info/info.json +++ b/blockchains/ton/info/info.json @@ -18,14 +18,31 @@ }, { "name": "telegram", - "url": "https://t.me/tonblockchain" + "url": "https://t.me/toncoin" }, { "name": "whitepaper", "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" } - ], - "tags": [ - "nft" ] } 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/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png b/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png index 3146ee52ebbb..b6f150d8a7d4 100644 Binary files a/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png and b/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png differ diff --git a/blockchains/tron/assets/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/tron/validators/assets/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png b/blockchains/tron/validators/assets/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png new file mode 100644 index 000000000000..f5f3ada9451c Binary files /dev/null and b/blockchains/tron/validators/assets/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png differ diff --git a/blockchains/tron/validators/list.json b/blockchains/tron/validators/list.json index db2436759762..ba10a31aaa24 100644 --- a/blockchains/tron/validators/list.json +++ b/blockchains/tron/validators/list.json @@ -1,4 +1,13 @@ [ + { + "id": "TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com", + "payout": { + "commission": 100 + } + }, { "id": "TLyqzVGLV1srkB7dToTAEqgDSfPtXRJZYH", "name": "Binance", diff --git a/blockchains/umee/info/info.json b/blockchains/umee/info/info.json 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/umee/validators/assets/umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj/logo.png b/blockchains/umee/validators/assets/umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj/logo.png new file mode 100644 index 000000000000..eaf66cb5cbb1 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de/logo.png b/blockchains/umee/validators/assets/umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de/logo.png new file mode 100644 index 000000000000..84f50066eb01 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1cv2qlz78j5d8fs75lxnystu2lsprvt64yrgfap/logo.png b/blockchains/umee/validators/assets/umeevaloper1cv2qlz78j5d8fs75lxnystu2lsprvt64yrgfap/logo.png new file mode 100644 index 000000000000..e11781707123 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1cv2qlz78j5d8fs75lxnystu2lsprvt64yrgfap/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf/logo.png b/blockchains/umee/validators/assets/umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf/logo.png new file mode 100644 index 000000000000..029163721d79 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0/logo.png b/blockchains/umee/validators/assets/umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0/logo.png new file mode 100644 index 000000000000..f8a4c666adc9 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj/logo.png b/blockchains/umee/validators/assets/umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj/logo.png new file mode 100644 index 000000000000..6e18b1ce2908 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf/logo.png b/blockchains/umee/validators/assets/umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf/logo.png new file mode 100644 index 000000000000..0888af01c5da Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2/logo.png b/blockchains/umee/validators/assets/umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2/logo.png new file mode 100644 index 000000000000..cbc90da98348 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2/logo.png differ diff --git a/blockchains/umee/validators/list.json b/blockchains/umee/validators/list.json new file mode 100644 index 000000000000..04ba09fb8101 --- /dev/null +++ b/blockchains/umee/validators/list.json @@ -0,0 +1,50 @@ +[ + { + "id": "umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj", + "name": "Nodes.Guru", + "description": "Guru of non-custodial staking. Professional node running, low fees, best uptime and 24/7 customer support.", + "website": "https://stake.nodes.guru/" + }, + { + "id": "umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de", + "name": "Polychain", + "description": "Polychain is an investment firm committed to exceptional returns for investors through actively managed portfolios of blockchain assets.", + "website": "https://polychain.capital/" + }, + { + "id": "umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0", + "name": "Cosmostation", + "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", + "website": "https://cosmostation.io/" + }, + { + "id": "umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + } +] diff --git a/blockchains/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/zetachain/info/info.json b/blockchains/zetachain/info/info.json new file mode 100644 index 000000000000..0b41c9ca58ec --- /dev/null +++ b/blockchains/zetachain/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "Native ZetaChain", + "website": "https://www.zetachain.com/", + "description": "ZetaChain is the only public, decentralized blockchain and smart contract platform that enables message passing and value transfer between any blockchain. Our omnichain smart contracts give the power of programmability to non-smart contract chains like Bitcoin and Dogecoin. No other blockchain enables fully interoperable smart contracts like we do.", + "explorer": "https://explorer.zetachain.com/cosmos/tx", + "research": "", + "symbol": "ZETA", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/zeta-chain" + }, + { + "name": "twitter", + "url": "https://twitter.com/zetablockchain" + }, + { + "name": "discord", + "url": "https://discord.com/invite/zetachain" + }, + { + "name": "telegram", + "url": "https://t.me/zetachainofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/zetachain/info/logo.png b/blockchains/zetachain/info/logo.png new file mode 100644 index 000000000000..915e0d35c9f8 Binary files /dev/null and b/blockchains/zetachain/info/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1320mmksxqfv97u7qkk98azk4svjne3ktt5kkde/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1320mmksxqfv97u7qkk98azk4svjne3ktt5kkde/logo.png new file mode 100644 index 000000000000..ce95514d75f4 Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1320mmksxqfv97u7qkk98azk4svjne3ktt5kkde/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpf6rc87c/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpf6rc87c/logo.png new file mode 100644 index 000000000000..377f168fdc3a Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpf6rc87c/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1nkgty88qc6q9c24h3xgu5jnseegkdrmm69xuvz/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1nkgty88qc6q9c24h3xgu5jnseegkdrmm69xuvz/logo.png new file mode 100644 index 000000000000..8b0aedecca4f Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1nkgty88qc6q9c24h3xgu5jnseegkdrmm69xuvz/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1t5pgk2fucx3drkynzew9zln5z9r7s3wqyyunv0/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1t5pgk2fucx3drkynzew9zln5z9r7s3wqyyunv0/logo.png new file mode 100644 index 000000000000..e6da57464244 Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1t5pgk2fucx3drkynzew9zln5z9r7s3wqyyunv0/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1txfmxp4d9dc9wqa2f7wvqed9635zajn0hrmz8z/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1txfmxp4d9dc9wqa2f7wvqed9635zajn0hrmz8z/logo.png new file mode 100644 index 000000000000..a8401d2cba5b Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1txfmxp4d9dc9wqa2f7wvqed9635zajn0hrmz8z/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1umtmqrgmc0z7lctqavxu0ljgxryrfeyz3v6qzf/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1umtmqrgmc0z7lctqavxu0ljgxryrfeyz3v6qzf/logo.png new file mode 100644 index 000000000000..ebabff78859b Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1umtmqrgmc0z7lctqavxu0ljgxryrfeyz3v6qzf/logo.png differ diff --git a/blockchains/zetachain/validators/list.json b/blockchains/zetachain/validators/list.json new file mode 100644 index 000000000000..f3490ece12c6 --- /dev/null +++ b/blockchains/zetachain/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "id": "zetavaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpf6rc87c", + "name": "Figment", + "description": "Staking performance is multifaceted, and Figment’s unique “safety over liveness” approach and slashing track record lead the industry.", + "website": "https://figment.io" + }, + { + "id": "zetavaloper1t5pgk2fucx3drkynzew9zln5z9r7s3wqyyunv0", + "name": "Blockdaemon", + "description": "Blockdaemon is the leading provider to support the growing market for blockchain services.", + "website": "https://www.blockdaemon.com" + }, + { + "id": "zetavaloper1320mmksxqfv97u7qkk98azk4svjne3ktt5kkde", + "name": "Goldsky", + "description": "Web3's Realtime Data Platform", + "website": "https://goldsky.com" + }, + { + "id": "zetavaloper1nkgty88qc6q9c24h3xgu5jnseegkdrmm69xuvz", + "name": "Stakin", + "description": "Reliable and Secure Staking Services Trusted by Institutions. ISO27001 certified, Cosmos ecosystem contributor, IBC relayer provider. Visit our website to know more about Stakin and for T&Cs.", + "website": "https://stakin.com" + }, + { + "id": "zetavaloper1umtmqrgmc0z7lctqavxu0ljgxryrfeyz3v6qzf", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash.", + "website": "https://polkachu.com" + }, + { + "id": "zetavaloper1txfmxp4d9dc9wqa2f7wvqed9635zajn0hrmz8z", + "name": "DSRV", + "description": "DSRV is an integrated blockchain solutions company with the mission of enriching the crypto ecosystem via stronger connectivity. We strive to be your gateway to a suite of all-comprehensive blockchain services. Everything distributed, served complete.", + "website": "https://dsrvlabs.com" + } +] diff --git a/blockchains/zetaevm/info/info.json b/blockchains/zetaevm/info/info.json new file mode 100644 index 000000000000..7279d68d2e2d --- /dev/null +++ b/blockchains/zetaevm/info/info.json @@ -0,0 +1,29 @@ +{ + "name": "ZetaChain", + "website": "https://www.zetachain.com/", + "description": "ZetaChain is the only public, decentralized blockchain and smart contract platform that enables message passing and value transfer between any blockchain. Our omnichain smart contracts give the power of programmability to non-smart contract chains like Bitcoin and Dogecoin. No other blockchain enables fully interoperable smart contracts like we do.", + "explorer": "https://explorer.zetachain.com/evm/tx", + "research": "", + "symbol": "ZETA", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/zeta-chain" + }, + { + "name": "twitter", + "url": "https://twitter.com/zetablockchain" + }, + { + "name": "discord", + "url": "https://discord.com/invite/zetachain" + }, + { + "name": "telegram", + "url": "https://t.me/zetachainofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/zetaevm/info/logo.png b/blockchains/zetaevm/info/logo.png new file mode 100644 index 000000000000..915e0d35c9f8 Binary files /dev/null and b/blockchains/zetaevm/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..a0f3cfe5870e --- /dev/null +++ b/blockchains/zksync/info/info.json @@ -0,0 +1,22 @@ +{ + "name": "ZkSync Era", + "website": "https://zksync.io/", + "description": "zkSync Era is made to look and feel like Ethereum, but with lower fees.", + "explorer": "https://explorer.zksync.io/", + "research": "https://github.com/zksync-sdk", + "symbol": "ETH", + "rpc_url": "https://zksync2-mainnet.zksync.io", + "type": "coin", + "coin_type": 324, + "decimals": 18, + "status": "active", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zksync" + } + ] +} diff --git a/blockchains/zksync/info/logo.png b/blockchains/zksync/info/logo.png new file mode 100644 index 000000000000..aae19b2c9ef9 Binary files /dev/null and b/blockchains/zksync/info/logo.png differ diff --git a/dapps/across.to.png b/dapps/across.to.png new file mode 100644 index 000000000000..d9474ac78fb4 Binary files /dev/null and b/dapps/across.to.png differ diff --git a/dapps/allbridge.io.png b/dapps/allbridge.io.png new file mode 100644 index 000000000000..036662d105bc Binary files /dev/null and b/dapps/allbridge.io.png differ diff --git a/dapps/angelbattles.com.png b/dapps/angelbattles.com.png old mode 100755 new mode 100644 diff --git a/dapps/app.cryptoder.by.png b/dapps/app.cryptoder.by.png old mode 100755 new mode 100644 diff --git a/dapps/app.cryptoxmas.xyz.png b/dapps/app.cryptoxmas.xyz.png old mode 100755 new mode 100644 diff --git a/dapps/app.cyberconnect.png b/dapps/app.cyberconnect.png new file mode 100644 index 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.neutron.png b/dapps/app.neutron.png new file mode 100644 index 000000000000..c44d91494991 Binary files /dev/null and b/dapps/app.neutron.png differ diff --git a/dapps/app.polygon.zkevm.png b/dapps/app.polygon.zkevm.png new file mode 100644 index 000000000000..e4aaa73298ee Binary files /dev/null and b/dapps/app.polygon.zkevm.png differ diff --git a/dapps/app.satori.finance.png b/dapps/app.satori.finance.png new file mode 100644 index 000000000000..7a866f1ddb9e Binary files /dev/null and b/dapps/app.satori.finance.png differ diff --git a/dapps/app.spaceid.png b/dapps/app.spaceid.png new file mode 100644 index 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/app.zksync.era.png b/dapps/app.zksync.era.png new file mode 100644 index 000000000000..805866006c40 Binary files /dev/null and b/dapps/app.zksync.era.png differ diff --git a/dapps/aptos.pancakeswap.finance.png b/dapps/aptos.pancakeswap.finance.png new file mode 100644 index 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/aura.finance.png b/dapps/aura.finance.png new file mode 100644 index 000000000000..10eef80ba8df Binary files /dev/null and b/dapps/aura.finance.png differ diff --git a/dapps/axelar.network.png b/dapps/axelar.network.png new file mode 100644 index 000000000000..7c2b2efe4588 Binary files /dev/null and b/dapps/axelar.network.png differ diff --git a/dapps/axieinfinity.com.png b/dapps/axieinfinity.com.png old mode 100755 new mode 100644 diff --git a/dapps/betoken.fund.png b/dapps/betoken.fund.png old mode 100755 new mode 100644 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/blockchaincuties.co.png b/dapps/blockchaincuties.co.png old mode 100755 new mode 100644 diff --git a/dapps/bnbchain.org.png b/dapps/bnbchain.org.png new file mode 100644 index 000000000000..7baa6e2bf633 Binary files /dev/null and b/dapps/bnbchain.org.png differ diff --git a/dapps/brain-warp.win4.fun.png b/dapps/brain-warp.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/cbridge.celer.network.png b/dapps/cbridge.celer.network.png new file mode 100644 index 000000000000..d2ce31275724 Binary files /dev/null and b/dapps/cbridge.celer.network.png differ diff --git a/dapps/cdpsaver.com.png b/dapps/cdpsaver.com.png old mode 100755 new mode 100644 diff --git a/dapps/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/chibifighters.io.png b/dapps/chibifighters.io.png old mode 100755 new mode 100644 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/color-craze.win4.fun.png b/dapps/color-craze.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/cryptoder.by.png b/dapps/cryptoder.by.png old mode 100755 new mode 100644 diff --git a/dapps/cryptogs.io.png b/dapps/cryptogs.io.png old mode 100755 new mode 100644 diff --git a/dapps/cryptomines.pro.png b/dapps/cryptomines.pro.png old mode 100755 new mode 100644 diff --git a/dapps/cryptosketches.com.png b/dapps/cryptosketches.com.png old mode 100755 new mode 100644 diff --git a/dapps/cryptostrikers.com.png b/dapps/cryptostrikers.com.png old mode 100755 new mode 100644 diff --git a/dapps/dapp.dragonereum.io.png b/dapps/dapp.dragonereum.io.png old mode 100755 new mode 100644 diff --git a/dapps/ethernauts.co.png b/dapps/ethernauts.co.png old mode 100755 new mode 100644 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/jup.ag.png b/dapps/jup.ag.png new file mode 100644 index 000000000000..bc888141ab20 Binary files /dev/null and b/dapps/jup.ag.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/math-race.win4.fun.png b/dapps/math-race.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/maxbet.pigfarm.io.png b/dapps/maxbet.pigfarm.io.png old mode 100755 new mode 100644 diff --git a/dapps/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/member.iotex.io.png b/dapps/member.iotex.io.png old mode 100755 new mode 100644 diff --git a/dapps/mythereum.io.png b/dapps/mythereum.io.png old mode 100755 new mode 100644 diff --git a/dapps/namebazaar.io.png b/dapps/namebazaar.io.png old mode 100755 new mode 100644 diff --git a/dapps/pantheon.exchange.png b/dapps/pantheon.exchange.png old mode 100755 new mode 100644 diff --git a/dapps/peepeth.com.png b/dapps/peepeth.com.png old mode 100755 new mode 100644 diff --git a/dapps/phi.png b/dapps/phi.png new file mode 100644 index 000000000000..2914ff6fcb5d Binary files /dev/null and b/dapps/phi.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/rango.png b/dapps/rango.png new file mode 100644 index 000000000000..b942d1501ba9 Binary files /dev/null and b/dapps/rango.png differ diff --git a/dapps/saturn.network.png b/dapps/saturn.network.png old mode 100755 new mode 100644 diff --git a/dapps/shiftly.finance.png b/dapps/shiftly.finance.png old mode 100755 new mode 100644 diff --git a/dapps/slots.spin4.fun.png b/dapps/slots.spin4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/space-race.win4.fun.png b/dapps/space-race.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/space-tetris.win4.fun.png b/dapps/space-tetris.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/squidrouter.com.png b/dapps/squidrouter.com.png new file mode 100644 index 000000000000..ec372e6cf585 Binary files /dev/null and b/dapps/squidrouter.com.png differ diff --git a/dapps/staking.thundercore.com.png b/dapps/staking.thundercore.com.png old mode 100755 new mode 100644 diff --git a/dapps/stargate.finance.png b/dapps/stargate.finance.png new file mode 100644 index 000000000000..eb56736d238a Binary files /dev/null and b/dapps/stargate.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/swap.cow.fi.png b/dapps/swap.cow.fi.png new file mode 100644 index 000000000000..018d56d7c050 Binary files /dev/null and b/dapps/swap.cow.fi.png differ diff --git a/dapps/thorchain.org.png b/dapps/thorchain.org.png new file mode 100644 index 000000000000..f53a26c606f9 Binary files /dev/null and b/dapps/thorchain.org.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/tomoswap.com.png b/dapps/tomoswap.com.png old mode 100755 new mode 100644 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/ttroll.ttmobileapps.com.png b/dapps/ttroll.ttmobileapps.com.png old mode 100755 new mode 100644 diff --git a/dapps/tw.1inchpromo.png b/dapps/tw.1inchpromo.png new file mode 100644 index 000000000000..d4e1bcf963c8 Binary files /dev/null and b/dapps/tw.1inchpromo.png differ diff --git a/dapps/tw.arb.giveaway.png b/dapps/tw.arb.giveaway.png new file mode 100644 index 000000000000..b90a82b50a38 Binary files /dev/null and b/dapps/tw.arb.giveaway.png differ diff --git a/dapps/tw.btcgiveaway.png b/dapps/tw.btcgiveaway.png new file mode 100644 index 000000000000..2e6acf0cc5c3 Binary files /dev/null and b/dapps/tw.btcgiveaway.png differ diff --git a/dapps/tw.discover.ethstake.png b/dapps/tw.discover.ethstake.png new file mode 100644 index 000000000000..d41dfd1553a5 Binary files /dev/null and b/dapps/tw.discover.ethstake.png differ diff --git a/dapps/tw.discover.swap.png b/dapps/tw.discover.swap.png new file mode 100644 index 000000000000..360eb48fae04 Binary files /dev/null and b/dapps/tw.discover.swap.png differ diff --git a/dapps/tw.discover.swap_giveaway.png b/dapps/tw.discover.swap_giveaway.png new file mode 100644 index 000000000000..59dba0243479 Binary files /dev/null and b/dapps/tw.discover.swap_giveaway.png differ diff --git a/dapps/tw.newbrandhere.png b/dapps/tw.newbrandhere.png new file mode 100644 index 000000000000..f3448229c818 Binary files /dev/null and b/dapps/tw.newbrandhere.png differ diff --git a/dapps/tw.rebrandpromo.png b/dapps/tw.rebrandpromo.png new file mode 100644 index 000000000000..ab3172cadf3d Binary files /dev/null and b/dapps/tw.rebrandpromo.png differ diff --git a/dapps/tw.secure.assets.png b/dapps/tw.secure.assets.png new file mode 100644 index 000000000000..4b7d5332f074 Binary files /dev/null and b/dapps/tw.secure.assets.png differ diff --git a/dapps/tw.swift.feedback_logo.png b/dapps/tw.swift.feedback_logo.png new file mode 100644 index 000000000000..84363b2d5d89 Binary files /dev/null and b/dapps/tw.swift.feedback_logo.png differ diff --git a/dapps/tw.swift.gas_logo.png b/dapps/tw.swift.gas_logo.png new file mode 100644 index 000000000000..6bb8706cb518 Binary files /dev/null and b/dapps/tw.swift.gas_logo.png differ diff --git a/dapps/tw.swift.passkey_logo.png b/dapps/tw.swift.passkey_logo.png new file mode 100644 index 000000000000..782565b030ff Binary files /dev/null and b/dapps/tw.swift.passkey_logo.png differ diff --git a/dapps/tw.swift.security_logo.png b/dapps/tw.swift.security_logo.png new file mode 100644 index 000000000000..68a7505f7e6d Binary files /dev/null and b/dapps/tw.swift.security_logo.png differ diff --git a/dapps/tw.swift.starte_guide_logo.png b/dapps/tw.swift.starte_guide_logo.png new file mode 100644 index 000000000000..611d3d0f39d9 Binary files /dev/null and b/dapps/tw.swift.starte_guide_logo.png differ diff --git a/dapps/tw.udpromo.png b/dapps/tw.udpromo.png new file mode 100644 index 000000000000..663930754618 Binary files /dev/null and b/dapps/tw.udpromo.png differ diff --git a/dapps/tw_scw_writing_hand.png b/dapps/tw_scw_writing_hand.png new file mode 100644 index 000000000000..6018e040fa29 Binary files /dev/null and b/dapps/tw_scw_writing_hand.png differ diff --git a/dapps/www.circle.com.png b/dapps/www.circle.com.png new file mode 100644 index 000000000000..fcfcccee7321 Binary files /dev/null and b/dapps/www.circle.com.png differ diff --git a/dapps/www.synapseprotocol.com.png b/dapps/www.synapseprotocol.com.png new file mode 100644 index 000000000000..ea35f62701a2 Binary files /dev/null and b/dapps/www.synapseprotocol.com.png differ diff --git a/dapps/zed.run.png b/dapps/zed.run.png old mode 100755 new mode 100644 diff --git a/go.mod b/go.mod index 4b3c8e6df297..62925f229d64 100644 --- a/go.mod +++ b/go.mod @@ -1,35 +1,43 @@ module github.com/trustwallet/assets -go 1.18 +go 1.19 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.7 + github.com/trustwallet/go-libs v0.7.3 + github.com/trustwallet/go-primitives v0.1.18 ) 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..da9852301349 100644 --- a/go.sum +++ b/go.sum @@ -1,42 +1,226 @@ -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/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 +228,358 @@ 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.7 h1:i33k7eD1DFG+0mRFkXhB3qjTJPb87KkBi+4W/QAMvxI= +github.com/trustwallet/assets-go-libs v0.3.7/go.mod h1:4BokTTw6UBPEsyXv8jHmX07bKECLcDbzX8YnIBNrCg8= +github.com/trustwallet/go-libs v0.7.3 h1:X5KTj2/582Iv/3Pbm9AKPABBlwGE0tLGbQir66jD6U0= +github.com/trustwallet/go-libs v0.7.3/go.mod h1:5TQECBJo2ZUhGvB4pTKtyYeclGhzlYooVv/EufU4Axk= +github.com/trustwallet/go-primitives v0.1.8 h1:WjZ80+nJW93PDkbb8401JBOMgU/jJ7C8y9TrMBysICM= +github.com/trustwallet/go-primitives v0.1.8/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.12-0.20231205173723-b19b6694d765 h1:MA/DPJJz2X9o5qlB3cFQFixcMCsAv8Jng2wNOayiyJ0= +github.com/trustwallet/go-primitives v0.1.12-0.20231205173723-b19b6694d765/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.12-0.20231206071933-fb4bd0c05a2a h1:rfN3xznjfhy2M98vLgyJHTo2gXU2N4UBiNaLhkjCObo= +github.com/trustwallet/go-primitives v0.1.12-0.20231206071933-fb4bd0c05a2a/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.12-0.20231206072309-6db95197a341 h1:93l81vW2iNvuJbTXuA3YUUdlimQ/YPMYWSWm3Rjk0rs= +github.com/trustwallet/go-primitives v0.1.12-0.20231206072309-6db95197a341/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.12-0.20231206072940-1b46bb0a7643 h1:JWue5tpVirh1ifLagruhqHVdeR7u1WcTd05Q6ailmns= +github.com/trustwallet/go-primitives v0.1.12-0.20231206072940-1b46bb0a7643/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.12 h1:5qgmAIdHKpE/bWfxy6ChOyD7oO9g7M/coR6FNvJ9fAc= +github.com/trustwallet/go-primitives v0.1.12/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.13-0.20231211164812-c3b990aaab77 h1:w5gjOoVT9KdFvHxUMVvcLNC1g6gqdIhAsHmtA8aAYLY= +github.com/trustwallet/go-primitives v0.1.13-0.20231211164812-c3b990aaab77/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.13 h1:EexDb15ciCDPAS7mPtxWaP1AGbGb04JnlH8SYhelHGk= +github.com/trustwallet/go-primitives v0.1.13/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.14-0.20231222091413-3a6249d416a7 h1:9lW8d4rSqWhqdNr14qfuEtyhJImM7yxp9k0igUvpTws= +github.com/trustwallet/go-primitives v0.1.14-0.20231222091413-3a6249d416a7/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.14 h1:9bm0mYOLwu8hANivb1p/aV7f34AAENkvtHlyBhvY4Qk= +github.com/trustwallet/go-primitives v0.1.14/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.16-0.20240109124104-7cbe07e453d4 h1:sYKUy4mHbbJesUl0XS0IVXrUEjkAyAfAfif0PCgNQRA= +github.com/trustwallet/go-primitives v0.1.16-0.20240109124104-7cbe07e453d4/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.16 h1:vpHVXlAYYK0o7GpWYadbauY+H4GOJ0bKVp/k6gZbH6I= +github.com/trustwallet/go-primitives v0.1.16/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.17-0.20240112104809-d94379365003 h1:0XkIncqfu2hBCkkhMrVw7hx/lraoyZ+G1BENh+CFtVA= +github.com/trustwallet/go-primitives v0.1.17-0.20240112104809-d94379365003/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.17-0.20240112110133-ea920360531b h1:akbAfXaD987dDl5nbQbCiBSRP65pIWZdg9SNqY/pkfY= +github.com/trustwallet/go-primitives v0.1.17-0.20240112110133-ea920360531b/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.17-0.20240112111413-aca39bd29cc2 h1:3tt6/BPEtZWpQlagvqEoGz9Z53Jx0vrU+uPtxT/lCWg= +github.com/trustwallet/go-primitives v0.1.17-0.20240112111413-aca39bd29cc2/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.17 h1:X0vVRbJZoDcrQJTQ2vi5gubPfXEn43M9mpxkfRg/Fok= +github.com/trustwallet/go-primitives v0.1.17/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.18-0.20240119140343-8fca65d6dd62 h1:Vtcxre3ihqZrPkEFg2nVSRnUavJsR+3A9K1O+2SpcNQ= +github.com/trustwallet/go-primitives v0.1.18-0.20240119140343-8fca65d6dd62/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/trustwallet/go-primitives v0.1.18 h1:T3g3ewbDkXZrbRwgmhaeCAywXD2+1bL75t2+6VU0UFY= +github.com/trustwallet/go-primitives v0.1.18/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= +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/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/config/validators.go b/internal/config/validators.go index 6f1eb6268f1f..28078256f09f 100644 --- a/internal/config/validators.go +++ b/internal/config/validators.go @@ -3,6 +3,7 @@ package config type RootFolder struct { AllowedFiles []string `mapstructure:"allowed_files,omitempty"` SkipFiles []string `mapstructure:"skip_files,omitempty"` + SkipDirs []string `mapstructure:"skip_dirs,omitempty"` } type ChainFolder struct { diff --git a/internal/info/asset.go b/internal/info/asset.go new file mode 100644 index 000000000000..8dffd8a7bac6 --- /dev/null +++ b/internal/info/asset.go @@ -0,0 +1,56 @@ +package info + +import ( + "github.com/trustwallet/assets-go-libs/validation" + "github.com/trustwallet/go-primitives/coin" +) + +func ValidateAsset(a AssetModel, chain coin.Coin, addr string) error { + if err := ValidateAssetRequiredKeys(a); err != nil { + return err + } + + // All fields validated for nil and can be safety used. + compErr := validation.NewErrComposite() + if err := ValidateAssetType(*a.Type, chain); err != nil { + compErr.Append(err) + } + + if err := ValidateAssetID(*a.ID, addr); err != nil { + compErr.Append(err) + } + + if err := ValidateDecimals(*a.Decimals); err != nil { + compErr.Append(err) + } + + if err := ValidateAssetDecimalsAccordingType(*a.Type, *a.Decimals); err != nil { + compErr.Append(err) + } + + if err := ValidateStatus(*a.Status); err != nil { + compErr.Append(err) + } + + if err := ValidateDescription(*a.Description); err != nil { + compErr.Append(err) + } + + if err := ValidateDescriptionWebsite(*a.Description, *a.Website); err != nil { + compErr.Append(err) + } + + if err := ValidateExplorer(*a.Explorer, *a.Name, chain, addr, *a.Type); err != nil { + compErr.Append(err) + } + + if err := ValidateLinks(a.Links); err != nil { + compErr.Append(err) + } + + if compErr.Len() > 0 { + return compErr + } + + return nil +} diff --git a/internal/info/coin.go b/internal/info/coin.go new file mode 100644 index 000000000000..623ea2470dfd --- /dev/null +++ b/internal/info/coin.go @@ -0,0 +1,47 @@ +package info + +import ( + "github.com/trustwallet/assets-go-libs/validation" +) + +func ValidateCoin(c CoinModel, allowedTags []string) error { + if err := ValidateCoinRequiredKeys(c); err != nil { + return err + } + + // All fields validated for nil and can be safety used. + compErr := validation.NewErrComposite() + if err := ValidateCoinType(*c.Type); err != nil { + compErr.Append(err) + } + + if err := ValidateDecimals(*c.Decimals); err != nil { + compErr.Append(err) + } + + if err := ValidateStatus(*c.Status); err != nil { + compErr.Append(err) + } + + if err := ValidateTags(c.Tags, allowedTags); err != nil { + compErr.Append(err) + } + + if err := ValidateDescription(*c.Description); err != nil { + compErr.Append(err) + } + + if err := ValidateDescriptionWebsite(*c.Description, *c.Website); err != nil { + compErr.Append(err) + } + + if err := ValidateLinks(c.Links); err != nil { + compErr.Append(err) + } + + if compErr.Len() > 0 { + return compErr + } + + return nil +} diff --git a/internal/info/external/erc20.go b/internal/info/external/erc20.go new file mode 100644 index 000000000000..adf5981af2bb --- /dev/null +++ b/internal/info/external/erc20.go @@ -0,0 +1,35 @@ +package external + +import ( + "fmt" + "strconv" + + "github.com/trustwallet/assets-go-libs/http" +) + +const ethAPIURL = "https://api.ethplorer.io/getTokenInfo/%s?apiKey=freekey" + +type TokenInfoERC20 struct { + Decimals string `json:"decimals"` + HoldersCount int `json:"holdersCount"` +} + +func GetTokenInfoForERC20(tokenID string) (*TokenInfo, error) { + url := fmt.Sprintf(ethAPIURL, tokenID) + + var result TokenInfoERC20 + err := http.GetHTTPResponse(url, &result) + if err != nil { + return nil, err + } + + decimals, err := strconv.Atoi(result.Decimals) + if err != nil { + return nil, err + } + + return &TokenInfo{ + Decimals: decimals, + HoldersCount: result.HoldersCount, + }, nil +} diff --git a/internal/info/external/external.go b/internal/info/external/external.go new file mode 100644 index 000000000000..7270158843be --- /dev/null +++ b/internal/info/external/external.go @@ -0,0 +1,85 @@ +package external + +import ( + "fmt" + "regexp" + "strconv" + "strings" + + "github.com/trustwallet/assets-go-libs/http" +) + +var ( + holdersRegexp = regexp.MustCompile(`(\d+)\saddresses`) + decimalsRegexp = regexp.MustCompile(`(\d+)\s+<\/div>`) + symbolRegexp = regexp.MustCompile(`(\w+)<\/b>\s 1 { + symbol = match[1] + } + + match = decimalsRegexp.FindStringSubmatch(pageContent) + if len(match) > 1 { + decimals, err = strconv.Atoi(match[1]) + if err != nil { + return nil, err + } + } + + match = holdersRegexp.FindStringSubmatch(pageContent) + if len(match) > 1 { + holders, err = strconv.Atoi(match[1]) + if err != nil { + return nil, err + } + } + + return &TokenInfo{ + Symbol: symbol, + Decimals: decimals, + HoldersCount: holders, + }, nil +} diff --git a/internal/info/external/spl.go b/internal/info/external/spl.go new file mode 100644 index 000000000000..a95addf68e07 --- /dev/null +++ b/internal/info/external/spl.go @@ -0,0 +1,37 @@ +package external + +import ( + "fmt" + + "github.com/trustwallet/assets-go-libs/http" +) + +const splAPIURL = "https://public-api.solscan.io/token/holders?tokenAddress=%s" + +type TokenInfoSPL struct { + Data []Data `json:"data"` + HoldersCount int `json:"total"` +} + +type Data struct { + Decimals int `json:"decimals"` +} + +func GetTokenInfoForSPL(tokenID string) (*TokenInfo, error) { + url := fmt.Sprintf(splAPIURL, tokenID) + + var result TokenInfoSPL + err := http.GetHTTPResponse(url, &result) + if err != nil { + return nil, err + } + + if len(result.Data) == 0 { + return nil, fmt.Errorf("failed to get token info for SPL token") + } + + return &TokenInfo{ + Decimals: result.Data[0].Decimals, + HoldersCount: result.HoldersCount, + }, nil +} diff --git a/internal/info/external/trc10.go b/internal/info/external/trc10.go new file mode 100644 index 000000000000..9a585f8d212b --- /dev/null +++ b/internal/info/external/trc10.go @@ -0,0 +1,38 @@ +package external + +import ( + "errors" + "fmt" + + "github.com/trustwallet/assets-go-libs/http" +) + +const trc10APIURL = "https://apilist.tronscan.io/api/token?id=%s" + +type TRC10TokensResponse struct { + Data []struct { + Symbol string `json:"abbr"` + Decimals int `json:"precision"` + HoldersCount int `json:"nrOfTokenHolders"` + } `json:"data"` +} + +func GetTokenInfoForTRC10(tokenID string) (*TokenInfo, error) { + url := fmt.Sprintf(trc10APIURL, tokenID) + + var res TRC10TokensResponse + err := http.GetHTTPResponse(url, &res) + if err != nil { + return nil, err + } + + if len(res.Data) == 0 { + return nil, errors.New("not found") + } + + return &TokenInfo{ + Symbol: res.Data[0].Symbol, + Decimals: res.Data[0].Decimals, + HoldersCount: res.Data[0].HoldersCount, + }, nil +} diff --git a/internal/info/external/trc20.go b/internal/info/external/trc20.go new file mode 100644 index 000000000000..3f4c228855d7 --- /dev/null +++ b/internal/info/external/trc20.go @@ -0,0 +1,38 @@ +package external + +import ( + "errors" + "fmt" + + "github.com/trustwallet/assets-go-libs/http" +) + +const trc20APIURL = "https://apilist.tronscan.io/api/token_trc20?contract=%s" + +type TRC20TokensResponse struct { + TRC20Tokens []struct { + Symbol string `json:"symbol"` + Decimals int `json:"decimals"` + HoldersCount int `json:"holders_count"` + } `json:"trc20_tokens"` +} + +func GetTokenInfoForTRC20(tokenID string) (*TokenInfo, error) { + url := fmt.Sprintf(trc20APIURL, tokenID) + + var res TRC20TokensResponse + err := http.GetHTTPResponse(url, &res) + if err != nil { + return nil, err + } + + if len(res.TRC20Tokens) == 0 { + return nil, errors.New("not found") + } + + return &TokenInfo{ + Symbol: res.TRC20Tokens[0].Symbol, + Decimals: res.TRC20Tokens[0].Decimals, + HoldersCount: res.TRC20Tokens[0].HoldersCount, + }, nil +} diff --git a/internal/info/fields_validators.go b/internal/info/fields_validators.go new file mode 100644 index 000000000000..0d87b3239e64 --- /dev/null +++ b/internal/info/fields_validators.go @@ -0,0 +1,263 @@ +package info + +import ( + "fmt" + "strings" + + str "github.com/trustwallet/assets-go-libs/strings" + "github.com/trustwallet/assets-go-libs/validation" + "github.com/trustwallet/go-primitives/coin" + "github.com/trustwallet/go-primitives/types" +) + +// Asset info specific validators. + +func ValidateAssetRequiredKeys(a AssetModel) error { + var fields []string + if a.Name != nil && !isEmpty(*a.Name) { + fields = append(fields, "name") + } + if a.Symbol != nil && !isEmpty(*a.Symbol) { + fields = append(fields, "symbol") + } + if a.Type != nil && !isEmpty(*a.Type) { + fields = append(fields, "type") + } + if a.Decimals != nil { + fields = append(fields, "decimals") + } + if a.Description != nil && !isEmpty(*a.Description) { + fields = append(fields, "description") + } + if a.Website != nil { + fields = append(fields, "website") + } + if a.Explorer != nil && !isEmpty(*a.Explorer) { + fields = append(fields, "explorer") + } + if a.Status != nil && !isEmpty(*a.Status) { + fields = append(fields, "status") + } + if a.ID != nil && !isEmpty(*a.ID) { + fields = append(fields, "id") + } + + if len(fields) != len(requiredAssetFields) { + return fmt.Errorf("%w: %s", validation.ErrMissingField, + strings.Join(str.Difference(requiredAssetFields, fields), ", ")) + } + + return nil +} + +func ValidateAssetType(assetType string, chain coin.Coin) error { + chainFromType, err := types.GetChainFromAssetType(assetType) + if err != nil { + return fmt.Errorf("failed to get chain from asset type: %w", err) + } + + if chainFromType != chain { + return fmt.Errorf("%w: asset type field", validation.ErrInvalidField) + } + + if strings.ToUpper(assetType) != assetType { + return fmt.Errorf("%w: asset type should be ALLCAPS", validation.ErrInvalidField) + } + + return nil +} + +func ValidateAssetID(id, address string) error { + if id != address { + if !strings.EqualFold(id, address) { + return fmt.Errorf("%w: invalid id field", validation.ErrInvalidField) + } + + return fmt.Errorf("%w: invalid case for id field", validation.ErrInvalidField) + } + + return nil +} + +func ValidateAssetDecimalsAccordingType(assetType string, decimals int) error { + if assetType == "BEP2" && decimals != 8 { + return fmt.Errorf("%w: invalid decimals field, BEP2 tokens have 8 decimals", validation.ErrInvalidField) + } + + return nil +} + +// CoinModel info specific validators. + +func ValidateCoinRequiredKeys(c CoinModel) error { + var fields []string + if c.Name != nil && !isEmpty(*c.Name) { + fields = append(fields, "name") + } + if c.Symbol != nil && !isEmpty(*c.Symbol) { + fields = append(fields, "symbol") + } + if c.Type != nil && !isEmpty(*c.Type) { + fields = append(fields, "type") + } + if c.Decimals != nil { + fields = append(fields, "decimals") + } + if c.Description != nil && !isEmpty(*c.Description) { + fields = append(fields, "description") + } + if c.Website != nil && !isEmpty(*c.Website) { + fields = append(fields, "website") + } + if c.Explorer != nil && !isEmpty(*c.Explorer) { + fields = append(fields, "explorer") + } + if c.Status != nil && !isEmpty(*c.Status) { + fields = append(fields, "status") + } + + if len(fields) != len(requiredCoinFields) { + return fmt.Errorf("%w: %s", validation.ErrMissingField, + strings.Join(str.Difference(requiredCoinFields, fields), ", ")) + } + + return nil +} + +func ValidateLinks(links []Link) error { + if len(links) < 2 { + return nil + } + + for _, l := range links { + if l.Name == nil || l.URL == nil { + return fmt.Errorf("%w: missing required fields links.url and links.name", validation.ErrMissingField) + } + + if !linkNameAllowed(*l.Name) { + return fmt.Errorf("invalid value for links.name filed, allowed only: %s", + strings.Join(supportedLinkNames(), ", ")) + } + + prefix := allowedLinkKeys[*l.Name] + if prefix != "" { + if !strings.HasPrefix(*l.URL, prefix) { + return fmt.Errorf("invalid value '%s' for %s link url, allowed only with prefix: %s", + *l.URL, *l.Name, prefix) + } + } + + if !strings.HasPrefix(*l.URL, "https://") { + return fmt.Errorf("invalid value for links.url field, allowed only with https:// prefix") + } + + if *l.Name == "medium" { + if !strings.Contains(*l.URL, "medium.com") { + return fmt.Errorf("invalid value for links.url field, should contain medium.com") + } + } + } + + return nil +} + +func ValidateCoinType(assetType string) error { + if assetType != "coin" { + return fmt.Errorf("%w: only \"coin\" type allowed for coin field", validation.ErrInvalidField) + } + + return nil +} + +func ValidateTags(tags, allowedTags []string) error { + for _, t := range tags { + if !str.Contains(t, allowedTags) { + return fmt.Errorf("%w: tag '%s' not allowed", validation.ErrInvalidField, t) + } + } + + return nil +} + +// Both infos can be validated by this validators. + +func ValidateDecimals(decimals int) error { + if decimals > 30 || decimals < 0 { + return fmt.Errorf("%w: decimals field", validation.ErrInvalidField) + } + + return nil +} + +func ValidateStatus(status string) error { + for _, f := range allowedStatusValues { + if f == status { + return nil + } + } + + return fmt.Errorf("%w: allowed status field values: %s", validation.ErrInvalidField, + strings.Join(allowedStatusValues, ", ")) +} + +func ValidateDescription(description string) error { + if len(description) > 600 { + return fmt.Errorf("%w: invalid length for description field", validation.ErrInvalidField) + } + + for _, ch := range whiteSpaceCharacters { + if strings.Contains(description, ch) { + return fmt.Errorf("%w: description contains not allowed characters (new line, double space)", + validation.ErrInvalidField) + } + } + + return nil +} + +func ValidateDescriptionWebsite(description, website string) error { + if description != "-" && website == "" { + return fmt.Errorf("%w: website field", validation.ErrMissingField) + } + + return nil +} + +func ValidateExplorer(explorer, name string, chain coin.Coin, addr, tokenType string) error { + // explorer url is composed with values outside info.json. + if chain == coin.Nativeinjective() { + return nil + } + + explorerExpected, err := coin.GetCoinExploreURL(chain, addr, tokenType) + if err != nil { + explorerExpected = "" + } + + explorerActual := explorer + + if !strings.EqualFold(explorerActual, explorerExpected) { + explorerAlt := explorerURLAlternatives(chain.Handle, name) + if len(explorerAlt) == 0 { + return nil + } + + var matchCount int + + for _, e := range explorerAlt { + if strings.EqualFold(e, explorerActual) { + matchCount++ + } + } + + if matchCount == 0 { + return fmt.Errorf("invalid value for explorer field, %s insted of %s", explorerActual, explorerExpected) + } + } + + return nil +} + +func isEmpty(field string) bool { + return field == "" +} diff --git a/internal/info/model.go b/internal/info/model.go new file mode 100644 index 000000000000..0a5d237e91da --- /dev/null +++ b/internal/info/model.go @@ -0,0 +1,55 @@ +package info + +type ( + CoinModel struct { + Name *string `json:"name,omitempty"` + Website *string `json:"website,omitempty"` + Description *string `json:"description,omitempty"` + Explorer *string `json:"explorer,omitempty"` + Research string `json:"research,omitempty"` + Symbol *string `json:"symbol,omitempty"` + Type *string `json:"type,omitempty"` + Decimals *int `json:"decimals,omitempty"` + Status *string `json:"status,omitempty"` + Tags []string `json:"tags,omitempty"` + Links []Link `json:"links,omitempty"` + } + + AssetModel struct { + Name *string `json:"name,omitempty"` + Symbol *string `json:"symbol,omitempty"` + Type *string `json:"type,omitempty"` + Decimals *int `json:"decimals,omitempty"` + Description *string `json:"description,omitempty"` + Website *string `json:"website,omitempty"` + Explorer *string `json:"explorer,omitempty"` + Research string `json:"research,omitempty"` + Status *string `json:"status,omitempty"` + ID *string `json:"id,omitempty"` + Links []Link `json:"links,omitempty"` + ShortDesc *string `json:"short_desc,omitempty"` + Audit *string `json:"audit,omitempty"` + AuditReport *string `json:"audit_report,omitempty"` + Tags []string `json:"tags,omitempty"` + Code *string `json:"code,omitempty"` + Ticker *string `json:"ticker,omitempty"` + ExplorerEth *string `json:"explorer-ETH,omitempty"` + Address *string `json:"address,omitempty"` + Twitter *string `json:"twitter,omitempty"` + CoinMarketcap *string `json:"coinmarketcap,omitempty"` + DataSource *string `json:"data_source,omitempty"` + } + + Link struct { + Name *string `json:"name,omitempty"` + URL *string `json:"url,omitempty"` + } +) + +func (a *AssetModel) GetStatus() string { + if a.Status == nil { + return "" + } + + return *a.Status +} diff --git a/internal/info/values.go b/internal/info/values.go new file mode 100644 index 000000000000..9463c1082d39 --- /dev/null +++ b/internal/info/values.go @@ -0,0 +1,79 @@ +package info + +import ( + "fmt" + "strings" + + "github.com/trustwallet/go-primitives/coin" +) + +//nolint:gochecknoglobals +var ( + requiredCoinFields = []string{ + "name", "type", "symbol", "decimals", + "description", "website", "explorer", "status", + } + + requiredAssetFields = []string{ + "name", "type", "symbol", "decimals", + "description", "website", "explorer", "status", "id", + } + + allowedStatusValues = []string{"active", "spam", "abandoned"} + + allowedLinkKeys = map[string]string{ + "github": "https://github.com/", + "whitepaper": "", + "twitter": "https://twitter.com/", + "telegram": "https://t.me/", + "telegram_news": "https://t.me/", // Read-only announcement channel. + "medium": "", // URL contains 'medium.com'. + "discord": "https://discord.com/", + "reddit": "https://reddit.com/", + "facebook": "https://facebook.com/", + "youtube": "https://youtube.com/", + "coinmarketcap": "https://coinmarketcap.com/", + "coingecko": "https://coingecko.com/", + "blog": "", // Blog, other than medium. + "forum": "", // Community site. + "docs": "", + "source_code": "", // Other than github. + } + + whiteSpaceCharacters = []string{"\n", " "} +) + +func explorerURLAlternatives(chain, name string) []string { + var altUrls []string + + if name != "" { + nameNorm := strings.ReplaceAll(strings.ReplaceAll(strings.ReplaceAll( + strings.ToLower(name), " ", ""), ")", ""), "(", "") + + if strings.ToLower(chain) == coin.Coins[coin.ETHEREUM].Name { + altUrls = append(altUrls, fmt.Sprintf("https://etherscan.io/token/%s", nameNorm)) + } + + altUrls = append(altUrls, fmt.Sprintf("https://explorer.%s.io", nameNorm)) + altUrls = append(altUrls, fmt.Sprintf("https://scan.%s.io", nameNorm)) + } + + return altUrls +} + +func linkNameAllowed(str string) bool { + if _, exists := allowedLinkKeys[str]; !exists { + return false + } + + return true +} + +func supportedLinkNames() []string { + names := make([]string, 0, len(allowedLinkKeys)) + for k := range allowedLinkKeys { + names = append(names, k) + } + + return names +} diff --git a/internal/manager/manager.go b/internal/manager/manager.go index 1f393c994748..96c91db85ae3 100644 --- a/internal/manager/manager.go +++ b/internal/manager/manager.go @@ -2,6 +2,7 @@ package manager import ( "os" + "strings" "github.com/trustwallet/assets-go-libs/file" "github.com/trustwallet/assets-go-libs/path" @@ -116,6 +117,15 @@ func handleAddTokenList(args []string, tokenlistType path.TokenListType) { } } +func filter[T any](ss []T, test func(T) bool) (ret []T) { + for _, s := range ss { + if test(s) { + ret = append(ret, s) + } + } + return +} + func InitAssetsService() *service.Service { setup() @@ -124,6 +134,15 @@ func InitAssetsService() *service.Service { log.WithError(err).Fatal("Failed to load file structure.") } + paths = filter(paths, func(path string) bool { + for _, dir := range config.Default.ValidatorsSettings.RootFolder.SkipDirs { + if strings.Contains(path, dir) { + return false + } + } + return true + }) + fileService := file.NewService(paths...) validatorsService := processor.NewService(fileService) reportService := report.NewService() diff --git a/internal/processor/fixers.go b/internal/processor/fixers.go index 8c929dd49e4c..88c58f56cb35 100644 --- a/internal/processor/fixers.go +++ b/internal/processor/fixers.go @@ -146,9 +146,12 @@ func (s *Service) FixAssetInfo(f *file.AssetFile) error { expectedTokenType = strings.ToUpper(assetType) } - if chain.ID != f.Chain().ID || !strings.EqualFold(assetType, expectedTokenType) { - assetInfo.Type = &expectedTokenType - isModified = true + // https://github.com/trustwallet/backend/issues/2561 + if chain.ID != coin.CRYPTOORG && chain.ID != coin.CRONOS { + if chain.ID != f.Chain().ID || !strings.EqualFold(assetType, expectedTokenType) { + assetInfo.Type = &expectedTokenType + isModified = true + } } // Fix asset id. diff --git a/internal/processor/validators.go b/internal/processor/validators.go index 0788ddcadafd..61842118c15f 100644 --- a/internal/processor/validators.go +++ b/internal/processor/validators.go @@ -8,10 +8,10 @@ import ( "github.com/trustwallet/assets-go-libs/file" "github.com/trustwallet/assets-go-libs/path" "github.com/trustwallet/assets-go-libs/validation" - "github.com/trustwallet/assets-go-libs/validation/info" "github.com/trustwallet/assets-go-libs/validation/list" "github.com/trustwallet/assets-go-libs/validation/tokenlist" "github.com/trustwallet/assets/internal/config" + "github.com/trustwallet/assets/internal/info" "github.com/trustwallet/go-primitives/coin" ) @@ -206,9 +206,12 @@ func (s *Service) ValidateAssetInfoFile(f *file.AssetFile) error { return err } - err := info.ValidateAsset(assetInfo, f.Chain(), f.Asset()) - if err != nil { - return err + // https://github.com/trustwallet/backend/issues/2561 + if f.Chain() != coin.Cryptoorg() && f.Chain() != coin.Cronos() { + err := info.ValidateAsset(assetInfo, f.Chain(), f.Asset()) + if err != nil { + return err + } } return nil