diff --git a/.github/assets.config.yaml b/.github/assets.config.yaml index d5bd6110a768f..507e7d7670e70 100644 --- a/.github/assets.config.yaml +++ b/.github/assets.config.yaml @@ -43,6 +43,8 @@ validators_settings: - "bin" skip_files: - "node_modules" + skip_dirs: + - ".git" chain_folder: allowed_files: diff --git a/.github/workflows/fix-dryrun.yml b/.github/workflows/fix-dryrun.yml deleted file mode 100644 index a42ef0fbfb59a..0000000000000 --- a/.github/workflows/fix-dryrun.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Fix (Dry run) -on: - pull_request: - branches: [ master ] - -jobs: - fix-dryrun: - runs-on: ubuntu-latest - steps: - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: 1.18 - - - name: Check out code - uses: actions/checkout@v3 - - - name: Run fix - run: make fix - - - name: Show fix result (diff) - run: | - git config core.ignorecase false - git status - git diff diff --git a/.github/workflows/fix.yml b/.github/workflows/fix.yml deleted file mode 100644 index 8dec678a52ed3..0000000000000 --- a/.github/workflows/fix.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: Fix All - -on: - push: - branches: - - '*' - workflow_dispatch: - -jobs: - fix-all: - runs-on: ubuntu-latest - - if: github.repository_owner == 'trustwallet' && github.event.repository.fork == false - - steps: - - name: Checkout (trustwallet repo, secret token) - uses: actions/checkout@v3 - with: - # Use trust-ci fine-grained PAT to checkout and later commit the code - # Do not use for forked repos - token: ${{ secrets.CI_GITHUB_TOKEN }} - ref: ${{ github.ref }} - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: 1.18 - - - name: Run fix - run: make fix - - - name: Show fix result (diff) - run: | - git status - git diff - - - name: Run check - run: make check - - - name: Commit changes - if: success() - uses: stefanzweifel/git-auto-commit-action@v4.16.0 - with: - commit_user_name: trust-ci - commit_user_email: "117647528+trust-ci@users.noreply.github.com" - commit_message: Auto fix all (sanity and consistency) diff --git a/.github/workflows/periodic-update.yml b/.github/workflows/periodic-update.yml deleted file mode 100644 index 5265f72555a32..0000000000000 --- a/.github/workflows/periodic-update.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Periodic External Update -on: - schedule: - # Run twice per day (at 1:00UTC/6pmPST, 13:00UTC/6amPST) - - cron: '0 1,13 * * *' - workflow_dispatch: -jobs: - periodic-auto-update: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - token: ${{ secrets.CI_GITHUB_TOKEN }} - ref: ${{ github.head_ref }} - - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: 1.18 - id: go - - - name: Run update auto - run: make update-auto - - - name: Show update result (diff) - if: success() - run: | - git status - git diff - - - name: Run check - run: make check - - - name: Commit changes - if: success() - uses: stefanzweifel/git-auto-commit-action@v4.16.0 - with: - commit_message: External Updates - commit_user_name: trust-ci - commit_user_email: "117647528+trust-ci@users.noreply.github.com" diff --git a/.github/workflows/upload-s3.yml b/.github/workflows/upload-s3.yml index b12301e96aed9..c6808ec5863da 100644 --- a/.github/workflows/upload-s3.yml +++ b/.github/workflows/upload-s3.yml @@ -5,6 +5,11 @@ on: - master workflow_dispatch: + inputs: + use-size-only: + description: 'Include --size-only flag in aws s3 sync command' + required: false + default: 'true' permissions: id-token: write @@ -28,7 +33,12 @@ jobs: - name: Sync to S3 if: github.repository_owner == 'trustwallet' shell: bash - run: aws s3 sync . s3://$AWS_S3_BUCKET --follow-symlinks --delete --exclude '*' --include 'dapps/*' --include 'blockchains/*' --size-only + run: | + SYNC_OPTIONS="--follow-symlinks --delete --exclude '*' --include 'dapps/*' --include 'blockchains/*'" + if [ "${{ github.event.inputs.use-size-only }}" == "true" ]; then + SYNC_OPTIONS="$SYNC_OPTIONS --size-only" + fi + eval "aws s3 sync . s3://$AWS_S3_BUCKET $SYNC_OPTIONS" env: AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }} @@ -49,4 +59,3 @@ jobs: env: PATHS: ${{ steps.filter.outputs.paths }} DISTRIBUTION: ${{ secrets.AWS_DISTRIBUTION }} - diff --git a/.golangci.yml b/.golangci.yml index 6633927eb2295..e8bdcae7d09e1 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -192,7 +192,6 @@ linters: - deadcode - depguard - dogsled - - dupl - errcheck - exportloopref - exhaustive diff --git a/blockchains/acala/info/info.json b/blockchains/acala/info/info.json new file mode 100644 index 0000000000000..91f5ed7d93bf0 --- /dev/null +++ b/blockchains/acala/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Acala", + "website": "https://acala.network", + "description": "Acala provides backend infrastructure for traditional finance that is trusted by institutions like Coinbase, Figment, and Current.com.", + "explorer": "https://acala.subscan.io", + "symbol": "ACA", + "type": "coin", + "decimals": 12, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/AcalaNetwork/Acala" + }, + { + "name": "twitter", + "url": "https://twitter.com/AcalaNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/acala/info/logo.png b/blockchains/acala/info/logo.png new file mode 100644 index 0000000000000..7b31d8445c133 Binary files /dev/null and b/blockchains/acala/info/logo.png differ diff --git a/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/info.json b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/info.json new file mode 100644 index 0000000000000..92e3febba90a5 --- /dev/null +++ b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/info.json @@ -0,0 +1,36 @@ +{ + "name": "USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://blockscout.acala.network/token/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe", + "type": "ACALAEVM", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/logo.png b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/logo.png new file mode 100644 index 0000000000000..793e015fc9308 Binary files /dev/null and b/blockchains/acalaevm/assets/0x07DF96D1341A7d16Ba1AD431E2c847d978BC2bCe/logo.png differ diff --git a/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/info.json b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/info.json new file mode 100644 index 0000000000000..07cdf7a020244 --- /dev/null +++ b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/info.json @@ -0,0 +1,42 @@ +{ + "name": "Dai Stablecoin", + "website": "http://makerdao.com", + "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", + "explorer": "https://blockscout.acala.network/token/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE", + "research": "https://research.binance.com/en/projects/dai", + "type": "ACALAEVM", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MakerDAO" + }, + { + "name": "reddit", + "url": "https://reddit.com/MakerDAO/" + }, + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-collateral-dai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/logo.png b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/logo.png new file mode 100644 index 0000000000000..b24cc9643d919 Binary files /dev/null and b/blockchains/acalaevm/assets/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE/logo.png differ diff --git a/blockchains/acalaevm/info/info.json b/blockchains/acalaevm/info/info.json new file mode 100644 index 0000000000000..e9452c29cc30f --- /dev/null +++ b/blockchains/acalaevm/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Acala EVM", + "website": "https://acala.network", + "description": "Acala provides backend infrastructure for traditional finance that is trusted by institutions like Coinbase, Figment, and Current.com.", + "explorer": "https://blockscout.acala.network", + "symbol": "ACA", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/AcalaNetwork/Acala" + }, + { + "name": "twitter", + "url": "https://twitter.com/AcalaNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/acalaevm/info/logo.png b/blockchains/acalaevm/info/logo.png new file mode 100644 index 0000000000000..7b31d8445c133 Binary files /dev/null and b/blockchains/acalaevm/info/logo.png differ diff --git a/blockchains/agoric/info/info.json b/blockchains/agoric/info/info.json index d393a167f5410..23bb06049441c 100644 --- a/blockchains/agoric/info/info.json +++ b/blockchains/agoric/info/info.json @@ -8,6 +8,9 @@ "type": "coin", "decimals": 6, "status": "active", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", diff --git a/blockchains/agoric/validators/assets/agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2/logo.png new file mode 100644 index 0000000000000..36544b6fa2621 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f/logo.png new file mode 100644 index 0000000000000..ab2b2edab45eb Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1mxhgvj2c93xahahx9d9fc7rwwtufqza5cn6uhn/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1mxhgvj2c93xahahx9d9fc7rwwtufqza5cn6uhn/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1mxhgvj2c93xahahx9d9fc7rwwtufqza5cn6uhn/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj/logo.png new file mode 100644 index 0000000000000..036eb403bfbe3 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5/logo.png differ diff --git a/blockchains/agoric/validators/assets/agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5/logo.png b/blockchains/agoric/validators/assets/agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/agoric/validators/assets/agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5/logo.png differ diff --git a/blockchains/agoric/validators/list.json b/blockchains/agoric/validators/list.json new file mode 100644 index 0000000000000..e1790689521a5 --- /dev/null +++ b/blockchains/agoric/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "id": "agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2", + "name": "0xFury", + "description": "0xFury - Enterprise-grade blockchain infrastructure solutions.", + "website": "https://0xfury.com/" + }, + { + "id": "agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj", + "name": "0base.vc", + "description": "0base.vc is a validator who doesn't trust any blockchain; we validate it ourselves.", + "website": "https://0base.vc/" + }, + { + "id": "agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f", + "name": "Agaram.ai", + "description": "Securing Agoric. 100% Slash protected", + "website": "https://agaram.ai/" + }, + { + "id": "agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9", + "name": "AutoStake 🛡️ Slash Protected", + "description": "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" + }, + { + "id": "agoricvaloper1mxhgvj2c93xahahx9d9fc7rwwtufqza5cn6uhn", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection & Eligible for airdrops | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + } +] diff --git a/blockchains/akash/info/info.json b/blockchains/akash/info/info.json index bad45258dd426..6163977836db6 100644 --- a/blockchains/akash/info/info.json +++ b/blockchains/akash/info/info.json @@ -11,6 +11,9 @@ "denom": "uakt", "lcd_url": "https://akash-api.polkachu.com/", "hrp": "akash", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", diff --git a/blockchains/akash/validators/assets/akashvaloper105nkdqgkj3hpgqss0elcec2t72ujg09w5mzhm8/logo.png b/blockchains/akash/validators/assets/akashvaloper105nkdqgkj3hpgqss0elcec2t72ujg09w5mzhm8/logo.png new file mode 100644 index 0000000000000..d0388df6a68a4 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper105nkdqgkj3hpgqss0elcec2t72ujg09w5mzhm8/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy/logo.png b/blockchains/akash/validators/assets/akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztqs903/logo.png b/blockchains/akash/validators/assets/akashvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztqs903/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztqs903/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh/logo.png b/blockchains/akash/validators/assets/akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073/logo.png b/blockchains/akash/validators/assets/akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073/logo.png new file mode 100644 index 0000000000000..8a7efc94d8c28 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper14mdu3xwpdr4qkayuv0aut5j6l9lgegc4hnvm9e/logo.png b/blockchains/akash/validators/assets/akashvaloper14mdu3xwpdr4qkayuv0aut5j6l9lgegc4hnvm9e/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper14mdu3xwpdr4qkayuv0aut5j6l9lgegc4hnvm9e/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98aup3je/logo.png b/blockchains/akash/validators/assets/akashvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98aup3je/logo.png new file mode 100644 index 0000000000000..9dff7bbedfbee Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98aup3je/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8/logo.png b/blockchains/akash/validators/assets/akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz/logo.png b/blockchains/akash/validators/assets/akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d/logo.png b/blockchains/akash/validators/assets/akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d/logo.png new file mode 100644 index 0000000000000..f9f1f5be4354b Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs/logo.png b/blockchains/akash/validators/assets/akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs/logo.png new file mode 100644 index 0000000000000..48eaf9adeb96e Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs/logo.png differ diff --git a/blockchains/akash/validators/assets/akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g/logo.png b/blockchains/akash/validators/assets/akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/akash/validators/assets/akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g/logo.png differ diff --git a/blockchains/akash/validators/list.json b/blockchains/akash/validators/list.json new file mode 100644 index 0000000000000..6c461ebdd6575 --- /dev/null +++ b/blockchains/akash/validators/list.json @@ -0,0 +1,74 @@ +[ + { + "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/" + }, + { + "id": "akashvaloper14mdu3xwpdr4qkayuv0aut5j6l9lgegc4hnvm9e", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + }, + { + "id": "akashvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98aup3je", + "name": "Kahuna", + "description": "Kahuna is a tech-focused investment firm dedicated to Blockchain Infrastructure, DeFi, and Gaming startups. Follow us on https://x.com/kahunahq", + "website": "https://www.kahuna.network/" + } +] diff --git a/blockchains/algorand/assets/137594422/info.json b/blockchains/algorand/assets/137594422/info.json index 4055f4bb07fc4..c599dcaffadd2 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 0000000000000..a45a0c68e70ae --- /dev/null +++ b/blockchains/algorand/assets/312769/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tether USD", + "website": "https://tether.to", + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "explorer": "https://algoexplorer.io/asset/312769", + "type": "ASA", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "312769", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tether/" + } + ] +} diff --git a/blockchains/algorand/assets/312769/logo.png b/blockchains/algorand/assets/312769/logo.png new file mode 100644 index 0000000000000..b873452b2a329 Binary files /dev/null and b/blockchains/algorand/assets/312769/logo.png differ diff --git a/blockchains/algorand/assets/31566704/info.json b/blockchains/algorand/assets/31566704/info.json new file mode 100644 index 0000000000000..d563abd1f7389 --- /dev/null +++ b/blockchains/algorand/assets/31566704/info.json @@ -0,0 +1,37 @@ +{ + "name": "USD Coin", + "website": "https://www.centre.io", + "description": "USDC provides a fully collateralized US dollar stablecoin, and is based on the open source asset-backed stablecoin framework developed by Centre.", + "explorer": "https://algoexplorer.io/asset/31566704", + "research": "https://research.binance.com/en/projects/usd-coin", + "type": "ASA", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "31566704", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + } + ] +} diff --git a/blockchains/algorand/assets/31566704/logo.png b/blockchains/algorand/assets/31566704/logo.png new file mode 100644 index 0000000000000..b74fafb2d2b4f Binary files /dev/null and b/blockchains/algorand/assets/31566704/logo.png differ diff --git a/blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5:staked_coin:StakedAptos/info.json b/blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos/info.json similarity index 100% rename from blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5:staked_coin:StakedAptos/info.json rename to blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos/info.json diff --git a/blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5:staked_coin:StakedAptos/logo.png b/blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos/logo.png similarity index 100% rename from blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5:staked_coin:StakedAptos/logo.png rename to blockchains/aptos/assets/0xd11107bdf0d6d7040c6c0bfbdecb6545191fdf13e8d8d259952f53e1713f61b5::staked_coin::StakedAptos/logo.png diff --git a/blockchains/aptos/info/info.json b/blockchains/aptos/info/info.json index 736b4a3ffc976..342a379bbb2e2 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/arbitrum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json b/blockchains/arbitrum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json new file mode 100644 index 0000000000000..1ef63494b4ffd --- /dev/null +++ b/blockchains/arbitrum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json @@ -0,0 +1,34 @@ +{ + "name": "USDA", + "website": "https://www.angle.money/", + "description": "USDA is an over-collateralized and decentralized USD stablecoin by the Angle Protocol.", + "explorer": "https://arbiscan.io/token/0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "type": "ARBITRUM", + "symbol": "USDA", + "decimals": 18, + "status": "active", + "tags": ["defi", "stablecoin"], + "id": "0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-usd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] + } \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png b/blockchains/arbitrum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png new file mode 100644 index 0000000000000..759db2e96cc84 Binary files /dev/null and b/blockchains/arbitrum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png differ diff --git a/blockchains/arbitrum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json b/blockchains/arbitrum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json new file mode 100644 index 0000000000000..e476541fef24d --- /dev/null +++ b/blockchains/arbitrum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json @@ -0,0 +1,34 @@ +{ + "name": "Staked USDA", + "website": "https://www.angle.money/", + "description": "stUSD is a USD savings solution built on top of USDA by the Angle Protocol", + "explorer": "https://arbiscan.io/token/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", + "type": "ARBITRUM", + "symbol": "stUSD", + "decimals": 18, + "status": "active", + "tags": ["defi", "stablecoin"], + "id": "0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-staked-agusd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] + } \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png b/blockchains/arbitrum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png new file mode 100644 index 0000000000000..a0fd0bd217403 Binary files /dev/null and b/blockchains/arbitrum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png differ diff --git a/blockchains/arbitrum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json b/blockchains/arbitrum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json new file mode 100644 index 0000000000000..2969be534a01e --- /dev/null +++ b/blockchains/arbitrum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json @@ -0,0 +1,34 @@ +{ + "name": "Staked EURA", + "website": "https://www.angle.money/", + "description": "stEUR is a Euro savings solution built on top of EURA by the Angle Protocol.", + "explorer": "https://arbiscan.io/token/0x004626A008B1aCdC4c74ab51644093b155e59A23", + "type": "ARBITRUM", + "symbol": "stEUR", + "decimals": 18, + "status": "active", + "tags": ["defi", "stablecoin"], + "id": "0x004626A008B1aCdC4c74ab51644093b155e59A23", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/staked-ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] + } \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png b/blockchains/arbitrum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png new file mode 100644 index 0000000000000..dbf1b94234fc1 Binary files /dev/null and b/blockchains/arbitrum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png differ diff --git a/blockchains/arbitrum/assets/0x088cd8f5eF3652623c22D48b1605DCfE860Cd704/info.json b/blockchains/arbitrum/assets/0x088cd8f5eF3652623c22D48b1605DCfE860Cd704/info.json new file mode 100644 index 0000000000000..37cca7aed1865 --- /dev/null +++ b/blockchains/arbitrum/assets/0x088cd8f5eF3652623c22D48b1605DCfE860Cd704/info.json @@ -0,0 +1,21 @@ +{ + "name": "VelaToken", + "type": "ARBITRUM", + "symbol": "VELA", + "decimals": 18, + "website": "https://vela.exchange/", + "description": "Trade crypto and forex assets with up to 100x leverage on the world’s most advanced decentralized trading platform.", + "explorer": "https://arbiscan.io/token/0x088cd8f5ef3652623c22d48b1605dcfe860cd704", + "status": "active", + "id": "0x088cd8f5eF3652623c22D48b1605DCfE860Cd704", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/vela_exchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vela-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x088cd8f5eF3652623c22D48b1605DCfE860Cd704/logo.png b/blockchains/arbitrum/assets/0x088cd8f5eF3652623c22D48b1605DCfE860Cd704/logo.png new file mode 100644 index 0000000000000..824f91c2a2adb Binary files /dev/null and b/blockchains/arbitrum/assets/0x088cd8f5eF3652623c22D48b1605DCfE860Cd704/logo.png differ diff --git a/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/info.json b/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/info.json new file mode 100644 index 0000000000000..c7e633492b636 --- /dev/null +++ b/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/info.json @@ -0,0 +1,32 @@ +{ + "name": "AIDOGE", + "website": "https://arbdoge.ai/", + "description": "ArbDogeAI is created by AI. 100% of the tokens belong to the community. Never consider AIDOGE as a MEME.", + "explorer": "https://arbiscan.io/token/0x09e18590e8f76b6cf471b3cd75fe1a1a9d2b2c2b", + "type": "ARBITRUM", + "symbol": "AIDOGE", + "decimals": 6, + "status": "active", + "id": "0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b", + "tags": [ + "memes" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/arbdogeai" + }, + { + "name": "medium", + "url": "https://medium.com/@ArbDogeAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arbdoge-ai/" + }, + { + "name": "whitepaper", + "url": "https://docs.arbdoge.ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/logo.png b/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/logo.png new file mode 100644 index 0000000000000..ef4c4544cecf3 Binary files /dev/null and b/blockchains/arbitrum/assets/0x09E18590E8f76b6Cf471b3cd75fE1A1a9D2B2c2b/logo.png differ diff --git a/blockchains/arbitrum/assets/0x0c5fa0E07949F941A6c2C29a008252db1527d6EE/info.json b/blockchains/arbitrum/assets/0x0c5fa0E07949F941A6c2C29a008252db1527d6EE/info.json new file mode 100644 index 0000000000000..a3b9736e6bab4 --- /dev/null +++ b/blockchains/arbitrum/assets/0x0c5fa0E07949F941A6c2C29a008252db1527d6EE/info.json @@ -0,0 +1,21 @@ +{ + "name": "Opulous", + "type": "ARBITRUM", + "symbol": "OPUL", + "website": "https://opulous.org/", + "decimals": 18, + "description": "Opulous Token believe in a future where musicians keep control of the music they create and forge even deeper connections with their fans.", + "explorer": "https://arbiscan.io/token/0x0c5fa0E07949F941A6c2C29a008252db1527d6EE", + "status": "active", + "id": "0x0c5fa0E07949F941A6c2C29a008252db1527d6EE", + "links": [ + { + "name": "telegram", + "url": "https://t.me/opulousapp" + }, + { + "name": "twitter", + "url": "https://twitter.com/opulousapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x0c5fa0E07949F941A6c2C29a008252db1527d6EE/logo.png b/blockchains/arbitrum/assets/0x0c5fa0E07949F941A6c2C29a008252db1527d6EE/logo.png new file mode 100644 index 0000000000000..afa7fedd2bd39 Binary files /dev/null and b/blockchains/arbitrum/assets/0x0c5fa0E07949F941A6c2C29a008252db1527d6EE/logo.png differ diff --git a/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/info.json b/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/info.json new file mode 100644 index 0000000000000..cf65fad948924 --- /dev/null +++ b/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/info.json @@ -0,0 +1,33 @@ +{ + "name": "Pendle", + "website": "https://www.pendle.finance/", + "description": "Pendle is a protocol for people to trade and hedge yield. Users can tokenize yield and trade them on Pendle's AMM", + "explorer": "https://arbiscan.io/token/0x0c880f6761f1af8d9aa9c466984b80dab9a8c9e8", + "type": "ARBITRUM", + "symbol": "PENDLE", + "decimals": 18, + "status": "active", + "id": "0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8", + "links": [ + { + "name": "github", + "url": "https://github.com/pendle-finance" + }, + { + "name": "twitter", + "url": "https://twitter.com/pendle_fi" + }, + { + "name": "docs", + "url": "https://docs.pendle.finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pendle" + }, + { + "name": "discord", + "url": "https://discord.com/invite/9x9VUngNZD" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/logo.png b/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/logo.png new file mode 100644 index 0000000000000..f938a10800ec7 Binary files /dev/null and b/blockchains/arbitrum/assets/0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8/logo.png differ diff --git a/blockchains/arbitrum/assets/0x10393c20975cF177a3513071bC110f7962CD67da/info.json b/blockchains/arbitrum/assets/0x10393c20975cF177a3513071bC110f7962CD67da/info.json new file mode 100644 index 0000000000000..a1bdf98330e98 --- /dev/null +++ b/blockchains/arbitrum/assets/0x10393c20975cF177a3513071bC110f7962CD67da/info.json @@ -0,0 +1,25 @@ +{ + "name": "Jones DAO", + "website": "https://jonesdao.io/", + "description": "Jones DAO is a yield generation, asset management, and options liquidity protocol, with vaults that enable 1-click access to institutional-grade options strategies while unlocking liquidity and capital efficiency for DeFi options.", + "explorer": "https://arbiscan.io/token/0x10393c20975cf177a3513071bc110f7962cd67da", + "type": "ARBITRUM", + "symbol": "JONES", + "decimals": 18, + "status": "active", + "id": "0x10393c20975cF177a3513071bC110f7962CD67da", + "links": [ + { + "name": "github", + "url": "https://github.com/Jones-DAO" + }, + { + "name": "twitter", + "url": "https://twitter.com/DAOJonesOptions" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jones-dao/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x10393c20975cF177a3513071bC110f7962CD67da/logo.png b/blockchains/arbitrum/assets/0x10393c20975cF177a3513071bC110f7962CD67da/logo.png new file mode 100644 index 0000000000000..075eb49f97c80 Binary files /dev/null and b/blockchains/arbitrum/assets/0x10393c20975cF177a3513071bC110f7962CD67da/logo.png differ diff --git a/blockchains/arbitrum/assets/0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3/info.json b/blockchains/arbitrum/assets/0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3/info.json new file mode 100644 index 0000000000000..4dbc3fd024b98 --- /dev/null +++ b/blockchains/arbitrum/assets/0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Boop", + "type": "ARBITRUM", + "symbol": "Boop", + "decimals": 18, + "website": "https://boopthecoin.com/", + "description": "$BOOP is a coin for the people, forever. Fueled by pure dog joy, let the power of $BOOP show you the way.", + "explorer": "https://arbiscan.io/token/0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3", + "status": "active", + "id": "0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/boopthecoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/boop-the-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3/logo.png b/blockchains/arbitrum/assets/0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3/logo.png new file mode 100644 index 0000000000000..40889bdf40d91 Binary files /dev/null and b/blockchains/arbitrum/assets/0x13A7DeDb7169a17bE92B0E3C7C2315B46f4772B3/logo.png differ diff --git a/blockchains/arbitrum/assets/0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60/info.json b/blockchains/arbitrum/assets/0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60/info.json new file mode 100644 index 0000000000000..5ffee0cfb851b --- /dev/null +++ b/blockchains/arbitrum/assets/0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60/info.json @@ -0,0 +1,29 @@ +{ + "name": "Lido DAO", + "type": "ARBITRUM", + "symbol": "LDO", + "decimals": 18, + "website": "https://stake.lido.fi/", + "description": "Lido is a liquid staking solution for Ethereum. Lido lets users stake their ETH - with no minimum deposits or maintaining of infrastructure - whilst participating in on-chain activities, e.g. lending, to compound returns. LDO is an ERC20 token granting governance rights in the Lido DAO.", + "explorer": "https://arbiscan.io/token/0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60", + "status": "active", + "id": "0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/lidofinance" + }, + { + "name": "telegram", + "url": "https://t.me/lidofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lido-dao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lido-dao/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60/logo.png b/blockchains/arbitrum/assets/0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60/logo.png new file mode 100644 index 0000000000000..2b7f52ad89270 Binary files /dev/null and b/blockchains/arbitrum/assets/0x13Ad51ed4F1B7e9Dc168d8a00cB3f4dDD85EfA60/logo.png differ diff --git a/blockchains/arbitrum/assets/0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F/info.json b/blockchains/arbitrum/assets/0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F/info.json new file mode 100644 index 0000000000000..fa1780722053a --- /dev/null +++ b/blockchains/arbitrum/assets/0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F/info.json @@ -0,0 +1,33 @@ +{ + "name": "Frax", + "website": "https://frax.finance/", + "description": "Frax is a new paradigm in stablecoin design, bringing together a two-token seigniorage share system, swap-based monetary policy, fully on-chain oracles, and decentralized governance alongside its fractional-algorithmic stablecoin design.", + "explorer": "https://arbiscan.io/token/0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F", + "type": "ARBITRUM", + "symbol": "FRAX", + "decimals": 18, + "status": "active", + "id": "0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/FraxFinance" + }, + { + "name": "twitter", + "url": "https://twitter.com/Frax Finance" + }, + { + "name": "telegram", + "url": "https://t.me/fraxfinance" + }, + { + "name": "discord", + "url": "https://discord.com/invite/Xwe8kAwZ4a" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F/logo.png b/blockchains/arbitrum/assets/0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F/logo.png new file mode 100644 index 0000000000000..762d2dd36f501 Binary files /dev/null and b/blockchains/arbitrum/assets/0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F/logo.png differ diff --git a/blockchains/arbitrum/assets/0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e/info.json b/blockchains/arbitrum/assets/0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e/info.json new file mode 100644 index 0000000000000..7d824aec6c08b --- /dev/null +++ b/blockchains/arbitrum/assets/0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZTX", + "website": "https://ztx.io/", + "description": "ZTX is a virtual world empowering creators and communities.", + "explorer": "https://arbiscan.io/token/0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e", + "type": "ARBITRUM", + "symbol": "ZTX", + "decimals": 18, + "status": "active", + "id": "0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ZTXofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ztx/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e/logo.png b/blockchains/arbitrum/assets/0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e/logo.png new file mode 100644 index 0000000000000..a1e0daff789b3 Binary files /dev/null and b/blockchains/arbitrum/assets/0x1C43D05be7E5b54D506e3DdB6f0305e8A66CD04e/logo.png differ diff --git a/blockchains/arbitrum/assets/0x1F2b426417663Ac76eB92149a037753a45969F31/info.json b/blockchains/arbitrum/assets/0x1F2b426417663Ac76eB92149a037753a45969F31/info.json new file mode 100644 index 0000000000000..b941284288004 --- /dev/null +++ b/blockchains/arbitrum/assets/0x1F2b426417663Ac76eB92149a037753a45969F31/info.json @@ -0,0 +1,21 @@ +{ + "name": "Real World Assetss", + "type": "ARBITRUM", + "symbol": "RWAS", + "decimals": 18, + "website": "https://www.rwa-finance.com/#/", + "description": "RWA Finance is an extraordinary platform that is changing the field of issuing and trading Real World Assets (RWA).", + "explorer": "https://arbiscan.io/token/0x1F2b426417663Ac76eB92149a037753a45969F31", + "status": "active", + "id": "0x1F2b426417663Ac76eB92149a037753a45969F31", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/RWA_Finance_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rwa-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x1F2b426417663Ac76eB92149a037753a45969F31/logo.png b/blockchains/arbitrum/assets/0x1F2b426417663Ac76eB92149a037753a45969F31/logo.png new file mode 100644 index 0000000000000..169fc4bb72ec0 Binary files /dev/null and b/blockchains/arbitrum/assets/0x1F2b426417663Ac76eB92149a037753a45969F31/logo.png differ diff --git a/blockchains/arbitrum/assets/0x20547341E58fB558637FA15379C92e11F7b7F710/info.json b/blockchains/arbitrum/assets/0x20547341E58fB558637FA15379C92e11F7b7F710/info.json new file mode 100644 index 0000000000000..84a38e5894c9f --- /dev/null +++ b/blockchains/arbitrum/assets/0x20547341E58fB558637FA15379C92e11F7b7F710/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mozaic", + "symbol": "MOZ", + "type": "ARBITRUM", + "decimals": 18, + "description": "Automatic, omnichain yield farming. Mozaic provides AI-optimized yield and liquidity strategies, powered by LayerZero. Farm automatically on every blockchain: Deposit and withdraw on any chain, in any coin or LP token", + "website": "https://mozaic.finance/", + "explorer": "https://arbiscan.io/token/0x20547341e58fb558637fa15379c92e11f7b7f710", + "status": "active", + "id": "0x20547341E58fB558637FA15379C92e11F7b7F710", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Mozaic_Fi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mozaic/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x20547341E58fB558637FA15379C92e11F7b7F710/logo.png b/blockchains/arbitrum/assets/0x20547341E58fB558637FA15379C92e11F7b7F710/logo.png new file mode 100644 index 0000000000000..e1836e9fb952c Binary files /dev/null and b/blockchains/arbitrum/assets/0x20547341E58fB558637FA15379C92e11F7b7F710/logo.png differ diff --git a/blockchains/arbitrum/assets/0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f/info.json b/blockchains/arbitrum/assets/0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f/info.json new file mode 100644 index 0000000000000..5bf8f09c217f8 --- /dev/null +++ b/blockchains/arbitrum/assets/0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f/info.json @@ -0,0 +1,28 @@ +{ + "name": "Wrapped BTC", + "type": "ARBITRUM", + "symbol": "WBTC", + "decimals": 8, + "website": "https://wbtc.network/", + "description": "Wrapped Bitcoin (WBTC) is the first ERC20 token backed 1:1 with Bitcoin.", + "explorer": "https://arbiscan.io/token/0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f", + "status": "active", + "id": "0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f", + "links": [ + { + "name": "whitepaper", + "url": "https://wbtc.network/assets/wrapped-tokens-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f/logo.png b/blockchains/arbitrum/assets/0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f/logo.png new file mode 100644 index 0000000000000..702d64a2e040a Binary files /dev/null and b/blockchains/arbitrum/assets/0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f/logo.png differ diff --git a/blockchains/arbitrum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/arbitrum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 0000000000000..ecffed957bbcf --- /dev/null +++ b/blockchains/arbitrum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nya", + "type": "ARBITRUM", + "symbol": "NYA", + "decimals": 18, + "website": "https://www.nya.vip", + "description": "Explore the cultural phenomenon of Nya - the playful cat sound that's become a symbol of joy and connection. Discover how this simple word unites fans worldwide.", + "explorer": "https://arbiscan.io/token/0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "status": "active", + "id": "0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/NyaOnEarth" + }, + { + "name": "telegram", + "url": "https://t.me/NyaOnEarth" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "docs", + "url": "https://wiki.nya.vip" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png b/blockchains/arbitrum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png new file mode 100644 index 0000000000000..c34f31c6b2335 Binary files /dev/null and b/blockchains/arbitrum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c/info.json b/blockchains/arbitrum/assets/0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c/info.json new file mode 100644 index 0000000000000..558e236d72c48 --- /dev/null +++ b/blockchains/arbitrum/assets/0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c/info.json @@ -0,0 +1,25 @@ +{ + "name": "Zyber", + "type": "ARBITRUM", + "symbol": "ZYB", + "decimals": 18, + "website": "https://zyberswap.io/", + "description": "Community-driven and governed DEX on Arbitrum with lots of utility on its native token ZYBER.", + "explorer": "https://arbiscan.io/token/0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c", + "status": "active", + "id": "0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zyberswap" + }, + { + "name": "telegram", + "url": "https://t.me/zyberswapofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zyberswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c/logo.png b/blockchains/arbitrum/assets/0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c/logo.png new file mode 100644 index 0000000000000..88e9ab8f8d309 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3B475F6f2f41853706afc9Fa6a6b8C5dF1a2724c/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee/info.json b/blockchains/arbitrum/assets/0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee/info.json new file mode 100644 index 0000000000000..2627cdabfd9f3 --- /dev/null +++ b/blockchains/arbitrum/assets/0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee/info.json @@ -0,0 +1,11 @@ +{ + "name": "ROOBEE", + "website": "https://roobee.io/", + "description": "Roobee is a blockchain-based investment platform for non-professional and private investors. Roobee allows you to build an investment portfolio consisting of various assets, from cryptocurrencies to stocks and ETFs. The payment can be made in any convenient way, without limitations, and without high entry thresholds.", + "explorer": "https://arbiscan.io/token/0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee", + "type": "ARBITRUM", + "symbol": "ROOBEE", + "decimals": 18, + "status": "active", + "id": "0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee/logo.png b/blockchains/arbitrum/assets/0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee/logo.png new file mode 100644 index 0000000000000..44c060c10723e Binary files /dev/null and b/blockchains/arbitrum/assets/0x3BD2dFd03BC7c3011ed7fb8c4d0949B382726cee/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3E6648C5a70A150A88bCE65F4aD4d506Fe15d2AF/info.json b/blockchains/arbitrum/assets/0x3E6648C5a70A150A88bCE65F4aD4d506Fe15d2AF/info.json new file mode 100644 index 0000000000000..59121e74a503c --- /dev/null +++ b/blockchains/arbitrum/assets/0x3E6648C5a70A150A88bCE65F4aD4d506Fe15d2AF/info.json @@ -0,0 +1,28 @@ +{ + "name": "Spell Token", + "website": "https://abracadabra.money/", + "description": "Abracadabra.money is a lending platform that allows users to borrow funds using Interest Bearing Tokens as collateral.", + "explorer": "https://arbiscan.io/token/0x3e6648c5a70a150a88bce65f4ad4d506fe15d2af", + "type": "ARBITRUM", + "symbol": "SPELL", + "decimals": 18, + "status": "active", + "id": "0x3E6648C5a70A150A88bCE65F4aD4d506Fe15d2AF", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MIM_Spell" + }, + { + "name": "medium", + "url": "https://abracadabramoney.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/spell-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3E6648C5a70A150A88bCE65F4aD4d506Fe15d2AF/logo.png b/blockchains/arbitrum/assets/0x3E6648C5a70A150A88bCE65F4aD4d506Fe15d2AF/logo.png new file mode 100644 index 0000000000000..fc7438b7de4b2 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3E6648C5a70A150A88bCE65F4aD4d506Fe15d2AF/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3F56e0c36d275367b8C502090EDF38289b3dEa0d/info.json b/blockchains/arbitrum/assets/0x3F56e0c36d275367b8C502090EDF38289b3dEa0d/info.json new file mode 100644 index 0000000000000..a9fdbd4f24730 --- /dev/null +++ b/blockchains/arbitrum/assets/0x3F56e0c36d275367b8C502090EDF38289b3dEa0d/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mai Stablecoin", + "website": "https://www.mai.finance/", + "description": "miMatic is an algorithmic stablecoin that is collateralized with Matic tokens", + "explorer": "https://arbiscan.io/token/0x3F56e0c36d275367b8C502090EDF38289b3dEa0d", + "type": "ARBITRUM", + "symbol": "MAI", + "decimals": 18, + "status": "active", + "id": "0x3F56e0c36d275367b8C502090EDF38289b3dEa0d", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/0xLaoZi" + }, + { + "name": "telegram", + "url": "https://t.me/QiDaoProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3F56e0c36d275367b8C502090EDF38289b3dEa0d/logo.png b/blockchains/arbitrum/assets/0x3F56e0c36d275367b8C502090EDF38289b3dEa0d/logo.png new file mode 100644 index 0000000000000..52dc3ec3f6f15 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3F56e0c36d275367b8C502090EDF38289b3dEa0d/logo.png differ diff --git a/blockchains/arbitrum/assets/0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8/info.json b/blockchains/arbitrum/assets/0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8/info.json new file mode 100644 index 0000000000000..86198631b0b7c --- /dev/null +++ b/blockchains/arbitrum/assets/0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Camelot", + "type": "ARBITRUM", + "symbol": "GRAIL", + "decimals": 18, + "website": "https://camelot.exchange/", + "description": "Camelot is an ecosystem-focused and community-driven DEX built on Arbitrum.", + "explorer": "https://arbiscan.io/token/0x3d9907f9a368ad0a51be60f7da3b97cf940982d8", + "status": "active", + "id": "0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/camelotdex" + }, + { + "name": "telegram", + "url": "https://t.me/camelotdex" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/camelot-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8/logo.png b/blockchains/arbitrum/assets/0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8/logo.png new file mode 100644 index 0000000000000..fff441f8ed026 Binary files /dev/null and b/blockchains/arbitrum/assets/0x3d9907F9a368ad0a51Be60f7Da3b97cf940982D8/logo.png differ diff --git a/blockchains/arbitrum/assets/0x4186BFC76E2E237523CBC30FD220FE055156b41F/info.json b/blockchains/arbitrum/assets/0x4186BFC76E2E237523CBC30FD220FE055156b41F/info.json new file mode 100644 index 0000000000000..e4d21b30ad9fc --- /dev/null +++ b/blockchains/arbitrum/assets/0x4186BFC76E2E237523CBC30FD220FE055156b41F/info.json @@ -0,0 +1,17 @@ +{ + "name": "KelpDao Restaked ETH", + "website": "https://kelpdao.xyz/restake/", + "description": "rsETH is a Liquid Restaked Token (LRT) issued by Kelp DAO designed to offer liquidity to illiquid assets deposited into restaking platforms, such as EigenLayer. It aims to address the risks and challenges posed by the current offering of restaking", + "explorer": "https://arbiscan.io/token/0x4186bfc76e2e237523cbc30fd220fe055156b41f", + "type": "ARBITRUM", + "symbol": "rsETH", + "decimals": 18, + "status": "active", + "id": "0x4186BFC76E2E237523CBC30FD220FE055156b41F", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/KelpDAO" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x4186BFC76E2E237523CBC30FD220FE055156b41F/logo.png b/blockchains/arbitrum/assets/0x4186BFC76E2E237523CBC30FD220FE055156b41F/logo.png new file mode 100644 index 0000000000000..0ae989c4e374c Binary files /dev/null and b/blockchains/arbitrum/assets/0x4186BFC76E2E237523CBC30FD220FE055156b41F/logo.png differ diff --git a/blockchains/arbitrum/assets/0x431402e8b9dE9aa016C743880e04E517074D8cEC/info.json b/blockchains/arbitrum/assets/0x431402e8b9dE9aa016C743880e04E517074D8cEC/info.json new file mode 100644 index 0000000000000..a4b25c29f7946 --- /dev/null +++ b/blockchains/arbitrum/assets/0x431402e8b9dE9aa016C743880e04E517074D8cEC/info.json @@ -0,0 +1,17 @@ +{ + "name": "Hegic", + "website": "https://hegic.co/", + "description": "Hegic is an on-chain, non-custodial peer-to-pool options trading protocol built on Ethereum. Currently Hegic supports options trading in for Bitcoin (wBTC) and Ether (ETH).", + "explorer": "https://arbiscan.io/token/0x431402e8b9dE9aa016C743880e04E517074D8cEC", + "type": "ARBITRUM", + "symbol": "HEGIC", + "decimals": 18, + "status": "active", + "id": "0x431402e8b9dE9aa016C743880e04E517074D8cEC", + "links": [ + { + "name": "github", + "url": "https://github.com/hegic" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x431402e8b9dE9aa016C743880e04E517074D8cEC/logo.png b/blockchains/arbitrum/assets/0x431402e8b9dE9aa016C743880e04E517074D8cEC/logo.png new file mode 100644 index 0000000000000..44c118daf7b4e Binary files /dev/null and b/blockchains/arbitrum/assets/0x431402e8b9dE9aa016C743880e04E517074D8cEC/logo.png differ diff --git a/blockchains/arbitrum/assets/0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A/info.json b/blockchains/arbitrum/assets/0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A/info.json new file mode 100644 index 0000000000000..0cc8f52214682 --- /dev/null +++ b/blockchains/arbitrum/assets/0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A/info.json @@ -0,0 +1,25 @@ +{ + "name": "The Doge NFT", + "type": "ARBITRUM", + "symbol": "DOG", + "decimals": 18, + "website": "https://doge.pleasr.org/", + "description": "The most iconic meme in internet history, the original Doge, fractionalized and available for anyone to own. Fractionalizing this NFT means that now anyone can own a piece of one of the most recognized and loved images of our generation.", + "explorer": "https://arbiscan.io/token/0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A", + "status": "active", + "id": "0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ownthedoge" + }, + { + "name": "telegram", + "url": "https://t.me/ownthedoge" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-doge-nft/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A/logo.png b/blockchains/arbitrum/assets/0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A/logo.png new file mode 100644 index 0000000000000..5563308384283 Binary files /dev/null and b/blockchains/arbitrum/assets/0x4425742F1EC8D98779690b5A3A6276Db85Ddc01A/logo.png differ diff --git a/blockchains/arbitrum/assets/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66/info.json b/blockchains/arbitrum/assets/0x4Cb9a7AE498CEDcBb5EAe9f25736aE7d428C9D66/info.json new file mode 100644 index 0000000000000..bbcd3d0349f7e --- /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 0000000000000..bd835bcb7d4c0 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 0000000000000..65b7ae2114a57 --- /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 0000000000000..ee172cac16fc5 Binary files /dev/null and b/blockchains/arbitrum/assets/0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42/logo.png differ diff --git a/blockchains/arbitrum/assets/0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26/info.json b/blockchains/arbitrum/assets/0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26/info.json new file mode 100644 index 0000000000000..fd38e218c08df --- /dev/null +++ b/blockchains/arbitrum/assets/0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26/info.json @@ -0,0 +1,21 @@ +{ + "name": "Chainge", + "website": "https://chainge.finance/", + "description": "Chainge Finance is a next generation DeFi app that stands as the most liquid web3 trading venue on the market.", + "explorer": "https://arbiscan.io/token/0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26", + "type": "ARBITRUM", + "symbol": "XCHNG", + "decimals": 18, + "status": "active", + "id": "0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/FinanceChainge" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chainge/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26/logo.png b/blockchains/arbitrum/assets/0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26/logo.png new file mode 100644 index 0000000000000..43ad8fabeb2be Binary files /dev/null and b/blockchains/arbitrum/assets/0x51C601dC278EB2CFea8e52c4caA35B3d6a9A2c26/logo.png differ diff --git a/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/info.json b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/info.json new file mode 100644 index 0000000000000..c445b4bbfe9c9 --- /dev/null +++ b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/info.json @@ -0,0 +1,29 @@ +{ + "name": "MAGIC", + "symbol": "MAGIC", + "type": "ARBITRUM", + "decimals": 18, + "description": "MAGIC is the utility token that connects gaming communities in the Treasure Metaverse: a decentralized NFT ecosystem which sits on Arbitrum, one of Ethereum’s Layer 2 scaling solutions.", + "website": "https://treasure.lol/", + "explorer": "https://arbiscan.io/token/0x539bdE0d7Dbd336b79148AA742883198BBF60342", + "status": "active", + "id": "0x539bdE0d7Dbd336b79148AA742883198BBF60342", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Treasure_NFT" + }, + { + "name": "medium", + "url": "https://medium.com/@TreasureNFT" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/magic-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/magic/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/logo.png b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/logo.png new file mode 100644 index 0000000000000..16844a459a5aa Binary files /dev/null and b/blockchains/arbitrum/assets/0x539bdE0d7Dbd336b79148AA742883198BBF60342/logo.png differ diff --git a/blockchains/arbitrum/assets/0x5575552988A3A80504bBaeB1311674fCFd40aD4B/info.json b/blockchains/arbitrum/assets/0x5575552988A3A80504bBaeB1311674fCFd40aD4B/info.json new file mode 100644 index 0000000000000..3ea0d599cb522 --- /dev/null +++ b/blockchains/arbitrum/assets/0x5575552988A3A80504bBaeB1311674fCFd40aD4B/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sperax", + "symbol": "SPA", + "type": "ARBITRUM", + "decimals": 18, + "description": "A project that aims to provide decentralized financial services for all with its original BDLS consensus protocol and a dual stablecoin system.", + "website": "https://sperax.io/", + "explorer": "https://arbiscan.io/token/0x5575552988A3A80504bBaeB1311674fCFd40aD4B", + "status": "active", + "id": "0x5575552988A3A80504bBaeB1311674fCFd40aD4B", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SperaxUSD" + }, + { + "name": "telegram", + "url": "https://t.me/SperaxUSD" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x5575552988A3A80504bBaeB1311674fCFd40aD4B/logo.png b/blockchains/arbitrum/assets/0x5575552988A3A80504bBaeB1311674fCFd40aD4B/logo.png new file mode 100644 index 0000000000000..b24148bca7d06 Binary files /dev/null and b/blockchains/arbitrum/assets/0x5575552988A3A80504bBaeB1311674fCFd40aD4B/logo.png differ diff --git a/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json b/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json new file mode 100644 index 0000000000000..6a612a01f5487 --- /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 0000000000000..149d2563079dd Binary files /dev/null and b/blockchains/arbitrum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/logo.png differ diff --git a/blockchains/arbitrum/assets/0x580E933D90091b9cE380740E3a4A39c67eB85B4c/info.json b/blockchains/arbitrum/assets/0x580E933D90091b9cE380740E3a4A39c67eB85B4c/info.json new file mode 100644 index 0000000000000..0363d80b64f3b --- /dev/null +++ b/blockchains/arbitrum/assets/0x580E933D90091b9cE380740E3a4A39c67eB85B4c/info.json @@ -0,0 +1,25 @@ +{ + "name": "GameSwift", + "type": "ARBITRUM", + "symbol": "GSWIFT", + "decimals": 18, + "website": "https://gswift.community/", + "description": "GSWIFT is an omnitoken that can seamlessly be transferred between blockchains. Experience the true power of move $GSWIFT across multiple blockchains. With its game-changing range of utilities, $GSWIFT is setting new standards for Web3 gaming tokens.", + "explorer": "https://arbiscan.io/token/0x580e933d90091b9ce380740e3a4a39c67eb85b4c", + "status": "active", + "id": "0x580E933D90091b9cE380740E3a4A39c67eB85B4c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GameSwift_io" + }, + { + "name": "github", + "url": "https://github.com/gswiftcommunity" + }, + { + "name": "telegram", + "url": "https://t.me/gameswift_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x580E933D90091b9cE380740E3a4A39c67eB85B4c/logo.png b/blockchains/arbitrum/assets/0x580E933D90091b9cE380740E3a4A39c67eB85B4c/logo.png new file mode 100644 index 0000000000000..be5c8241d63d9 Binary files /dev/null and b/blockchains/arbitrum/assets/0x580E933D90091b9cE380740E3a4A39c67eB85B4c/logo.png differ diff --git a/blockchains/arbitrum/assets/0x589d35656641d6aB57A545F08cf473eCD9B6D5F7/info.json b/blockchains/arbitrum/assets/0x589d35656641d6aB57A545F08cf473eCD9B6D5F7/info.json new file mode 100644 index 0000000000000..1ad59a89e3eaa --- /dev/null +++ b/blockchains/arbitrum/assets/0x589d35656641d6aB57A545F08cf473eCD9B6D5F7/info.json @@ -0,0 +1,37 @@ +{ + "name": "GYEN", + "website": "https://stablecoin.z.com/gyen/", + "description": "GYEN anchors its value to the price of the Japanese Yen. Redeemable and pegged 1-to-1 with fiat currency to virtually eliminate volatility, while still benefiting from the advantages of cryptocurrency, such as high-speed transaction and low costs, especially for cross-border payments", + "explorer": "https://arbiscan.io/token/0x589d35656641d6aB57A545F08cf473eCD9B6D5F7", + "type": "ARBITRUM", + "symbol": "GYEN", + "decimals": 6, + "status": "active", + "id": "0x589d35656641d6aB57A545F08cf473eCD9B6D5F7", + "links": [ + { + "name": "github", + "url": "https://github.com/trust-zcom/" + }, + { + "name": "twitter", + "url": "https://twitter.com/GMOTrust" + }, + { + "name": "medium", + "url": "https://gmotrust.medium.com/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gyen/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/gyen" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCO7CNhdHYiJoBICgbo-yyiw/featured" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x589d35656641d6aB57A545F08cf473eCD9B6D5F7/logo.png b/blockchains/arbitrum/assets/0x589d35656641d6aB57A545F08cf473eCD9B6D5F7/logo.png new file mode 100644 index 0000000000000..b2b272f0bfb11 Binary files /dev/null and b/blockchains/arbitrum/assets/0x589d35656641d6aB57A545F08cf473eCD9B6D5F7/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/arbitrum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 0000000000000..2eef0a6e36eb4 --- /dev/null +++ b/blockchains/arbitrum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "LayerZero", + "website": "https://layerzero.network/", + "description": "LayerZero is a technology that enables applications to move data across blockchains, uniquely supporting censorship-resistant messages and permissionless development through immutable smart contracts", + "explorer": "https://arbiscan.io/token/0x6985884c4392d348587b19cb9eaaf157f13271cd", + "type": "ARBITRUM", + "symbol": "ZRO", + "decimals": 18, + "status": "active", + "id": "0x6985884C4392D348587B19cb9eAAf157F13271cd", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LayerZero_Labs" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/VcqxYkStIDsyN2Rh" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png b/blockchains/arbitrum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png new file mode 100644 index 0000000000000..203a846cfdf6b Binary files /dev/null and b/blockchains/arbitrum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/arbitrum/assets/0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581/info.json b/blockchains/arbitrum/assets/0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581/info.json new file mode 100644 index 0000000000000..f0ec27faa2377 --- /dev/null +++ b/blockchains/arbitrum/assets/0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581/info.json @@ -0,0 +1,29 @@ +{ + "name": "DODO", + "website": "https://dodoex.io/", + "description": "DODO is a liquidity protocol powered by the Proactive Market Maker (PMM) algorithm and built for capital efficiency.", + "explorer": "https://arbiscan.io/token/0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581", + "type": "ARBITRUM", + "symbol": "DODO", + "decimals": 18, + "status": "active", + "id": "0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581", + "links": [ + { + "name": "github", + "url": "https://github.com/DODOEX/" + }, + { + "name": "twitter", + "url": "https://twitter.com/DODO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/DodoEx/" + }, + { + "name": "medium", + "url": "https://medium.com/dodoex" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581/logo.png b/blockchains/arbitrum/assets/0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581/logo.png new file mode 100644 index 0000000000000..3e5c749672d58 Binary files /dev/null and b/blockchains/arbitrum/assets/0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6dAF586B7370B14163171544fca24AbcC0862ac5/info.json b/blockchains/arbitrum/assets/0x6dAF586B7370B14163171544fca24AbcC0862ac5/info.json new file mode 100644 index 0000000000000..04cff405411c2 --- /dev/null +++ b/blockchains/arbitrum/assets/0x6dAF586B7370B14163171544fca24AbcC0862ac5/info.json @@ -0,0 +1,21 @@ +{ + "name": "BPET", + "website": "https://www.xpet.tech/", + "description": "Raising your virtual pet on Twitter, hunting chest and farming $BPET token.", + "explorer": "https://arbiscan.io/token/0x6dAF586B7370B14163171544fca24AbcC0862ac5", + "type": "ARBITRUM", + "symbol": "BPET", + "decimals": 18, + "status": "active", + "id": "0x6dAF586B7370B14163171544fca24AbcC0862ac5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/xpet_tech" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bpet/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6dAF586B7370B14163171544fca24AbcC0862ac5/logo.png b/blockchains/arbitrum/assets/0x6dAF586B7370B14163171544fca24AbcC0862ac5/logo.png new file mode 100644 index 0000000000000..7bf6c55ace64c Binary files /dev/null and b/blockchains/arbitrum/assets/0x6dAF586B7370B14163171544fca24AbcC0862ac5/logo.png differ diff --git a/blockchains/arbitrum/assets/0x6fD58f5a2F3468e35fEb098b5F59F04157002407/info.json b/blockchains/arbitrum/assets/0x6fD58f5a2F3468e35fEb098b5F59F04157002407/info.json new file mode 100644 index 0000000000000..f3db6daf74d05 --- /dev/null +++ b/blockchains/arbitrum/assets/0x6fD58f5a2F3468e35fEb098b5F59F04157002407/info.json @@ -0,0 +1,21 @@ +{ + "name": "poor guy", + "website": "https://www.pogai.org/", + "description": "A meme token.", + "explorer": "https://arbiscan.io/token/0x6fd58f5a2f3468e35feb098b5f59f04157002407", + "type": "ARBITRUM", + "symbol": "pogai", + "decimals": 18, + "status": "active", + "id": "0x6fD58f5a2F3468e35fEb098b5F59F04157002407", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pogai/" + }, + { + "name": "twitter", + "url": "https://twitter.com/_pogai_" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x6fD58f5a2F3468e35fEb098b5F59F04157002407/logo.png b/blockchains/arbitrum/assets/0x6fD58f5a2F3468e35fEb098b5F59F04157002407/logo.png new file mode 100644 index 0000000000000..64519f76c3cde Binary files /dev/null and b/blockchains/arbitrum/assets/0x6fD58f5a2F3468e35fEb098b5F59F04157002407/logo.png differ diff --git a/blockchains/arbitrum/assets/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/info.json b/blockchains/arbitrum/assets/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/info.json new file mode 100644 index 0000000000000..f6d4f7ef66588 --- /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 0000000000000..c43b83973316f Binary files /dev/null and b/blockchains/arbitrum/assets/0x7Be5Dd337CC6cE3e474F64E2A92A566445290864/logo.png differ diff --git a/blockchains/arbitrum/assets/0x847503FbF003cE8B005546Aa3c03B80b7C2F9771/info.json b/blockchains/arbitrum/assets/0x847503FbF003cE8B005546Aa3c03B80b7C2F9771/info.json new file mode 100644 index 0000000000000..430391af002bc --- /dev/null +++ b/blockchains/arbitrum/assets/0x847503FbF003cE8B005546Aa3c03B80b7C2F9771/info.json @@ -0,0 +1,25 @@ +{ + "name": "Byte", + "type": "ARBITRUM", + "symbol": "BYTE", + "decimals": 9, + "website": "https://www.bytedog.ai/", + "description": "Byte ($BYTE) is a novel ERC meme token that creatively intertwines the worlds of cryptocurrency and popular culture. Inspired by Elon Musk's announcement of naming his dog 'Byte' in reference to his Grok AI project.", + "explorer": "https://arbiscan.io/token/0x580e933d90091b9ce380740e3a4a39c67eb85b4c", + "status": "active", + "id": "0x847503FbF003cE8B005546Aa3c03B80b7C2F9771", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Byte_Erc20" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/byte/" + }, + { + "name": "telegram", + "url": "https://t.me/Byte_ERC20" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x847503FbF003cE8B005546Aa3c03B80b7C2F9771/logo.png b/blockchains/arbitrum/assets/0x847503FbF003cE8B005546Aa3c03B80b7C2F9771/logo.png new file mode 100644 index 0000000000000..637961cf78376 Binary files /dev/null and b/blockchains/arbitrum/assets/0x847503FbF003cE8B005546Aa3c03B80b7C2F9771/logo.png differ diff --git a/blockchains/arbitrum/assets/0x87AAfFdF26c6885f6010219208D5B161ec7609c0/info.json b/blockchains/arbitrum/assets/0x87AAfFdF26c6885f6010219208D5B161ec7609c0/info.json new file mode 100644 index 0000000000000..2f04e75226f8b --- /dev/null +++ b/blockchains/arbitrum/assets/0x87AAfFdF26c6885f6010219208D5B161ec7609c0/info.json @@ -0,0 +1,25 @@ +{ + "name": "Equation", + "website": "https://equation.org/", + "description": "Equation is a decentralized perpetual protocol built on Arbitrum.", + "explorer": "https://arbiscan.io/token/0x87AAfFdF26c6885f6010219208D5B161ec7609c0", + "type": "ARBITRUM", + "symbol": "EQU", + "decimals": 18, + "status": "active", + "id": "0x87AAfFdF26c6885f6010219208D5B161ec7609c0", + "links": [ + { + "name": "github", + "url": "https://github.com/EquationDAO" + }, + { + "name": "twitter", + "url": "https://twitter.com/EquationDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/equation/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x87AAfFdF26c6885f6010219208D5B161ec7609c0/logo.png b/blockchains/arbitrum/assets/0x87AAfFdF26c6885f6010219208D5B161ec7609c0/logo.png new file mode 100644 index 0000000000000..64a8d40c3c810 Binary files /dev/null and b/blockchains/arbitrum/assets/0x87AAfFdF26c6885f6010219208D5B161ec7609c0/logo.png differ diff --git a/blockchains/arbitrum/assets/0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8/info.json b/blockchains/arbitrum/assets/0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8/info.json new file mode 100644 index 0000000000000..f3a30ad99a483 --- /dev/null +++ b/blockchains/arbitrum/assets/0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8/info.json @@ -0,0 +1,21 @@ +{ + "name": "DMT", + "type": "ARBITRUM", + "symbol": "DMT", + "decimals": 18, + "website": "https://sankodreammachine.net/", + "description": "Arbitrum L3 Appchain Staking Powered Gaming Console Play To Win Play To Burn 1,000,000 Tokens Hard Cap ©. Sanko Dream Machine, Only Powered By $DMT.", + "explorer": "https://arbiscan.io/token/0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8", + "status": "active", + "id": "0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SankoGameCorp" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sanko-game-corp/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8/logo.png b/blockchains/arbitrum/assets/0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8/logo.png new file mode 100644 index 0000000000000..d9bf1609daad7 Binary files /dev/null and b/blockchains/arbitrum/assets/0x8B0E6f19Ee57089F7649A455D89D7bC6314D04e8/logo.png differ diff --git a/blockchains/arbitrum/assets/0x95146881b86B3ee99e63705eC87AfE29Fcc044D9/info.json b/blockchains/arbitrum/assets/0x95146881b86B3ee99e63705eC87AfE29Fcc044D9/info.json new file mode 100644 index 0000000000000..e3e460d9c6594 --- /dev/null +++ b/blockchains/arbitrum/assets/0x95146881b86B3ee99e63705eC87AfE29Fcc044D9/info.json @@ -0,0 +1,21 @@ +{ + "name": "Vertex", + "website": "https://vertexprotocol.com/", + "description": "Vertex is a cross-margined decentralized exchange (DEX) protocol offering spot, perpetuals, and an integrated money market bundled into one vertically integrated application on Arbitrum.", + "explorer": "https://arbiscan.io/token/0x95146881b86B3ee99e63705eC87AfE29Fcc044D9", + "type": "ARBITRUM", + "symbol": "VRTX", + "decimals": 18, + "status": "active", + "id": "0x95146881b86B3ee99e63705eC87AfE29Fcc044D9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/vertex_protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vertex-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x95146881b86B3ee99e63705eC87AfE29Fcc044D9/logo.png b/blockchains/arbitrum/assets/0x95146881b86B3ee99e63705eC87AfE29Fcc044D9/logo.png new file mode 100644 index 0000000000000..a404e19bda6d7 Binary files /dev/null and b/blockchains/arbitrum/assets/0x95146881b86B3ee99e63705eC87AfE29Fcc044D9/logo.png differ diff --git a/blockchains/arbitrum/assets/0x965d00aA7ABC62CA10132e641D08593435aC811d/info.json b/blockchains/arbitrum/assets/0x965d00aA7ABC62CA10132e641D08593435aC811d/info.json new file mode 100644 index 0000000000000..5350605fcabb3 --- /dev/null +++ b/blockchains/arbitrum/assets/0x965d00aA7ABC62CA10132e641D08593435aC811d/info.json @@ -0,0 +1,21 @@ +{ + "name": "KAP Games", + "type": "ARBITRUM", + "symbol": "KAP", + "decimals": 18, + "website": "https://about.kap.gg/", + "description": "KAP Games is a web3 gaming distributor, publisher & studio, specializing in browser and mobile-native experiences. Utilizing emerging technologies to unlock the next generation of gaming, KAP curates a web3 ecosystem where diverse games, innovative projects, and vibrant communities collide.", + "explorer": "https://arbiscan.io/token/0x965d00aA7ABC62CA10132e641D08593435aC811d", + "status": "active", + "id": "0x965d00aA7ABC62CA10132e641D08593435aC811d", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/KAPGamesGG" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kap-games/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x965d00aA7ABC62CA10132e641D08593435aC811d/logo.png b/blockchains/arbitrum/assets/0x965d00aA7ABC62CA10132e641D08593435aC811d/logo.png new file mode 100644 index 0000000000000..1aee547488af7 Binary files /dev/null and b/blockchains/arbitrum/assets/0x965d00aA7ABC62CA10132e641D08593435aC811d/logo.png differ diff --git a/blockchains/arbitrum/assets/0x982239D38Af50B0168dA33346d85Fb12929c4c07/info.json b/blockchains/arbitrum/assets/0x982239D38Af50B0168dA33346d85Fb12929c4c07/info.json new file mode 100644 index 0000000000000..4e1a37d1f4b3b --- /dev/null +++ b/blockchains/arbitrum/assets/0x982239D38Af50B0168dA33346d85Fb12929c4c07/info.json @@ -0,0 +1,21 @@ +{ + "name": "Arbitrove Governance Token", + "type": "ARBITRUM", + "symbol": "TROVE", + "decimals": 18, + "website": "https://nitrocartel.finance/arbitrove", + "description": "Nitro Cartel will aggressively strive to solve the problem by mobilizing crypto’s citizens into the collective cartelization of financial and human capital.", + "explorer": "https://arbiscan.io/token/0x982239d38af50b0168da33346d85fb12929c4c07", + "status": "active", + "id": "0x982239D38Af50B0168dA33346d85Fb12929c4c07", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/nitrocartel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nitro-cartel/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x982239D38Af50B0168dA33346d85Fb12929c4c07/logo.png b/blockchains/arbitrum/assets/0x982239D38Af50B0168dA33346d85Fb12929c4c07/logo.png new file mode 100644 index 0000000000000..59df7489445dd Binary files /dev/null and b/blockchains/arbitrum/assets/0x982239D38Af50B0168dA33346d85Fb12929c4c07/logo.png differ diff --git a/blockchains/arbitrum/assets/0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE/info.json b/blockchains/arbitrum/assets/0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE/info.json new file mode 100644 index 0000000000000..1fa96a54cc6c8 --- /dev/null +++ b/blockchains/arbitrum/assets/0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE/info.json @@ -0,0 +1,32 @@ +{ + "name": "beefy.finance", + "symbol": "BIFI", + "type": "ARBITRUM", + "decimals": 18, + "description": "The MultiChain Yield Optimizer", + "website": "https://beefy.finance/", + "explorer": "https://arbiscan.io/token/0x99c409e5f62e4bd2ac142f17cafb6810b8f0baae", + "status": "active", + "id": "0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/beefyfinance" + }, + { + "name": "telegram", + "url": "https://t.me/beefyfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/beefy-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/beefy-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/logo.png b/blockchains/arbitrum/assets/0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/logo.png rename to blockchains/arbitrum/assets/0x99C409E5f62E4bd2AC142f17caFb6810B8F0BAAE/logo.png diff --git a/blockchains/arbitrum/assets/0x9E758B8a98a42d612b3D38B66a22074DC03D7370/info.json b/blockchains/arbitrum/assets/0x9E758B8a98a42d612b3D38B66a22074DC03D7370/info.json new file mode 100644 index 0000000000000..c017b9b2aaccf --- /dev/null +++ b/blockchains/arbitrum/assets/0x9E758B8a98a42d612b3D38B66a22074DC03D7370/info.json @@ -0,0 +1,32 @@ +{ + "name": "Symbiosis", + "type": "ARBITRUM", + "symbol": "SIS", + "decimals": 18, + "website": "https://symbiosis.finance", + "description": "Symbiosis aggregates decentralized exchange liquidity across any EVM and non-EVM networks. Swap any token and transfer liquidity. Yes, any.", + "explorer": "https://arbiscan.io/token/0x9e758b8a98a42d612b3d38b66a22074dc03d7370", + "status": "active", + "id": "0x9E758B8a98a42d612b3D38B66a22074DC03D7370", + "links": [ + { + "name": "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/arbitrum/assets/0x9E758B8a98a42d612b3D38B66a22074DC03D7370/logo.png b/blockchains/arbitrum/assets/0x9E758B8a98a42d612b3D38B66a22074DC03D7370/logo.png new file mode 100644 index 0000000000000..26f3dbd585377 Binary files /dev/null and b/blockchains/arbitrum/assets/0x9E758B8a98a42d612b3D38B66a22074DC03D7370/logo.png differ diff --git a/blockchains/arbitrum/assets/0x9b3fa2A7C3EB36d048A5d38d81E7fAFC6bc47B25/info.json b/blockchains/arbitrum/assets/0x9b3fa2A7C3EB36d048A5d38d81E7fAFC6bc47B25/info.json new file mode 100644 index 0000000000000..fbaa4ae98f246 --- /dev/null +++ b/blockchains/arbitrum/assets/0x9b3fa2A7C3EB36d048A5d38d81E7fAFC6bc47B25/info.json @@ -0,0 +1,11 @@ +{ + "name": "Aluna Token", + "website": "https://aluna.social", + "description": "Aluna Social - Multi-exchange Social Trading Terminal for Crypto Traders and Investors", + "explorer": "https://arbiscan.io/token/0x9b3fa2a7c3eb36d048a5d38d81e7fafc6bc47b25", + "type": "ARBITRUM", + "symbol": "ALN", + "decimals": 18, + "status": "active", + "id": "0x9b3fa2A7C3EB36d048A5d38d81E7fAFC6bc47B25" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x9b3fa2A7C3EB36d048A5d38d81E7fAFC6bc47B25/logo.png b/blockchains/arbitrum/assets/0x9b3fa2A7C3EB36d048A5d38d81E7fAFC6bc47B25/logo.png new file mode 100644 index 0000000000000..d1cb853185d32 Binary files /dev/null and b/blockchains/arbitrum/assets/0x9b3fa2A7C3EB36d048A5d38d81E7fAFC6bc47B25/logo.png differ diff --git a/blockchains/arbitrum/assets/0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA/info.json b/blockchains/arbitrum/assets/0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA/info.json new file mode 100644 index 0000000000000..d0122f7c381f6 --- /dev/null +++ b/blockchains/arbitrum/assets/0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA/info.json @@ -0,0 +1,11 @@ +{ + "name": "Ferrum Network", + "website": "https://ferrum.network", + "description": "Ferrum Network aims to empower individuals with decentralized financial technology.", + "explorer": "https://arbiscan.io/token/0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA", + "type": "ARBITRUM", + "symbol": "FRM", + "decimals": 18, + "status": "active", + "id": "0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA/logo.png b/blockchains/arbitrum/assets/0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA/logo.png new file mode 100644 index 0000000000000..2053bae10dfff Binary files /dev/null and b/blockchains/arbitrum/assets/0x9f6AbbF0Ba6B5bfa27f4deb6597CC6Ec20573FDA/logo.png differ diff --git a/blockchains/arbitrum/assets/0xB299751B088336E165dA313c33e3195B8c6663A6/info.json b/blockchains/arbitrum/assets/0xB299751B088336E165dA313c33e3195B8c6663A6/info.json new file mode 100644 index 0000000000000..09f09536d7f57 --- /dev/null +++ b/blockchains/arbitrum/assets/0xB299751B088336E165dA313c33e3195B8c6663A6/info.json @@ -0,0 +1,21 @@ +{ + "name": "StarHeroes", + "type": "ARBITRUM", + "symbol": "STAR", + "decimals": 18, + "website": "https://starheroes.io/", + "description": "StarHeroes: pioneering multiplayer space shooter esports game by GameSwift's STAR studio. Early Access debuts Q2 2024 with 400k pre-registrations. Get ready for the first Decentralized Esports Tournament, featuring a $1.6m prize pool.", + "explorer": "https://arbiscan.io/token/0xb299751b088336e165da313c33e3195b8c6663a6", + "status": "active", + "id": "0xB299751B088336E165dA313c33e3195B8c6663A6", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/starheroes_game" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/starheroes/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xB299751B088336E165dA313c33e3195B8c6663A6/logo.png b/blockchains/arbitrum/assets/0xB299751B088336E165dA313c33e3195B8c6663A6/logo.png new file mode 100644 index 0000000000000..9de4e29258993 Binary files /dev/null and b/blockchains/arbitrum/assets/0xB299751B088336E165dA313c33e3195B8c6663A6/logo.png differ diff --git a/blockchains/arbitrum/assets/0xB9AF4762c039D63e30039F1712dfaB77026408c7/info.json b/blockchains/arbitrum/assets/0xB9AF4762c039D63e30039F1712dfaB77026408c7/info.json new file mode 100644 index 0000000000000..34f4724abadae --- /dev/null +++ b/blockchains/arbitrum/assets/0xB9AF4762c039D63e30039F1712dfaB77026408c7/info.json @@ -0,0 +1,25 @@ +{ + "name": "BullBear AI", + "type": "ARBITRUM", + "symbol": "AIBB", + "decimals": 18, + "website": "https://bull-bear.ai/", + "description": "BullBear AI is developed using AI to predict the BULL and BEAR markets through User Behaviors and Price Action, generating profit for users.", + "explorer": "https://arbiscan.io/token/0xb9af4762c039d63e30039f1712dfab77026408c7", + "status": "active", + "id": "0xB9AF4762c039D63e30039F1712dfaB77026408c7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bullbear_ai" + }, + { + "name": "telegram", + "url": "https://t.me/ai_bullbear" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bullbear-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xB9AF4762c039D63e30039F1712dfaB77026408c7/logo.png b/blockchains/arbitrum/assets/0xB9AF4762c039D63e30039F1712dfaB77026408c7/logo.png new file mode 100644 index 0000000000000..1711648e0142f Binary files /dev/null and b/blockchains/arbitrum/assets/0xB9AF4762c039D63e30039F1712dfaB77026408c7/logo.png differ diff --git a/blockchains/arbitrum/assets/0xC9C4fd7579133701FA2769b6955e7E56bb386DB1/info.json b/blockchains/arbitrum/assets/0xC9C4fd7579133701FA2769b6955e7E56bb386DB1/info.json new file mode 100644 index 0000000000000..187fd6e45e683 --- /dev/null +++ b/blockchains/arbitrum/assets/0xC9C4fd7579133701FA2769b6955e7E56bb386DB1/info.json @@ -0,0 +1,48 @@ +{ + "name": "Bridge Token", + "website": "https://bridge.link", + "description": "Bridge Oracle System is a technology through which external data can be injected.", + "explorer": "https://arbiscan.io/token/0xc9c4fd7579133701fa2769b6955e7e56bb386db1", + "type": "ARBITRUM", + "symbol": "BRG", + "decimals": 18, + "status": "active", + "id": "0xC9C4fd7579133701FA2769b6955e7E56bb386DB1", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bridge_oracle" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bridge-oracle/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/brg" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/bridge-oracle/" + }, + { + "name": "telegram", + "url": "https://t.me/Bridge_Oracle" + }, + { + "name": "github", + "url": "https://github.com/BridgeOracle" + }, + { + "name": "whitepaper", + "url": "https://bridge.link/BRG-Whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://medium.com/@bridge_oracle" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xC9C4fd7579133701FA2769b6955e7E56bb386DB1/logo.png b/blockchains/arbitrum/assets/0xC9C4fd7579133701FA2769b6955e7E56bb386DB1/logo.png new file mode 100644 index 0000000000000..10a80b0186488 Binary files /dev/null and b/blockchains/arbitrum/assets/0xC9C4fd7579133701FA2769b6955e7E56bb386DB1/logo.png differ diff --git a/blockchains/arbitrum/assets/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646/info.json b/blockchains/arbitrum/assets/0xC9CBf102c73fb77Ec14f8B4C8bd88e050a6b2646/info.json new file mode 100644 index 0000000000000..35c6d505c6ba5 --- /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 0000000000000..c6fa133d0e3f0 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 0000000000000..c44a77b92abfb --- /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 0000000000000..c43b83973316f Binary files /dev/null and b/blockchains/arbitrum/assets/0xD4d026322C88C2d49942A75DfF920FCfbC5614C1/logo.png differ diff --git a/blockchains/arbitrum/assets/0xDFB8BE6F8c87f74295A87de951974362CedCFA30/info.json b/blockchains/arbitrum/assets/0xDFB8BE6F8c87f74295A87de951974362CedCFA30/info.json new file mode 100644 index 0000000000000..e4b48febc26aa --- /dev/null +++ b/blockchains/arbitrum/assets/0xDFB8BE6F8c87f74295A87de951974362CedCFA30/info.json @@ -0,0 +1,21 @@ +{ + "name": "EdgeMatrix Computing network", + "type": "ARBITRUM", + "symbol": "EMC", + "decimals": 18, + "website": "https://edgematrix.pro/", + "description": "EMC (EdgeMatrix Computing) is a decentralized computing network in the AI era.", + "explorer": "https://arbiscan.io/token/0xdfb8be6f8c87f74295a87de951974362cedcfa30", + "status": "active", + "id": "0xDFB8BE6F8c87f74295A87de951974362CedCFA30", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/EMCprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/edge-matrix-computing/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xDFB8BE6F8c87f74295A87de951974362CedCFA30/logo.png b/blockchains/arbitrum/assets/0xDFB8BE6F8c87f74295A87de951974362CedCFA30/logo.png new file mode 100644 index 0000000000000..7c9c654401048 Binary files /dev/null and b/blockchains/arbitrum/assets/0xDFB8BE6F8c87f74295A87de951974362CedCFA30/logo.png differ diff --git a/blockchains/arbitrum/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json b/blockchains/arbitrum/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json new file mode 100644 index 0000000000000..1967f91919d1f --- /dev/null +++ b/blockchains/arbitrum/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json @@ -0,0 +1,11 @@ +{ + "name": "O3 Swap", + "type": "ARBITRUM", + "symbol": "O3", + "decimals": 18, + "website": "https://o3swap.com", + "description": "O3 Swap Token (O3) is a governance token issued by O3 Swap. It is an important mediator to promote the development of the O3 Swap network. All participants and developers are encouraged to participate in the maintenance of the overall ecological network by staking, voting, etc. we are committed to providing a one-stop aggregation & exchange platform for users and offering developers access to an open, distributed, friendly, and secure trading environment.", + "explorer": "https://arbiscan.io/token/0xee9801669c6138e84bd50deb500827b776777d28", + "status": "active", + "id": "0xEe9801669C6138E84bD50dEB500827b776777d28" +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png b/blockchains/arbitrum/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png new file mode 100644 index 0000000000000..8327b516fef6e Binary files /dev/null and b/blockchains/arbitrum/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png differ diff --git a/blockchains/arbitrum/assets/0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930/info.json b/blockchains/arbitrum/assets/0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930/info.json new file mode 100644 index 0000000000000..ab4349f899548 --- /dev/null +++ b/blockchains/arbitrum/assets/0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wall Street Games", + "website": "https://wsg.gg", + "description": "Wall Street Games is a next generation hybrid blockchain-based online gaming platform, where players battle each other in fun & addicting simple games for rewards in cryptocurrencies!", + "explorer": "https://arbiscan.io/token/0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930", + "type": "ARBITRUM", + "symbol": "WSG", + "decimals": 18, + "status": "active", + "id": "0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/WSGToken" + }, + { + "name": "telegram", + "url": "https://t.me/wallstreetgamesarb" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wall-street-games-new/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930/logo.png b/blockchains/arbitrum/assets/0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930/logo.png new file mode 100644 index 0000000000000..b343e016ab2c4 Binary files /dev/null and b/blockchains/arbitrum/assets/0xEf04804E1e474D3F9B73184D7ef5D786F3Fce930/logo.png differ diff --git a/blockchains/arbitrum/assets/0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7/info.json b/blockchains/arbitrum/assets/0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7/info.json new file mode 100644 index 0000000000000..6d28efbf911c6 --- /dev/null +++ b/blockchains/arbitrum/assets/0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7/info.json @@ -0,0 +1,34 @@ +{ +"name": "EURA", +"website": "https://www.angle.money/", +"description": "EURA is an over-collateralized and decentralized Euro stablecoin by the Angle Protocol.", +"explorer": "https://arbiscan.io/token/0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7", +"type": "ARBITRUM", +"symbol": "EURA", +"decimals": 18, +"status": "active", +"tags": ["defi", "stablecoin"], +"id": "0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7", +"links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } +] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7/logo.png b/blockchains/arbitrum/assets/0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7/logo.png new file mode 100644 index 0000000000000..b80f4f7f9341b Binary files /dev/null and b/blockchains/arbitrum/assets/0xFA5Ed56A203466CbBC2430a43c66b9D8723528E7/logo.png differ diff --git a/blockchains/arbitrum/assets/0xFEa7a6a0B346362BF88A9e4A88416B77a57D6c2A/info.json b/blockchains/arbitrum/assets/0xFEa7a6a0B346362BF88A9e4A88416B77a57D6c2A/info.json new file mode 100644 index 0000000000000..1a5d0e063f22c --- /dev/null +++ b/blockchains/arbitrum/assets/0xFEa7a6a0B346362BF88A9e4A88416B77a57D6c2A/info.json @@ -0,0 +1,25 @@ +{ + "name": "Magic Internet Money", + "website": "https://abracadabra.money/", + "description": "MIM is a stablecoin backed by interest bearing collateral", + "explorer": "https://arbiscan.io/token/0xfea7a6a0b346362bf88a9e4a88416b77a57d6c2a", + "type": "ARBITRUM", + "symbol": "MIM", + "decimals": 18, + "status": "active", + "id": "0xFEa7a6a0B346362BF88A9e4A88416B77a57D6c2A", + "links": [ + { + "name": "github", + "url": "https://github.com/Abracadabra-money/magic-internet-money" + }, + { + "name": "twitter", + "url": "https://twitter.com/MIM_Spell" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/magic-internet-money/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xFEa7a6a0B346362BF88A9e4A88416B77a57D6c2A/logo.png b/blockchains/arbitrum/assets/0xFEa7a6a0B346362BF88A9e4A88416B77a57D6c2A/logo.png new file mode 100644 index 0000000000000..4101813265fa1 Binary files /dev/null and b/blockchains/arbitrum/assets/0xFEa7a6a0B346362BF88A9e4A88416B77a57D6c2A/logo.png differ diff --git a/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json b/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/info.json index b505b8991e2ec..28eecb3f4ea3f 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/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0/info.json b/blockchains/arbitrum/assets/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0/info.json new file mode 100644 index 0000000000000..663f7790df7a2 --- /dev/null +++ b/blockchains/arbitrum/assets/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0/info.json @@ -0,0 +1,38 @@ +{ + "name": "Uniswap", + "website": "https://uniswap.org", + "description": "UNI is the Uniswap protocol token. Uniswap is a decentralized protocol for automated liquidity provision on Ethereum.", + "explorer": "https://arbiscan.io/token/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0", + "research": "https://research.binance.com/en/projects/uniswap", + "type": "ARBITRUM", + "symbol": "UNI", + "decimals": 18, + "status": "active", + "id": "0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/XErMcTq" + }, + { + "name": "twitter", + "url": "https://twitter.com/UniswapProtocol" + }, + { + "name": "blog", + "url": "https://uniswap.org/blog/uni/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uniswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uniswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0/logo.png b/blockchains/arbitrum/assets/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0/logo.png new file mode 100644 index 0000000000000..893ef55cb23c0 Binary files /dev/null and b/blockchains/arbitrum/assets/0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0/logo.png differ diff --git a/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/info.json b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/info.json new file mode 100644 index 0000000000000..c2de58649d1e0 --- /dev/null +++ b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/info.json @@ -0,0 +1,28 @@ +{ + "name": "USD Coin", + "type": "ARBITRUM", + "symbol": "USDC", + "decimals": 6, + "website": "https://www.centre.io/usdc", + "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", + "explorer": "https://arbiscan.io/token/0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "status": "active", + "id": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/usd-coin/" + }, + { + "name": "blog", + "url": "https://centre.io/blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/logo.png b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/logo.png new file mode 100644 index 0000000000000..a135c887a8614 Binary files /dev/null and b/blockchains/arbitrum/assets/0xaf88d065e77c8cC2239327C5EDb3A432268e5831/logo.png differ diff --git a/blockchains/arbitrum/assets/0xb9600c807f069D27f92a2a65b48F12Eeef7e2007/info.json b/blockchains/arbitrum/assets/0xb9600c807f069D27f92a2a65b48F12Eeef7e2007/info.json new file mode 100644 index 0000000000000..03fca4da4cc7f --- /dev/null +++ b/blockchains/arbitrum/assets/0xb9600c807f069D27f92a2a65b48F12Eeef7e2007/info.json @@ -0,0 +1,48 @@ +{ + "name": "Altranium", + "type": "ARBITRUM", + "symbol": "ALTR", + "decimals": 18, + "website": "https://altranium.com/", + "description": "Altranium coin comes fully equipped with the cogitating & imperative ecosystem with the emerging and integrated technologies which can build DeFi, SocialFi, GameFi and metaverses. ALTR hones the ability to process tokens deploying full decentralize systems such as DeFi on Ethereum, by using the native Blockchain to create the interactive visual experiences, enhancing the experience further with VR (Virtual Reality) Media Codec within Metaverse(s) as well as CRE (Corporate Real Estate)", + "explorer": "https://arbiscan.io/token/0xb9600c807f069d27f92a2a65b48f12eeef7e2007", + "status": "active", + "id": "0xb9600c807f069D27f92a2a65b48F12Eeef7e2007", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/altranium" + }, + { + "name": "github", + "url": "https://github.com/ALTRANIUM" + }, + { + "name": "telegram", + "url": "https://t.me/altranium" + }, + { + "name": "medium", + "url": "https://medium.com/@altranium_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/altranium/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/altranium" + }, + { + "name": "discord", + "url": "https://discord.com/invite/altranium" + }, + { + "name": "reddit", + "url": "https://reddit.com/Altraniyumm/" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/arbitrum/assets/0xb9600c807f069D27f92a2a65b48F12Eeef7e2007/logo.png b/blockchains/arbitrum/assets/0xb9600c807f069D27f92a2a65b48F12Eeef7e2007/logo.png new file mode 100644 index 0000000000000..c04093e34c5e6 Binary files /dev/null and b/blockchains/arbitrum/assets/0xb9600c807f069D27f92a2a65b48F12Eeef7e2007/logo.png differ diff --git a/blockchains/arbitrum/assets/0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b/info.json b/blockchains/arbitrum/assets/0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b/info.json new file mode 100644 index 0000000000000..e993d4a05c485 --- /dev/null +++ b/blockchains/arbitrum/assets/0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b/info.json @@ -0,0 +1,36 @@ +{ + "name": "Wootrade Network", + "type": "ARBITRUM", + "symbol": "WOO", + "decimals": 18, + "website": "https://woo.network", + "description": "Wootrade aims to provide deep liquidity and superior order execution at the lowest cost for traders, exchanges, institutions, and DeFi platforms. Its flagship, WOO X, is a professional trading platform featuring customizable modules, and zero-fees with deep liquidity across spot and margin. Wootrade was founded by Kronos Research, a quantitative trading firm generating $10-15B in daily volume, with the goal of democratizing access to deep liquidity and yield strategies through various products.", + "explorer": "https://arbiscan.io/token/0xcafcd85d8ca7ad1e1c6f82f651fa15e33aefd07b", + "status": "active", + "id": "0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/wootrade" + }, + { + "name": "blog", + "url": "https://medium.com/@wootrade" + }, + { + "name": "facebook", + "url": "https://facebook.com/Wootrade" + }, + { + "name": "whitepaper", + "url": "https://woo.network/Litepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wootrade-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b/logo.png b/blockchains/arbitrum/assets/0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b/logo.png new file mode 100644 index 0000000000000..5cd7c39954306 Binary files /dev/null and b/blockchains/arbitrum/assets/0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b/logo.png differ diff --git a/blockchains/arbitrum/assets/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04/info.json b/blockchains/arbitrum/assets/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04/info.json new file mode 100644 index 0000000000000..c4c71265b6a78 --- /dev/null +++ b/blockchains/arbitrum/assets/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04/info.json @@ -0,0 +1,56 @@ +{ + "name": "CoW Protocol Token", + "type": "ARBITRUM", + "symbol": "COW", + "decimals": 18, + "website": "https://cow.fi", + "description": "COW token allows its holders the right to govern and curate the infrastructure of the CoW Protocol ecosystem through the CowDAO. Additionally, COW token holders receive fee discounts when trading on CowSwap & some other perks.", + "explorer": "https://arbiscan.io/token/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04", + "status": "active", + "id": "0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CoWSwap" + }, + { + "name": "github", + "url": "https://github.com/cowprotocol" + }, + { + "name": "source_code", + "url": "https://github.com/cowprotocol/token" + }, + { + "name": "blog", + "url": "https://blog.cow.fi" + }, + { + "name": "docs", + "url": "https://docs.cow.fi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cowprotocol" + }, + { + "name": "forum", + "url": "https://forum.cow.fi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cow-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cow-protocol" + }, + { + "name": "youtube", + "url": "https://youtube.com/@CoWSwap" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/arbitrum/assets/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04/logo.png b/blockchains/arbitrum/assets/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04/logo.png new file mode 100644 index 0000000000000..8df3f5b49a612 Binary files /dev/null and b/blockchains/arbitrum/assets/0xcb8b5CD20BdCaea9a010aC1F8d835824F5C87A04/logo.png differ diff --git a/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/info.json b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/info.json new file mode 100644 index 0000000000000..add0e210f82bf --- /dev/null +++ b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/info.json @@ -0,0 +1,30 @@ +{ + "name": "SushiSwap", + "website": "https://sushiswap.fi", + "description": "SushiSwap claims to be an evolution of #Uniswap with $SUSHI tokenomics.", + "explorer": "https://arbiscan.io/token/0xd4d42f0b6def4ce0383636770ef773390d85c61a", + "type": "ARBITRUM", + "symbol": "SUSHI", + "decimals": 18, + "status": "active", + "id": "0xd4d42F0b6DEF4CE0383636770eF773390d85c61A", + "tags": [ + "defi", + "governance", + "nft" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/sushiswap" + }, + { + "name": "twitter", + "url": "https://twitter.com/sushiswap" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sushi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/logo.png b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/logo.png new file mode 100644 index 0000000000000..37523b87fe8a7 Binary files /dev/null and b/blockchains/arbitrum/assets/0xd4d42F0b6DEF4CE0383636770eF773390d85c61A/logo.png differ diff --git a/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/info.json b/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/info.json new file mode 100644 index 0000000000000..9caf25d228d13 --- /dev/null +++ b/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/info.json @@ -0,0 +1,29 @@ +{ + "name": "Tellor", + "website": "https://tellor.io", + "description": "Tellor (a decentralized oracle) aims to address the Oracle problem on Ethereum.", + "explorer": "https://arbiscan.io/token/0xd58D345Fd9c82262E087d2D0607624B410D88242", + "type": "ARBITRUM", + "symbol": "TRB", + "decimals": 18, + "status": "active", + "id": "0xd58D345Fd9c82262E087d2D0607624B410D88242", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/WeAreTellor" + }, + { + "name": "telegram", + "url": "https://t.me/tellor" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tellor/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tellor/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/logo.png b/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/logo.png new file mode 100644 index 0000000000000..f1295da4329a3 Binary files /dev/null and b/blockchains/arbitrum/assets/0xd58D345Fd9c82262E087d2D0607624B410D88242/logo.png differ diff --git a/blockchains/arbitrum/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/info.json b/blockchains/arbitrum/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/info.json new file mode 100644 index 0000000000000..1adf0d0b19f12 --- /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 0000000000000..5bf18545dfb5a Binary files /dev/null and b/blockchains/arbitrum/assets/0xdA0a57B710768ae17941a9Fa33f8B720c8bD9ddD/logo.png differ diff --git a/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/info.json b/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/info.json new file mode 100644 index 0000000000000..467d842ad05e8 --- /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 0000000000000..be41fceadd36f Binary files /dev/null and b/blockchains/arbitrum/assets/0xdA661fa59320B808c5a6d23579fCfEdf1FD3cf36/logo.png differ diff --git a/blockchains/arbitrum/assets/0xe4DDDfe67E7164b0FE14E218d80dC4C08eDC01cB/info.json b/blockchains/arbitrum/assets/0xe4DDDfe67E7164b0FE14E218d80dC4C08eDC01cB/info.json new file mode 100644 index 0000000000000..ef32f6bc09055 --- /dev/null +++ b/blockchains/arbitrum/assets/0xe4DDDfe67E7164b0FE14E218d80dC4C08eDC01cB/info.json @@ -0,0 +1,15 @@ +{ + "name": "Kyber Network", + "website": "https://kyber.network", + "description": "Kyber Network’s on-chain liquidity protocol allows decentralized token swaps to be integrated into any application, enabling value exchange to be performed seamlessly between all parties in the ecosystem.", + "explorer": "https://arbiscan.io/token/0xe4dddfe67e7164b0fe14e218d80dc4c08edc01cb", + "type": "ARBITRUM", + "symbol": "KNC", + "decimals": 18, + "status": "active", + "id": "0xe4DDDfe67E7164b0FE14E218d80dC4C08eDC01cB", + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xe4DDDfe67E7164b0FE14E218d80dC4C08eDC01cB/logo.png b/blockchains/arbitrum/assets/0xe4DDDfe67E7164b0FE14E218d80dC4C08eDC01cB/logo.png new file mode 100644 index 0000000000000..8f845a1c6bb79 Binary files /dev/null and b/blockchains/arbitrum/assets/0xe4DDDfe67E7164b0FE14E218d80dC4C08eDC01cB/logo.png differ diff --git a/blockchains/arbitrum/assets/0xf0a479C9c3378638EC603b8B6B0d75903902550B/info.json b/blockchains/arbitrum/assets/0xf0a479C9c3378638EC603b8B6B0d75903902550B/info.json new file mode 100644 index 0000000000000..103310dd7f10e --- /dev/null +++ b/blockchains/arbitrum/assets/0xf0a479C9c3378638EC603b8B6B0d75903902550B/info.json @@ -0,0 +1,25 @@ +{ + "name": "CATCH", + "type": "ARBITRUM", + "symbol": "CATCH", + "decimals": 18, + "website": "https://spacecatch.io/", + "description": "SpaceCatch is a next-generation AR game driven by complex artificial intelligence. Build your Hero, protect the human Metaverse, train your avatar, defeat aliens, earn rewards, and show that you are more intelligent than AI.", + "explorer": "https://arbiscan.io/token/0xf0a479C9c3378638EC603b8B6B0d75903902550B", + "status": "active", + "id": "0xf0a479C9c3378638EC603b8B6B0d75903902550B", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/spacecatch_io" + }, + { + "name": "telegram", + "url": "https://t.me/spacecatch_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spacecatch/" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xf0a479C9c3378638EC603b8B6B0d75903902550B/logo.png b/blockchains/arbitrum/assets/0xf0a479C9c3378638EC603b8B6B0d75903902550B/logo.png new file mode 100644 index 0000000000000..338f6dea50fcb Binary files /dev/null and b/blockchains/arbitrum/assets/0xf0a479C9c3378638EC603b8B6B0d75903902550B/logo.png differ diff --git a/blockchains/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/info.json b/blockchains/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/info.json new file mode 100644 index 0000000000000..91194f2418cd4 --- /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 0000000000000..ba89f2dd8dd05 Binary files /dev/null and b/blockchains/arbitrum/assets/0xf3C091ed43de9c270593445163a41A876A0bb3dd/logo.png differ diff --git a/blockchains/arbitrum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/arbitrum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 0000000000000..a9cc57d30744b --- /dev/null +++ b/blockchains/arbitrum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lorenzo stBTC", + "type": "ARBITRUM", + "symbol": "stBTC", + "decimals": 18, + "website": "https://www.lorenzo-protocol.xyz/", + "description": "To be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "explorer": "https://arbiscan.io/token/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "status": "active", + "id": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LorenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/lorenzoprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/arbitrum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png b/blockchains/arbitrum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png new file mode 100644 index 0000000000000..d0c4e5f85eb2b Binary files /dev/null and b/blockchains/arbitrum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/info.json b/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/info.json new file mode 100644 index 0000000000000..0b39d1bc370aa --- /dev/null +++ b/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/info.json @@ -0,0 +1,32 @@ +{ + "name": "Chainlink", + "website": "https://chain.link", + "description": "Chainlink is a decentralized oracle service, which aims to connect smart contracts with data from the real world. Oracles are needed to function as data feeds in smart contracts. Oracles provide external data (e.g. temperature, weather) that can drive smart contract executions. Participants on the network are incentivized (through rewards) to provide smart contracts with access to external data feeds.", + "explorer": "https://arbiscan.io/token/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4", + "type": "ARBITRUM", + "symbol": "LINK", + "decimals": 18, + "status": "active", + "id": "0xf97f4df75117a78c1A5a0DBb814Af92458539FB4", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/smartcontractkit/chainlink" + }, + { + "name": "twitter", + "url": "https://twitter.com/chainlink" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/chainlink" + }, + { + "name": "whitepaper", + "url": "https://link.smartcontract.com/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/logo.png b/blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/logo.png similarity index 100% rename from blockchains/cronos/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/logo.png rename to blockchains/arbitrum/assets/0xf97f4df75117a78c1A5a0DBb814Af92458539FB4/logo.png diff --git a/blockchains/arbitrum/info/info.json b/blockchains/arbitrum/info/info.json index 6f8e9fa49ac87..c76d729d474c9 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 5d45603829714..4b0809ad13cc2 100644 --- a/blockchains/arbitrum/tokenlist.json +++ b/blockchains/arbitrum/tokenlist.json @@ -17,8 +17,8 @@ "asset": "c10042221_t0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8", "type": "ARBITRUM", "address": "0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8", - "name": "USD Coin (Arb1)", - "symbol": "USDC", + "name": "Bridged USDC", + "symbol": "USDC.e", "decimals": 6, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/arbitrum/assets/0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8/logo.png", "pairs": [] diff --git a/blockchains/arbitrumgoerli/info/info.json b/blockchains/arbitrumgoerli/info/info.json index d2b0f4cd5e934..3daf8322dd933 100644 --- a/blockchains/arbitrumgoerli/info/info.json +++ b/blockchains/arbitrumgoerli/info/info.json @@ -4,7 +4,7 @@ "description": "The Alchemy Goerli faucet is free, fast, and does not require authentication, though you can optionally login to Alchemy to get an increased drip.", "explorer": "https://goerli.arbiscan.io/", "research": "https://goerli.net/#about", - "symbol": "AGOR", + "symbol": "tAGOR", "rpc_url": "https://goerli-rollup.arbitrum.io/rpc", "type": "coin", "decimals": 18, diff --git a/blockchains/aurora/info/info.json b/blockchains/aurora/info/info.json index 8c83c6b4cf0cc..60766601bb90c 100644 --- a/blockchains/aurora/info/info.json +++ b/blockchains/aurora/info/info.json @@ -9,6 +9,9 @@ "decimals": 18, "rpc_url": "https://mainnet.aurora.dev", "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "twitter", diff --git a/blockchains/avalanchec/assets/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1/info.json b/blockchains/avalanchec/assets/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1/info.json new file mode 100644 index 0000000000000..1790a557f1207 --- /dev/null +++ b/blockchains/avalanchec/assets/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1/info.json @@ -0,0 +1,21 @@ +{ + "name": "KIMBO", + "website": "https://www.kimboavax.com/", + "description": "$KIMBO isn't just another token; it's a powerhouse with an incredibly dynamic community, led by the elite AVAX pioneers. It's clear as day: $KIMBO is on the fast track to becoming the absolute number 1 topdog in the crypto space.", + "explorer": "https://snowtrace.io/token/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1", + "type": "AVALANCHE", + "symbol": "KIMBO", + "decimals": 18, + "status": "active", + "id": "0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/KimboAvax" + }, + { + "name": "telegram", + "url": "https://t.me/KIMBOavax" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1/logo.png b/blockchains/avalanchec/assets/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1/logo.png new file mode 100644 index 0000000000000..7275004f56759 Binary files /dev/null and b/blockchains/avalanchec/assets/0x184ff13B3EBCB25Be44e860163A5D8391Dd568c1/logo.png differ diff --git a/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json b/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json index c98169a5987ca..9b77240f671c4 100644 --- a/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json +++ b/blockchains/avalanchec/assets/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98/info.json @@ -2,7 +2,7 @@ "name": "Binance USD", "symbol": "BUSD.e", "type": "AVALANCHE", - "decimals": 6, + "decimals": 18, "description": "The Avalanche Bridge Wrapped Binance USD. BUSD is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.", "website": "http://www.paxos.com/busd", "explorer": "https://snowtrace.io/token/0x19860CCB0A68fd4213aB9D8266F7bBf05A8dDe98", diff --git a/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json b/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json new file mode 100644 index 0000000000000..0abfbcdd4789d --- /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 0000000000000..b86b0fca332ad Binary files /dev/null and b/blockchains/avalanchec/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/logo.png differ diff --git a/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json new file mode 100644 index 0000000000000..ad47979fbe7a1 --- /dev/null +++ b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json @@ -0,0 +1,28 @@ +{ + "name": "StargateToken", + "website": "https://stargate.finance", + "description": "Stargate is a fully composable liquidity transport protocol that lives at the heart of Omnichain DeFi.", + "explorer": "https://snowtrace.io/token/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590", + "type": "AVALANCHE", + "symbol": "STG", + "decimals": 18, + "status": "active", + "id": "0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590", + "links": [ + { + "name": "medium", + "url": "https://medium.com/stargate-official" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/LEM0ELklmO1kODdh" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stargate-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png new file mode 100644 index 0000000000000..f983849d90c4f Binary files /dev/null and b/blockchains/avalanchec/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png differ diff --git a/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json b/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json index 1716d3ceaeda3..ee48d79ff92b5 100644 --- a/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json +++ b/blockchains/avalanchec/assets/0x2b2C81e08f1Af8835a78Bb2A90AE924ACE0eA4bE/info.json @@ -52,7 +52,6 @@ ], "tags": [ "staking", - "defi", - "staking-native" + "defi" ] } diff --git a/blockchains/avalanchec/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/avalanchec/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 0000000000000..884954749fd00 --- /dev/null +++ b/blockchains/avalanchec/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nya", + "type": "AVALANCHE", + "symbol": "NYA", + "decimals": 18, + "website": "https://www.nya.vip", + "description": "Explore the cultural phenomenon of Nya - the playful cat sound that's become a symbol of joy and connection. Discover how this simple word unites fans worldwide.", + "explorer": "https://snowtrace.io/token/0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "status": "active", + "id": "0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/NyaOnEarth" + }, + { + "name": "telegram", + "url": "https://t.me/NyaOnEarth" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "docs", + "url": "https://wiki.nya.vip" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png b/blockchains/avalanchec/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png new file mode 100644 index 0000000000000..c34f31c6b2335 Binary files /dev/null and b/blockchains/avalanchec/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json new file mode 100644 index 0000000000000..aac2e77689e70 --- /dev/null +++ b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json @@ -0,0 +1,21 @@ +{ + "name": "FantasyGold", + "website": "https://fantasygold.co/cgi-sys/suspendedpage.cgi", + "description": "FantasyGold was built to become a multi-purpose platform offering Ethereum Virtual Machine based smart contracts and lightning fast transactions.", + "explorer": "https://snowtrace.io/token/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "type": "AVALANCHE", + "symbol": "FGC", + "decimals": 18, + "status": "active", + "id": "0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/fantasygoldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantasygold/" + } + ] +} diff --git a/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png new file mode 100644 index 0000000000000..6876a666683e6 Binary files /dev/null and b/blockchains/avalanchec/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png differ diff --git a/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/info.json b/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/info.json new file mode 100644 index 0000000000000..fdf947d991e91 --- /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 0000000000000..0ca1800e33353 Binary files /dev/null and b/blockchains/avalanchec/assets/0x420FcA0121DC28039145009570975747295f2329/logo.png differ diff --git a/blockchains/avalanchec/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/avalanchec/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 0000000000000..f054c8b8bd08c --- /dev/null +++ b/blockchains/avalanchec/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "LayerZero", + "website": "https://layerzero.network/", + "description": "LayerZero is a technology that enables applications to move data across blockchains, uniquely supporting censorship-resistant messages and permissionless development through immutable smart contracts", + "explorer": "https://snowscan.xyz/token/0x6985884c4392d348587b19cb9eaaf157f13271cd", + "type": "AVALANCHE", + "symbol": "ZRO", + "decimals": 18, + "status": "active", + "id": "0x6985884C4392D348587B19cb9eAAf157F13271cd", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LayerZero_Labs" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/VcqxYkStIDsyN2Rh" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png b/blockchains/avalanchec/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png new file mode 100644 index 0000000000000..203a846cfdf6b Binary files /dev/null and b/blockchains/avalanchec/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/avalanchec/assets/0x714f020C54cc9D104B6F4f6998C63ce2a31D1888/info.json b/blockchains/avalanchec/assets/0x714f020C54cc9D104B6F4f6998C63ce2a31D1888/info.json new file mode 100644 index 0000000000000..f66f36c248fe2 --- /dev/null +++ b/blockchains/avalanchec/assets/0x714f020C54cc9D104B6F4f6998C63ce2a31D1888/info.json @@ -0,0 +1,21 @@ +{ + "name": "Step App", + "website": "https://step.app/", + "description": "Step App (FITFI) is a project based on the Step protocol for FitFi (Fitness Finance) where users and their metaverse avatars complete fitness quests and PvP (player versus player) challenges.", + "explorer": "https://snowtrace.io/token/0x714f020c54cc9d104b6f4f6998c63ce2a31d1888", + "type": "AVALANCHE", + "symbol": "FITFI", + "decimals": 18, + "status": "active", + "id": "0x714f020C54cc9D104B6F4f6998C63ce2a31D1888", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/stepapp_" + }, + { + "name": "telegram", + "url": "https://t.me/stepappchat" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x714f020C54cc9D104B6F4f6998C63ce2a31D1888/logo.png b/blockchains/avalanchec/assets/0x714f020C54cc9D104B6F4f6998C63ce2a31D1888/logo.png new file mode 100644 index 0000000000000..981faa3d0b1d9 Binary files /dev/null and b/blockchains/avalanchec/assets/0x714f020C54cc9D104B6F4f6998C63ce2a31D1888/logo.png differ diff --git a/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/info.json b/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/info.json new file mode 100644 index 0000000000000..018532267374d --- /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 0000000000000..fa649485b6b09 Binary files /dev/null and b/blockchains/avalanchec/assets/0x8729438EB15e2C8B576fCc6AeCdA6A148776C0F5/logo.png differ diff --git a/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json b/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json index 802fbef4b3e18..9309283787294 100644 --- a/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json +++ b/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json @@ -6,7 +6,7 @@ "website": "https://www.dypius.com/", "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", "explorer": "https://snowtrace.io/token/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "status": "active", + "status": "abandoned", "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", "links": [ { @@ -41,7 +41,6 @@ "tags": [ "governance", "nft", - "defi", - "staking-native" + "defi" ] } diff --git a/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png b/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png deleted file mode 100644 index 129342cfae435..0000000000000 Binary files a/blockchains/avalanchec/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png and /dev/null differ diff --git a/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json new file mode 100644 index 0000000000000..023861a4f2883 --- /dev/null +++ b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json @@ -0,0 +1,41 @@ +{ + "name": "BNB pegged BUSD", + "website": "https://paxos.com/busd", + "description": "BNB pegged BUSD is a token issued by Binance on Smart Chain; its price is pegged to BUSD (BUSD ERC20) at a ratio of 1:1.", + "explorer": "https://snowtrace.io/token/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "AVALANCHE", + "symbol": "BUSD", + "decimals": 18, + "status": "active", + "id": "0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/binance-chain/" + }, + { + "name": "twitter", + "url": "https://twitter.com/binance_dex" + }, + { + "name": "blog", + "url": "https://binance.org/en/blog/" + }, + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binance-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png new file mode 100644 index 0000000000000..76d02e370b6d6 Binary files /dev/null and b/blockchains/avalanchec/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png differ diff --git a/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json b/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json index a028309b9b7af..3376815a6c4f4 100644 --- a/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json +++ b/blockchains/avalanchec/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json @@ -40,8 +40,7 @@ ], "tags": [ "governance", - "defi", - "staking-native" + "defi" ] } diff --git a/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/info.json b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/info.json new file mode 100644 index 0000000000000..370acd27093c6 --- /dev/null +++ b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/info.json @@ -0,0 +1,36 @@ +{ + "name": "Wootrade Network", + "type": "AVALANCHE", + "symbol": "WOO", + "decimals": 18, + "website": "https://woo.network", + "description": "Wootrade aims to provide deep liquidity and superior order execution at the lowest cost for traders, exchanges, institutions, and DeFi platforms. Its flagship, WOO X, is a professional trading platform featuring customizable modules, and zero-fees with deep liquidity across spot and margin. Wootrade was founded by Kronos Research, a quantitative trading firm generating $10-15B in daily volume, with the goal of democratizing access to deep liquidity and yield strategies through various products.", + "explorer": "https://snowtrace.io/token/0xabc9547b534519ff73921b1fba6e672b5f58d083", + "status": "active", + "id": "0xaBC9547B534519fF73921b1FBA6E672b5f58D083", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/wootrade" + }, + { + "name": "blog", + "url": "https://medium.com/@wootrade" + }, + { + "name": "facebook", + "url": "https://facebook.com/Wootrade" + }, + { + "name": "whitepaper", + "url": "https://woo.network/Litepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wootrade-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/logo.png b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/logo.png new file mode 100644 index 0000000000000..5cd7c39954306 Binary files /dev/null and b/blockchains/avalanchec/assets/0xaBC9547B534519fF73921b1FBA6E672b5f58D083/logo.png differ diff --git a/blockchains/avalanchec/assets/0xd402298a793948698b9a63311404FBBEe944eAfD/info.json b/blockchains/avalanchec/assets/0xd402298a793948698b9a63311404FBBEe944eAfD/info.json new file mode 100644 index 0000000000000..2aff7fb1cc221 --- /dev/null +++ b/blockchains/avalanchec/assets/0xd402298a793948698b9a63311404FBBEe944eAfD/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shrapnel", + "website": "https://www.shrapnel.com/", + "description": "SHRAPNEL is a first-person extraction shooter where you'll fight as a MEF (Mercenary Extraction Force) Operator.", + "explorer": "https://snowtrace.io/token/0xd402298a793948698b9a63311404FBBEe944eAfD", + "type": "AVALANCHE", + "symbol": "SHRAP", + "decimals": 18, + "status": "active", + "id": "0xd402298a793948698b9a63311404FBBEe944eAfD", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/playSHRAPNEL" + }, + { + "name": "discord", + "url": "https://discord.com/invite/shrapnel" + } + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xd402298a793948698b9a63311404FBBEe944eAfD/logo.png b/blockchains/avalanchec/assets/0xd402298a793948698b9a63311404FBBEe944eAfD/logo.png new file mode 100644 index 0000000000000..245b81bfa5e40 Binary files /dev/null and b/blockchains/avalanchec/assets/0xd402298a793948698b9a63311404FBBEe944eAfD/logo.png differ diff --git a/blockchains/avalanchec/assets/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b/info.json b/blockchains/avalanchec/assets/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b/info.json new file mode 100644 index 0000000000000..875749eb856f7 --- /dev/null +++ b/blockchains/avalanchec/assets/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b/info.json @@ -0,0 +1,36 @@ +{ + "name": "Route", + "website": "https://www.routerprotocol.com/", + "description": "Router Protocol is a crosschain-liquidity aggregator platform that was built to seamlessly provide bridging infrastructure between current and emerging Layer 1 and Layer 2 blockchain solutions.", + "explorer": "https://snowtrace.io/token/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b", + "type": "AVALANCHE", + "symbol": "ROUTE", + "decimals": 18, + "status": "active", + "id": "0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b", + "links": [ + { + "name": "github", + "url": "https://github.com/router-protocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/routerprotocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/route/" + }, + { + "name": "medium", + "url": "https://routerprotocol.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/routerprotocol" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/avalanchec/assets/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b/logo.png b/blockchains/avalanchec/assets/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b/logo.png new file mode 100644 index 0000000000000..45d5fa65750a5 Binary files /dev/null and b/blockchains/avalanchec/assets/0xf44Ff799eA2bBFeC96f9A50498209AAc3C2b3b8b/logo.png differ diff --git a/blockchains/avalanchec/info/info.json b/blockchains/avalanchec/info/info.json index d0305a29621dd..b3f6d91805781 100644 --- a/blockchains/avalanchec/info/info.json +++ b/blockchains/avalanchec/info/info.json @@ -10,7 +10,8 @@ "decimals": 18, "status": "active", "tags": [ - "defi" + "defi", + "dapp" ], "links": [ { diff --git a/blockchains/avalanchec/tokenlist.json b/blockchains/avalanchec/tokenlist.json index baca6100a5f7d..edc714adc89d0 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": [] }, diff --git a/blockchains/avalanchecfuji/info/info.json b/blockchains/avalanchecfuji/info/info.json index e4feb8caf80a1..99df57957175c 100644 --- a/blockchains/avalanchecfuji/info/info.json +++ b/blockchains/avalanchecfuji/info/info.json @@ -3,7 +3,7 @@ "website": "https://avax.network", "description": "Avalanche is an open-source platform for launching Decentralized Finance (DeFi) applications and enterprise blockchain deployments in an interoperable, highly scalable ecosystem.", "explorer": "https://testnet.snowtrace.io/", - "symbol": "AVAX", + "symbol": "tAVAX", "rpc_url": "https://api.avax-test.network/ext/bc/C/rpc", "type": "coin", "decimals": 18, diff --git a/blockchains/axelar/validators/assets/axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud/logo.png b/blockchains/axelar/validators/assets/axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1aqhvg88ghtdv7du6kqlc9eccukpu8l7mhtauk5/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1aqhvg88ghtdv7du6kqlc9eccukpu8l7mhtauk5/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1aqhvg88ghtdv7du6kqlc9eccukpu8l7mhtauk5/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu/logo.png new file mode 100644 index 0000000000000..3404c78765f74 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4/logo.png new file mode 100644 index 0000000000000..585324aa57dc2 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1uf7s2v44qqpe9lpnsjy6cfjueqytakuzayfg0h/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1uf7s2v44qqpe9lpnsjy6cfjueqytakuzayfg0h/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1uf7s2v44qqpe9lpnsjy6cfjueqytakuzayfg0h/logo.png differ diff --git a/blockchains/axelar/validators/assets/axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg/logo.png b/blockchains/axelar/validators/assets/axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg/logo.png new file mode 100644 index 0000000000000..477fe8df88ae4 Binary files /dev/null and b/blockchains/axelar/validators/assets/axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg/logo.png differ diff --git a/blockchains/axelar/validators/list.json b/blockchains/axelar/validators/list.json new file mode 100644 index 0000000000000..fb6ae58d5cf4e --- /dev/null +++ b/blockchains/axelar/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "id": "axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg", + "name": "Figment", + "description": "The complete staking solution for 250+ institutional clients including asset managers, custodians, exchanges, foundations, and wallets to earn rewards on their digital assets.", + "website": "https://figment.io" + }, + { + "id": "axelarvaloper1nvsl9utkv0duhuvudjckvrtyfeyju0ygx3npw4", + "name": "Imperator.co", + "description": "100% refund on downtime slashing -- Professional Delegated Proof-of-Stake Network Validator", + "website": "https://imperator.co/" + }, + { + "id": "axelarvaloper1kkrp9ulfea5klffr7yjk0lat2yuxystgfzg6zu", + "name": "Brightlystake", + "description": "Stake with Confidence with Brightlystake. Custom monitoring and alerting solutions with quick response times.", + "website": "https://brightlystake.com/" + }, + { + "id": "axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt", + "name": "AutoStake 🛡️ Slash Protected", + "description": "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/" + }, + { + "id": "axelarvaloper1aqhvg88ghtdv7du6kqlc9eccukpu8l7mhtauk5", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + } +] \ No newline at end of file diff --git a/blockchains/band/validators/assets/bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv/logo.png b/blockchains/band/validators/assets/bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6/logo.png b/blockchains/band/validators/assets/bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper17s35yz3rglx7pnjppm4u9l9ht2k9mr9tq0eyh6/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m/logo.png b/blockchains/band/validators/assets/bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper1plau7keptn9qdt7nmhphltakv5t054f8lgwjdn/logo.png b/blockchains/band/validators/assets/bandvaloper1plau7keptn9qdt7nmhphltakv5t054f8lgwjdn/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1plau7keptn9qdt7nmhphltakv5t054f8lgwjdn/logo.png differ diff --git a/blockchains/band/validators/assets/bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl/logo.png b/blockchains/band/validators/assets/bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/band/validators/assets/bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl/logo.png differ diff --git a/blockchains/band/validators/list.json b/blockchains/band/validators/list.json index f6a727191402d..f709ecec0a5fe 100644 --- a/blockchains/band/validators/list.json +++ b/blockchains/band/validators/list.json @@ -1,4 +1,10 @@ [ + { + "id": "bandvaloper10s7t8prp0nz36g4dug5ftkm8elyg9hdtlpn6uv", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, { "id": "bandvaloper1qgvcttnjx3enjqg9pnhclt6d4z7qdknavg4q9c", "name": "WeStaking", @@ -11,10 +17,34 @@ "description": "Transparent & professional staking validator with automated monitoring tools to ensure high uptime. Dedicated support @ t.me/SmartStake", "website": "https://smartstake.io/" }, + { + "id": "bandvaloper1xs2penspev206jj0egh5qu7qmr6mjzfgj299xl", + "name": "AutoStake 🛡️ Slash Protected", + "description": "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" + }, + { + "id": "bandvaloper1plau7keptn9qdt7nmhphltakv5t054f8lgwjdn", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" } ] diff --git a/blockchains/base/assets/0x0578d8A44db98B23BF096A382e016e29a5Ce0ffe/info.json b/blockchains/base/assets/0x0578d8A44db98B23BF096A382e016e29a5Ce0ffe/info.json new file mode 100644 index 0000000000000..a9e171aa56758 --- /dev/null +++ b/blockchains/base/assets/0x0578d8A44db98B23BF096A382e016e29a5Ce0ffe/info.json @@ -0,0 +1,17 @@ +{ + "name":"higher", + "type":"BASE", + "symbol":"HIGHER", + "decimals":18, + "website":"https://www.higher.party/", + "description":"100% fair launched", + "explorer":"https://basescan.org/token/0x0578d8a44db98b23bf096a382e016e29a5ce0ffe", + "status":"active", + "id":"0x0578d8A44db98B23BF096A382e016e29a5Ce0ffe", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/higheronchain" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0x0578d8A44db98B23BF096A382e016e29a5Ce0ffe/logo.png b/blockchains/base/assets/0x0578d8A44db98B23BF096A382e016e29a5Ce0ffe/logo.png new file mode 100644 index 0000000000000..b3e0a4be3cfbb Binary files /dev/null and b/blockchains/base/assets/0x0578d8A44db98B23BF096A382e016e29a5Ce0ffe/logo.png differ diff --git a/blockchains/base/assets/0x0Ab57f6600374A7d3B4f02E94CddA7d309d6a00E/info.json b/blockchains/base/assets/0x0Ab57f6600374A7d3B4f02E94CddA7d309d6a00E/info.json new file mode 100644 index 0000000000000..5594513217d26 --- /dev/null +++ b/blockchains/base/assets/0x0Ab57f6600374A7d3B4f02E94CddA7d309d6a00E/info.json @@ -0,0 +1,21 @@ +{ + "name": "TRUMP2024", + "type": "BASE", + "symbol": "TRUMP2024", + "decimals": 18, + "website": "https://trump2024base.xyz/", + "description": "TRUMP 2024 is meme on base", + "explorer": "https://basescan.org/token/0x0ab57f6600374a7d3b4f02e94cdda7d309d6a00e", + "status": "active", + "id": "0x0Ab57f6600374A7d3B4f02E94CddA7d309d6a00E", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/TRUMP2024BASE" + }, + { + "name": "telegram", + "url": "https://t.me/+m1r6wQyqhhNkOGY1" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x0Ab57f6600374A7d3B4f02E94CddA7d309d6a00E/logo.png b/blockchains/base/assets/0x0Ab57f6600374A7d3B4f02E94CddA7d309d6a00E/logo.png new file mode 100644 index 0000000000000..0a17901b67164 Binary files /dev/null and b/blockchains/base/assets/0x0Ab57f6600374A7d3B4f02E94CddA7d309d6a00E/logo.png differ diff --git a/blockchains/base/assets/0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80/info.json b/blockchains/base/assets/0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80/info.json new file mode 100644 index 0000000000000..360be64c28371 --- /dev/null +++ b/blockchains/base/assets/0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80/info.json @@ -0,0 +1,50 @@ +{ + "name": "Ambire Wallet", + "website": "https://ambire.com", + "description": "WALLET is the governance token of Ambire Wallet. It is also used as a user acquisition tool for marketing activities (referral program, rewards, etc.).", + "explorer": "https://basescan.org/token/0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80", + "type": "BASE", + "symbol": "WALLET", + "status": "active", + "decimals": 18, + "id": "0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80", + "tags": [ + "defi", + "governance", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/AmbireTech/wallet" + }, + { + "name": "twitter", + "url": "https://twitter.com/AmbireWallet" + }, + { + "name": "blog", + "url": "https://ambire.medium.com" + }, + { + "name": "telegram", + "url": "https://t.me/AmbireOfficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/AmbireAdEx" + }, + { + "name": "whitepaper", + "url": "https://ambire.com/whitepaper" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ambire-wallet" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/ambire-wallet" + } + ] +} diff --git a/blockchains/base/assets/0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80/logo.png b/blockchains/base/assets/0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80/logo.png new file mode 100644 index 0000000000000..2c33c7b401760 Binary files /dev/null and b/blockchains/base/assets/0x0BbbEad62f7647AE8323d2cb243A0DB74B7C2b80/logo.png differ diff --git a/blockchains/base/assets/0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE/info.json b/blockchains/base/assets/0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE/info.json new file mode 100644 index 0000000000000..ff8137acae33f --- /dev/null +++ b/blockchains/base/assets/0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE/info.json @@ -0,0 +1,17 @@ +{ + "name": "Base God", + "website": "https://basegod.fun/", + "description": "Base God is the most Based meme on Base. Join the Disciples of B as we follow Big B to eternal salvation and take over the Base chain.", + "explorer": "https://basescan.org/token/0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE", + "type": "BASE", + "symbol": "TYBG", + "decimals": 18, + "status": "active", + "id": "0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/tybasegod" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE/logo.png b/blockchains/base/assets/0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE/logo.png new file mode 100644 index 0000000000000..8b64bdfc00530 Binary files /dev/null and b/blockchains/base/assets/0x0d97F261b1e88845184f678e2d1e7a98D9FD38dE/logo.png differ diff --git a/blockchains/base/assets/0x0e0c9756a3290cD782CF4aB73ac24D25291c9564/info.json b/blockchains/base/assets/0x0e0c9756a3290cD782CF4aB73ac24D25291c9564/info.json new file mode 100644 index 0000000000000..f99be15cf076f --- /dev/null +++ b/blockchains/base/assets/0x0e0c9756a3290cD782CF4aB73ac24D25291c9564/info.json @@ -0,0 +1,29 @@ +{ + "name": "Anime", + "type": "BASE", + "symbol": "ANIME", + "decimals": 18, + "website": "https://animeonbase.art/", + "description": "Just a coin for people who love art and anime. An onchain art and anime movement.", + "explorer": "https://basescan.org/token/0x0e0c9756a3290cD782CF4aB73ac24D25291c9564", + "status": "active", + "id": "0x0e0c9756a3290cD782CF4aB73ac24D25291c9564", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/animeonbase" + }, + { + "name": "telegram", + "url": "https://t.me/AnimeOnBase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/anime/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/anime-base" + } + ] +} diff --git a/blockchains/base/assets/0x0e0c9756a3290cD782CF4aB73ac24D25291c9564/logo.png b/blockchains/base/assets/0x0e0c9756a3290cD782CF4aB73ac24D25291c9564/logo.png new file mode 100644 index 0000000000000..56453e9a02096 Binary files /dev/null and b/blockchains/base/assets/0x0e0c9756a3290cD782CF4aB73ac24D25291c9564/logo.png differ diff --git a/blockchains/base/assets/0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85/info.json b/blockchains/base/assets/0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85/info.json new file mode 100644 index 0000000000000..e3604cf0abaea --- /dev/null +++ b/blockchains/base/assets/0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85/info.json @@ -0,0 +1,21 @@ +{ + "name": "Seamless", + "website": "https://www.seamlessprotocol.com/", + "description": "Seamless Protocol is a native decentralized lending and borrowing protocol on Base. Seamless is focusing on lower-collateral borrowing and a better user experience to inspire the masses. SEAM is the utility governance token of Seamless Protocol.", + "explorer": "https://basescan.org/token/0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85", + "type": "BASE", + "symbol": "SEAM", + "decimals": 18, + "status": "active", + "id": "0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SeamlessFi" + }, + { + "name": "telegram", + "url": "https://t.me/seamless_protocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85/logo.png b/blockchains/base/assets/0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85/logo.png new file mode 100644 index 0000000000000..ddaf14a206c4f Binary files /dev/null and b/blockchains/base/assets/0x1C7a460413dD4e964f96D8dFC56E7223cE88CD85/logo.png differ diff --git a/blockchains/base/assets/0x24569d33653c404f90aF10A2b98d6E0030D3d267/info.json b/blockchains/base/assets/0x24569d33653c404f90aF10A2b98d6E0030D3d267/info.json new file mode 100644 index 0000000000000..47f3f9c3dce7c --- /dev/null +++ b/blockchains/base/assets/0x24569d33653c404f90aF10A2b98d6E0030D3d267/info.json @@ -0,0 +1,27 @@ +{ + "name": "Unagi Token (UNA)", + "type": "BASE", + "symbol": "UNA", + "decimals": 18, + "website": "https://unagi.games/", + "description": "UNA token is Unagi's web3 gaming ecosystem token. It is your universal ticket to the entire range of Unagi games, offering a seamless experience across various genres and platforms including Ultimate Champions, Persona and more to come! We’re creating a cohesive, interconnected gaming environment.", + "explorer": "https://basescan.org/token/0x24569d33653c404f90aF10A2b98d6E0030D3d267", + "status": "active", + "id": "0x24569d33653c404f90aF10A2b98d6E0030D3d267", + "links": [ + { + "name": "medium", + "url": "https://ultimatechampions.medium.com/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Unagi_studio" + } + ], + "tags": [ + "gamefi", + "deflationary", + "staking", + "nft" + ] +} diff --git a/blockchains/base/assets/0x24569d33653c404f90aF10A2b98d6E0030D3d267/logo.png b/blockchains/base/assets/0x24569d33653c404f90aF10A2b98d6E0030D3d267/logo.png new file mode 100644 index 0000000000000..5dd9cbe12c479 Binary files /dev/null and b/blockchains/base/assets/0x24569d33653c404f90aF10A2b98d6E0030D3d267/logo.png differ diff --git a/blockchains/base/assets/0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8/info.json b/blockchains/base/assets/0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8/info.json new file mode 100644 index 0000000000000..3d0bc390e3189 --- /dev/null +++ b/blockchains/base/assets/0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bald", + "website": "https://twitter.com/BaldBaseBald", + "description": "Bald (BALD) is a cryptocurrency and operates on the Base platform.", + "explorer": "https://basescan.org/token/0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8", + "type": "BASE", + "symbol": "BALD", + "decimals": 18, + "status": "active", + "id": "0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BaldBaseBald" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bald/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8/logo.png b/blockchains/base/assets/0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8/logo.png new file mode 100644 index 0000000000000..09728af61bac5 Binary files /dev/null and b/blockchains/base/assets/0x27D2DECb4bFC9C76F0309b8E88dec3a601Fe25a8/logo.png differ diff --git a/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/info.json b/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/info.json new file mode 100644 index 0000000000000..99e39cd7cf648 --- /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 0000000000000..1520a569a3d9f Binary files /dev/null and b/blockchains/base/assets/0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22/logo.png differ diff --git a/blockchains/base/assets/0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71/info.json b/blockchains/base/assets/0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71/info.json new file mode 100644 index 0000000000000..b7fa33e8b5087 --- /dev/null +++ b/blockchains/base/assets/0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71/info.json @@ -0,0 +1,17 @@ +{ + "name": "Mog Coin", + "website": "https://mogcoin.xyz/", + "description": "This Coin mogs all other coins. Base bridge version of Mog Coin on Ethereum.", + "explorer": "https://basescan.org/token/0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71", + "type": "BASE", + "symbol": "Mog", + "decimals": 18, + "status": "active", + "id": "0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MogCoinEth" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71/logo.png b/blockchains/base/assets/0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71/logo.png new file mode 100644 index 0000000000000..82cd8e5f125e0 Binary files /dev/null and b/blockchains/base/assets/0x2Da56AcB9Ea78330f947bD57C54119Debda7AF71/logo.png differ diff --git a/blockchains/base/assets/0x336C9297AFB7798c292E9f80d8e566b947f291f0/info.json b/blockchains/base/assets/0x336C9297AFB7798c292E9f80d8e566b947f291f0/info.json new file mode 100644 index 0000000000000..964c8a708dbbf --- /dev/null +++ b/blockchains/base/assets/0x336C9297AFB7798c292E9f80d8e566b947f291f0/info.json @@ -0,0 +1,49 @@ +{ + "name": "Phala", + "symbol": "PHA", + "type": "BASE", + "decimals": 18, + "description": "Phala Network is the most decentralized protocol to run AI Agents as coprocessors for blockchains.", + "website": "https://phala.network/", + "explorer": "https://basescan.org/token/0x336c9297afb7798c292e9f80d8e566b947f291f0", + "research": "https://www.binance.com/en/research/projects/phalanetwork", + "status": "active", + "tags": [ + "staking" + ], + "id": "0x336C9297AFB7798c292E9f80d8e566b947f291f0", + "links": [ + { + "name": "github", + "url": "https://github.com/Phala-Network" + }, + { + "name": "twitter", + "url": "https://twitter.com/PhalaNetwork" + }, + { + "name": "discord", + "url": "https://discord.com/invite/phala" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/PhalaNetwork" + }, + { + "name": "blog", + "url": "https://phala.network/blog" + }, + { + "name": "docs", + "url": "https://docs.phala.network/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/phala-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/phala-network" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x336C9297AFB7798c292E9f80d8e566b947f291f0/logo.png b/blockchains/base/assets/0x336C9297AFB7798c292E9f80d8e566b947f291f0/logo.png new file mode 100644 index 0000000000000..f2a3f7797c849 Binary files /dev/null and b/blockchains/base/assets/0x336C9297AFB7798c292E9f80d8e566b947f291f0/logo.png differ diff --git a/blockchains/base/assets/0x347F500323D51E9350285Daf299ddB529009e6AE/info.json b/blockchains/base/assets/0x347F500323D51E9350285Daf299ddB529009e6AE/info.json new file mode 100644 index 0000000000000..e7c36afb7116b --- /dev/null +++ b/blockchains/base/assets/0x347F500323D51E9350285Daf299ddB529009e6AE/info.json @@ -0,0 +1,17 @@ +{ + "name":"BLERF", + "type":"BASE", + "symbol":"BLERF", + "decimals": 18, + "website":"https://blerf.live/", + "description":"Blerf emerged as the new meme coin on the block - inspired by Slerf’s success on the Solana network, Blerf aimed to carve its own path on Base, known for its speed and efficiency.", + "explorer":"https://basescan.org/token/0x347f500323d51e9350285daf299ddb529009e6ae", + "status":"active", + "id":"0x347F500323D51E9350285Daf299ddB529009e6AE", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/Blerf_official" + } + ] + } diff --git a/blockchains/base/assets/0x347F500323D51E9350285Daf299ddB529009e6AE/logo.png b/blockchains/base/assets/0x347F500323D51E9350285Daf299ddB529009e6AE/logo.png new file mode 100644 index 0000000000000..89c43e764e108 Binary files /dev/null and b/blockchains/base/assets/0x347F500323D51E9350285Daf299ddB529009e6AE/logo.png differ diff --git a/blockchains/base/assets/0x3636a7734b669Ce352e97780Df361ce1f809c58C/info.json b/blockchains/base/assets/0x3636a7734b669Ce352e97780Df361ce1f809c58C/info.json new file mode 100644 index 0000000000000..b07978265fe4e --- /dev/null +++ b/blockchains/base/assets/0x3636a7734b669Ce352e97780Df361ce1f809c58C/info.json @@ -0,0 +1,21 @@ +{ + "name": "ROCKY", + "website": "https://www.rockycoinbase.com/", + "description": "$ROCKY - The fluffy son of MetaWin founder Skel.eth.", + "explorer": "https://basescan.org/token/0x3636a7734b669ce352e97780df361ce1f809c58c", + "type": "BASE", + "symbol": "ROCKY", + "decimals": 18, + "status": "active", + "id": "0x3636a7734b669Ce352e97780Df361ce1f809c58C", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/rockycoinbase" + }, + { + "name": "telegram", + "url": "https://t.me/rockycoinbase" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x3636a7734b669Ce352e97780Df361ce1f809c58C/logo.png b/blockchains/base/assets/0x3636a7734b669Ce352e97780Df361ce1f809c58C/logo.png new file mode 100644 index 0000000000000..7dda77fe4fba7 Binary files /dev/null and b/blockchains/base/assets/0x3636a7734b669Ce352e97780Df361ce1f809c58C/logo.png differ diff --git a/blockchains/base/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/base/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 0000000000000..ac42f14c83141 --- /dev/null +++ b/blockchains/base/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nya", + "type": "BASE", + "symbol": "NYA", + "decimals": 18, + "website": "https://www.nya.vip", + "description": "Explore the cultural phenomenon of Nya - the playful cat sound that's become a symbol of joy and connection. Discover how this simple word unites fans worldwide.", + "explorer": "https://basescan.org/token/0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "status": "active", + "id": "0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/NyaOnEarth" + }, + { + "name": "telegram", + "url": "https://t.me/NyaOnEarth" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "docs", + "url": "https://wiki.nya.vip" + } + ], + "tags": [ + "memes", + "nft" + ] +} diff --git a/blockchains/base/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png b/blockchains/base/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png new file mode 100644 index 0000000000000..c34f31c6b2335 Binary files /dev/null and b/blockchains/base/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/base/assets/0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3/info.json b/blockchains/base/assets/0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3/info.json new file mode 100644 index 0000000000000..22029011c9343 --- /dev/null +++ b/blockchains/base/assets/0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3/info.json @@ -0,0 +1,17 @@ +{ + "name": "Based Peng", + "website": "https://bengonbase.xyz/", + "description": "PEOPLE TELL ME I LOOK LIKE PEPE. I TELL THEM I’M A PENGUIN!", + "explorer": "https://basescan.org/token/0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3", + "type": "BASE", + "symbol": "BENG", + "decimals": 18, + "status": "active", + "id": "0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bengonbase_xyz" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3/logo.png b/blockchains/base/assets/0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3/logo.png new file mode 100644 index 0000000000000..40235ab6e57c6 Binary files /dev/null and b/blockchains/base/assets/0x3e05D37CFBd8caaad9E3322D35CC727AfaFF63E3/logo.png differ diff --git a/blockchains/base/assets/0x4200000000000000000000000000000000000006/info.json b/blockchains/base/assets/0x4200000000000000000000000000000000000006/info.json new file mode 100644 index 0000000000000..ef20976738d61 --- /dev/null +++ b/blockchains/base/assets/0x4200000000000000000000000000000000000006/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped Ether", + "symbol": "WETH", + "type": "BASE", + "decimals": 18, + "description": "wETH is wrapped ETH", + "website": "https://weth.io/", + "explorer": "https://basescan.org/token/0x4200000000000000000000000000000000000006", + "status": "active", + "id": "0x4200000000000000000000000000000000000006", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/weth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x4200000000000000000000000000000000000006/logo.png b/blockchains/base/assets/0x4200000000000000000000000000000000000006/logo.png new file mode 100644 index 0000000000000..f9328d9550a06 Binary files /dev/null and b/blockchains/base/assets/0x4200000000000000000000000000000000000006/logo.png differ diff --git a/blockchains/base/assets/0x420b0FA3dE2EFCf2b2Fd04152Eb1Df36a09717cD/info.json b/blockchains/base/assets/0x420b0FA3dE2EFCf2b2Fd04152Eb1Df36a09717cD/info.json new file mode 100644 index 0000000000000..eb6951a8efe86 --- /dev/null +++ b/blockchains/base/assets/0x420b0FA3dE2EFCf2b2Fd04152Eb1Df36a09717cD/info.json @@ -0,0 +1,21 @@ +{ + "name": "King Of Memes", + "website": "https://kingofmemes.vip/", + "description": "Revolutionizing the memecoin landscape with innovative utilities and community-driven features.", + "explorer": "https://basescan.org/token/0x420b0fa3de2efcf2b2fd04152eb1df36a09717cd", + "type": "BASE", + "symbol": "KING", + "decimals": 18, + "status": "active", + "id": "0x420b0FA3dE2EFCf2b2Fd04152Eb1Df36a09717cD", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/king-of-memes/" + }, + { + "name": "twitter", + "url": "https://twitter.com/kingofmemesreal" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x420b0FA3dE2EFCf2b2Fd04152Eb1Df36a09717cD/logo.png b/blockchains/base/assets/0x420b0FA3dE2EFCf2b2Fd04152Eb1Df36a09717cD/logo.png new file mode 100644 index 0000000000000..fbfb3db9cdcb3 Binary files /dev/null and b/blockchains/base/assets/0x420b0FA3dE2EFCf2b2Fd04152Eb1Df36a09717cD/logo.png differ diff --git a/blockchains/base/assets/0x4DD9077269Dd08899f2A9E73507125962b5BC87f/info.json b/blockchains/base/assets/0x4DD9077269Dd08899f2A9E73507125962b5BC87f/info.json new file mode 100644 index 0000000000000..d7ea026c1681d --- /dev/null +++ b/blockchains/base/assets/0x4DD9077269Dd08899f2A9E73507125962b5BC87f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Crash", + "type": "BASE", + "symbol": "Crash", + "decimals": 18, + "website": "https://crashonbase.xyz/", + "description": "Crash’s trading career is a testament to his adaptability and success.", + "explorer": "https://basescan.org/token/0x4dd9077269dd08899f2a9e73507125962b5bc87f", + "status": "active", + "id": "0x4DD9077269Dd08899f2A9E73507125962b5BC87f", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CrashiusClay69" + }, + { + "name": "telegram", + "url": "https://t.me/cleancallsbycrash" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x4DD9077269Dd08899f2A9E73507125962b5BC87f/logo.png b/blockchains/base/assets/0x4DD9077269Dd08899f2A9E73507125962b5BC87f/logo.png new file mode 100644 index 0000000000000..0a3e8b564745c Binary files /dev/null and b/blockchains/base/assets/0x4DD9077269Dd08899f2A9E73507125962b5BC87f/logo.png differ diff --git a/blockchains/base/assets/0x4d58608EFf50b691A3B76189aF2a7A123dF1e9ba/info.json b/blockchains/base/assets/0x4d58608EFf50b691A3B76189aF2a7A123dF1e9ba/info.json new file mode 100644 index 0000000000000..a0f1983705637 --- /dev/null +++ b/blockchains/base/assets/0x4d58608EFf50b691A3B76189aF2a7A123dF1e9ba/info.json @@ -0,0 +1,17 @@ +{ + "name": "Boysclub", + "type": "BASE", + "symbol": "BOYS", + "decimals": 9, + "website": "https://boysclubbase.org/", + "description": "Where memes meet friendship in perfect harmony. Step into the world of Pepe, Andy, Brett, Bird Dog and Landwolf!", + "explorer": "https://basescan.org/token/0x4d58608eff50b691a3b76189af2a7a123df1e9ba", + "status": "active", + "id": "0x4d58608EFf50b691A3B76189aF2a7A123dF1e9ba", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/boysclubbase1" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x4d58608EFf50b691A3B76189aF2a7A123dF1e9ba/logo.png b/blockchains/base/assets/0x4d58608EFf50b691A3B76189aF2a7A123dF1e9ba/logo.png new file mode 100644 index 0000000000000..a5b0997996351 Binary files /dev/null and b/blockchains/base/assets/0x4d58608EFf50b691A3B76189aF2a7A123dF1e9ba/logo.png differ diff --git a/blockchains/base/assets/0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660/info.json b/blockchains/base/assets/0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660/info.json new file mode 100644 index 0000000000000..cf6930ace034e --- /dev/null +++ b/blockchains/base/assets/0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660/info.json @@ -0,0 +1,17 @@ +{ + "name": "Boge", + "website": "https://bogeonbase.com/", + "description": "DOGE + BASE = BOGE. THE NARRATIVE IS BOGE . IT'S SIMPLE", + "explorer": "https://basescan.org/token/0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660", + "type": "BASE", + "symbol": "BOGE", + "decimals": 9, + "status": "active", + "id": "0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bogeonbase" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660/logo.png b/blockchains/base/assets/0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660/logo.png new file mode 100644 index 0000000000000..f87d2a95da9ae Binary files /dev/null and b/blockchains/base/assets/0x4e496c0256FB9D4CC7Ba2fdF931bC9CbB7731660/logo.png differ diff --git a/blockchains/base/assets/0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed/info.json b/blockchains/base/assets/0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed/info.json new file mode 100644 index 0000000000000..afbd2e9012fb5 --- /dev/null +++ b/blockchains/base/assets/0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed/info.json @@ -0,0 +1,28 @@ +{ + "name": "Degen", + "website": "https://www.degen.tips/", + "description": "Degen, an ERC-20 token on Base, launched in January 2024 with an airdrop to the Degen channel community on Farcaster. Our goal is to distribute the token among builders, content creators, and users in the Base and Farcaster ecosystem.", + "explorer": "https://basescan.org/token/0x4ed4e862860bed51a9570b96d89af5e1b0efefed", + "type": "BASE", + "symbol": "DEGEN", + "decimals": 18, + "status": "active", + "id": "0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/degentokenbase" + }, + { + "name": "telegram", + "url": "https://t.me/degentokenbase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/degen-base/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed/logo.png b/blockchains/base/assets/0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed/logo.png new file mode 100644 index 0000000000000..0e1846575b93f Binary files /dev/null and b/blockchains/base/assets/0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed/logo.png differ diff --git a/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json b/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json new file mode 100644 index 0000000000000..179b70ada8b63 --- /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 0000000000000..1fd956cb12fc4 Binary files /dev/null and b/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png differ diff --git a/blockchains/base/assets/0x50dA645f148798F68EF2d7dB7C1CB22A6819bb2C/info.json b/blockchains/base/assets/0x50dA645f148798F68EF2d7dB7C1CB22A6819bb2C/info.json new file mode 100644 index 0000000000000..fc99739a4df33 --- /dev/null +++ b/blockchains/base/assets/0x50dA645f148798F68EF2d7dB7C1CB22A6819bb2C/info.json @@ -0,0 +1,17 @@ +{ + "name": "SPX6900", + "type": "BASE", + "symbol": "SPX", + "decimals": 8, + "website": "https://www.spx6900.com/", + "description": "SPX6900 is an advanced blockchain cryptography token coin capable of limitless possibilities and scientific utilization.", + "explorer": "https://basescan.org/token/0x50da645f148798f68ef2d7db7c1cb22a6819bb2c", + "status": "active", + "id": "0x50dA645f148798F68EF2d7dB7C1CB22A6819bb2C", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/spx6900" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x50dA645f148798F68EF2d7dB7C1CB22A6819bb2C/logo.png b/blockchains/base/assets/0x50dA645f148798F68EF2d7dB7C1CB22A6819bb2C/logo.png new file mode 100644 index 0000000000000..d9f1648824e24 Binary files /dev/null and b/blockchains/base/assets/0x50dA645f148798F68EF2d7dB7C1CB22A6819bb2C/logo.png differ diff --git a/blockchains/base/assets/0x532f27101965dd16442E59d40670FaF5eBB142E4/info.json b/blockchains/base/assets/0x532f27101965dd16442E59d40670FaF5eBB142E4/info.json new file mode 100644 index 0000000000000..81470f5c804d8 --- /dev/null +++ b/blockchains/base/assets/0x532f27101965dd16442E59d40670FaF5eBB142E4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Brett", + "type": "BASE", + "symbol": "BRETT", + "decimals": 18, + "website": "https://www.basedbrett.com/", + "description": "Center character in Matt Furies “Boys’ Club” following the adventures of Brett the Toad, PEPE the frog, Landwolf the wolf, and Andy the dog.", + "explorer": "https://basescan.org/token/0x532f27101965dd16442e59d40670faf5ebb142e4", + "status": "active", + "id": "0x532f27101965dd16442E59d40670FaF5eBB142E4", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/based-brett/" + }, + { + "name": "twitter", + "url": "https://twitter.com/BasedBrett" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0x532f27101965dd16442E59d40670FaF5eBB142E4/logo.png b/blockchains/base/assets/0x532f27101965dd16442E59d40670FaF5eBB142E4/logo.png new file mode 100644 index 0000000000000..a701d44e7a2b9 Binary files /dev/null and b/blockchains/base/assets/0x532f27101965dd16442E59d40670FaF5eBB142E4/logo.png differ diff --git a/blockchains/base/assets/0x686B1209b2DE12818aa69DD139530448d0c792b3/info.json b/blockchains/base/assets/0x686B1209b2DE12818aa69DD139530448d0c792b3/info.json new file mode 100644 index 0000000000000..8ea6b6402214d --- /dev/null +++ b/blockchains/base/assets/0x686B1209b2DE12818aa69DD139530448d0c792b3/info.json @@ -0,0 +1,17 @@ +{ + "name": "poopcoin", + "website": "https://mirror.xyz/poopie.eth/g7L4RyfIxXtovJGD4eL_luOxpqIBs4bip_4FMTs1Ctc", + "description": "Poopcoin is a meme coin on Base that was airdropped to holders of the Doodles NFT ecosystem. It has no promise, could very well be worth less than zero, like a fresh, steaming pile of dung", + "explorer": "https://basescan.org/token/0x686b1209b2de12818aa69dd139530448d0c792b3", + "type": "BASE", + "symbol": "poop", + "decimals": 18, + "status": "active", + "id": "0x686B1209b2DE12818aa69DD139530448d0c792b3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/poopcoinbase" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x686B1209b2DE12818aa69DD139530448d0c792b3/logo.png b/blockchains/base/assets/0x686B1209b2DE12818aa69DD139530448d0c792b3/logo.png new file mode 100644 index 0000000000000..24c49ba026a66 Binary files /dev/null and b/blockchains/base/assets/0x686B1209b2DE12818aa69DD139530448d0c792b3/logo.png differ diff --git a/blockchains/base/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/base/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 0000000000000..619232e2aefd9 --- /dev/null +++ b/blockchains/base/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "LayerZero", + "website": "https://layerzero.network/", + "description": "LayerZero is a technology that enables applications to move data across blockchains, uniquely supporting censorship-resistant messages and permissionless development through immutable smart contracts", + "explorer": "https://basescan.org/token/0x6985884c4392d348587b19cb9eaaf157f13271cd", + "type": "BASE", + "symbol": "ZRO", + "decimals": 18, + "status": "active", + "id": "0x6985884C4392D348587B19cb9eAAf157F13271cd", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LayerZero_Labs" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/VcqxYkStIDsyN2Rh" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png b/blockchains/base/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png new file mode 100644 index 0000000000000..203a846cfdf6b Binary files /dev/null and b/blockchains/base/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/base/assets/0x698DC45e4F10966f6D1D98e3bFd7071d8144C233/info.json b/blockchains/base/assets/0x698DC45e4F10966f6D1D98e3bFd7071d8144C233/info.json new file mode 100644 index 0000000000000..cc558ef64b4a6 --- /dev/null +++ b/blockchains/base/assets/0x698DC45e4F10966f6D1D98e3bFd7071d8144C233/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pepe", + "type": "BASE", + "symbol": "PEPE", + "decimals": 9, + "website": "https://pepeonbase.live/", + "description": "PEPE on Base", + "explorer": "https://basescan.org/token/0x698dc45e4f10966f6d1d98e3bfd7071d8144c233", + "status": "active", + "id": "0x698DC45e4F10966f6D1D98e3bFd7071d8144C233", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/PepeBase_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepe-0x69-on-base/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x698DC45e4F10966f6D1D98e3bFd7071d8144C233/logo.png b/blockchains/base/assets/0x698DC45e4F10966f6D1D98e3bFd7071d8144C233/logo.png new file mode 100644 index 0000000000000..d4a23ceaa39dc Binary files /dev/null and b/blockchains/base/assets/0x698DC45e4F10966f6D1D98e3bFd7071d8144C233/logo.png differ diff --git a/blockchains/base/assets/0x6D5Bd53B4005df5A70451106726D85229b644353/info.json b/blockchains/base/assets/0x6D5Bd53B4005df5A70451106726D85229b644353/info.json new file mode 100644 index 0000000000000..c1488a60dbf25 --- /dev/null +++ b/blockchains/base/assets/0x6D5Bd53B4005df5A70451106726D85229b644353/info.json @@ -0,0 +1,17 @@ +{ + "name":"BORED PEPE", + "type":"BASE", + "symbol":"BPE", + "decimals": 18, + "website":"https://boredpepe.wtf/", + "description":"Embrace the Memetic Revolution and Unleash Passive Earnings with BORED PEPE ($BPE)", + "explorer":"https://basescan.org/token/0x6d5bd53b4005df5a70451106726d85229b644353", + "status":"active", + "id":"0x6D5Bd53B4005df5A70451106726D85229b644353", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/BOREDxPEPE" + } + ] + } diff --git a/blockchains/base/assets/0x6D5Bd53B4005df5A70451106726D85229b644353/logo.png b/blockchains/base/assets/0x6D5Bd53B4005df5A70451106726D85229b644353/logo.png new file mode 100644 index 0000000000000..0d077860b472b Binary files /dev/null and b/blockchains/base/assets/0x6D5Bd53B4005df5A70451106726D85229b644353/logo.png differ diff --git a/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/info.json b/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/info.json new file mode 100644 index 0000000000000..2eee9fa66e65b --- /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 0000000000000..4c77387dd3775 Binary files /dev/null and b/blockchains/base/assets/0x703D57164CA270b0B330A87FD159CfEF1490c0a5/logo.png differ diff --git a/blockchains/base/assets/0x72499bdDb67F4CA150E1f522Ca82c87bc9fB18c8/info.json b/blockchains/base/assets/0x72499bdDb67F4CA150E1f522Ca82c87bc9fB18c8/info.json new file mode 100644 index 0000000000000..64d58dddebbf9 --- /dev/null +++ b/blockchains/base/assets/0x72499bdDb67F4CA150E1f522Ca82c87bc9fB18c8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bonk", + "type": "BASE", + "symbol": "BONK", + "decimals": 18, + "website": "https://bonkonbase.vip/", + "description": "BONK on Base Inspired by Bonk on Solana, us $BONK enthusiasts knew there needed to be a safe $BONK with strong backers on the quickly evolving Base Chain (Coinbase's L2 Network)", + "explorer": "https://basescan.org/token/0x72499bddb67f4ca150e1f522ca82c87bc9fb18c8", + "status": "active", + "id": "0x72499bdDb67F4CA150E1f522Ca82c87bc9fB18c8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bonk_onbase" + }, + { + "name": "telegram", + "url": "https://t.me/Bonk_On_Base" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x72499bdDb67F4CA150E1f522Ca82c87bc9fB18c8/logo.png b/blockchains/base/assets/0x72499bdDb67F4CA150E1f522Ca82c87bc9fB18c8/logo.png new file mode 100644 index 0000000000000..cce2735310ee4 Binary files /dev/null and b/blockchains/base/assets/0x72499bdDb67F4CA150E1f522Ca82c87bc9fB18c8/logo.png differ diff --git a/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/info.json b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/info.json new file mode 100644 index 0000000000000..8dea7ebfcb8d9 --- /dev/null +++ b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/info.json @@ -0,0 +1,25 @@ +{ + "name": "Baseswap", + "symbol": "BSWAP", + "type": "BASE", + "decimals": 18, + "description": "Decentralized finance leverages the individual and collective capacity of all of us, without interference.Join us on BASE chain now.", + "website": "https://baseswap.fi", + "explorer": "https://basescan.org/token/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9", + "status": "active", + "id": "0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BaseswapFi" + }, + { + "name": "twitter", + "url": "https://twitter.com/BaseSwap_Fi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baseswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/logo.png b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/logo.png new file mode 100644 index 0000000000000..d2dd3f1836703 Binary files /dev/null and b/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/logo.png differ diff --git a/blockchains/base/assets/0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2/info.json b/blockchains/base/assets/0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2/info.json new file mode 100644 index 0000000000000..ec2a416939499 --- /dev/null +++ b/blockchains/base/assets/0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2/info.json @@ -0,0 +1,28 @@ +{ + "name": "Balancer", + "website": "https://balancer.finance/", + "description": "Balancer is a n-dimensional automated market-maker that allows anyone to create or add liquidity to customizable pools and earn trading fees. Instead of the traditional constant product AMM model, Balancer’s formula is a generalization that allows any number of tokens in any weights or trading fees.", + "explorer": "https://basescan.org/token/0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2", + "type": "BASE", + "symbol": "BAL", + "decimals": 18, + "status": "active", + "id": "0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2", + "tags": [ + "defi" + ], + "links": [ + { + "name": "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/base/assets/0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2/logo.png b/blockchains/base/assets/0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2/logo.png new file mode 100644 index 0000000000000..6fc691716d6bd Binary files /dev/null and b/blockchains/base/assets/0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2/logo.png differ diff --git a/blockchains/base/assets/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9/info.json b/blockchains/base/assets/0x7d89E05c0B93B24B5Cb23A073E60D008FEd1aCF9/info.json new file mode 100644 index 0000000000000..5bd4afa34743c --- /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 0000000000000..534aeb60936f5 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 0000000000000..9767d94df8429 --- /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 0000000000000..a135c887a8614 Binary files /dev/null and b/blockchains/base/assets/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913/logo.png differ diff --git a/blockchains/base/assets/0x858c50C3AF1913b0E849aFDB74617388a1a5340d/info.json b/blockchains/base/assets/0x858c50C3AF1913b0E849aFDB74617388a1a5340d/info.json new file mode 100644 index 0000000000000..4f40fdb69acd8 --- /dev/null +++ b/blockchains/base/assets/0x858c50C3AF1913b0E849aFDB74617388a1a5340d/info.json @@ -0,0 +1,17 @@ +{ + "name": "SubQueryToken", + "website": "https://subquery.network/", + "description": "Pioneering fast, flexible, and scalable web3 infrastructure, SubQuery provide fast, reliable, and decentralised RPCs and Data indexing services to over 150 chains.", + "explorer": "https://basescan.org/token/0x858c50C3AF1913b0E849aFDB74617388a1a5340d", + "type": "BASE", + "symbol": "SQT", + "decimals": 18, + "status": "active", + "id": "0x858c50C3AF1913b0E849aFDB74617388a1a5340d", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SubQueryNetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x858c50C3AF1913b0E849aFDB74617388a1a5340d/logo.png b/blockchains/base/assets/0x858c50C3AF1913b0E849aFDB74617388a1a5340d/logo.png new file mode 100644 index 0000000000000..db6f6d376d241 Binary files /dev/null and b/blockchains/base/assets/0x858c50C3AF1913b0E849aFDB74617388a1a5340d/logo.png differ diff --git a/blockchains/base/assets/0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D/info.json b/blockchains/base/assets/0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D/info.json new file mode 100644 index 0000000000000..606c3a70f9f0a --- /dev/null +++ b/blockchains/base/assets/0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D/info.json @@ -0,0 +1,21 @@ +{ + "name": "MBS", + "website": "https://unkjd.com/", + "description": "UNKJD : Striker League is a fast, strategy-based sports game. Build your dream team of MonkeyAthletes, play matches, compete in tournaments and climb the Leagues! $MBS is the main in-game currency of MonkeyLeague and ecosystem.", + "explorer": "https://basescan.org/token/0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D", + "type": "BASE", + "symbol": "MBS", + "decimals": 18, + "status": "active", + "id": "0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/UNKJDgames" + }, + { + "name": "telegram", + "url": "https://t.me/unkjd_announcements" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D/logo.png b/blockchains/base/assets/0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D/logo.png new file mode 100644 index 0000000000000..1ed9f85bd7f38 Binary files /dev/null and b/blockchains/base/assets/0x8Fbd0648971d56f1f2c35Fa075Ff5Bc75fb0e39D/logo.png differ diff --git a/blockchains/base/assets/0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec/info.json b/blockchains/base/assets/0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec/info.json new file mode 100644 index 0000000000000..4d24cc51936fa --- /dev/null +++ b/blockchains/base/assets/0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec/info.json @@ -0,0 +1,17 @@ +{ + "name": "bloo foster", + "website": "https://www.bloofoster.com", + "description": "BLOO, ONCE A HOMELESS SOUL, WAS RESCUED FROM THE STREETS BY BRIAN AND JESSE, WHO EMBRACED HIM INTO THEIR LOVING CARE", + "explorer": "https://basescan.org/token/0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec", + "type": "BASE", + "symbol": "bloo", + "decimals": 18, + "status": "active", + "id": "0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bloofostercoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec/logo.png b/blockchains/base/assets/0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec/logo.png new file mode 100644 index 0000000000000..fed5325eb7a72 Binary files /dev/null and b/blockchains/base/assets/0x8a5F9a6b653ecbDb406f9EB5F0C8dDba10919Aec/logo.png differ diff --git a/blockchains/base/assets/0x8c81B4c816d66D36c4bF348BdeC01dBCbC70E987/info.json b/blockchains/base/assets/0x8c81B4c816d66D36c4bF348BdeC01dBCbC70E987/info.json new file mode 100644 index 0000000000000..51929d1fbf0a7 --- /dev/null +++ b/blockchains/base/assets/0x8c81B4c816d66D36c4bF348BdeC01dBCbC70E987/info.json @@ -0,0 +1,17 @@ +{ + "name":"Briun Armstrung", + "type":"BASE", + "symbol":"BRIUN", + "decimals": 18, + "website":"https://briunarmstrung.com/", + "description":"Briun is the first deflationary memecoin on Base chain thanks to our flywheel mechanism (UniV3 fees used for buyback and burn).", + "explorer":"https://basescan.org/token/0x8c81b4c816d66d36c4bf348bdec01dbcbc70e987", + "status":"active", + "id":"0x8c81B4c816d66D36c4bF348BdeC01dBCbC70E987", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/Briun_Armstrung" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0x8c81B4c816d66D36c4bF348BdeC01dBCbC70E987/logo.png b/blockchains/base/assets/0x8c81B4c816d66D36c4bF348BdeC01dBCbC70E987/logo.png new file mode 100644 index 0000000000000..bc80f16b17640 Binary files /dev/null and b/blockchains/base/assets/0x8c81B4c816d66D36c4bF348BdeC01dBCbC70E987/logo.png differ diff --git a/blockchains/base/assets/0x928A6a9fc62b2C94BaF2992a6fBa4715f5Bb0066/info.json b/blockchains/base/assets/0x928A6a9fc62b2C94BaF2992a6fBa4715f5Bb0066/info.json new file mode 100644 index 0000000000000..842f129dab4e5 --- /dev/null +++ b/blockchains/base/assets/0x928A6a9fc62b2C94BaF2992a6fBa4715f5Bb0066/info.json @@ -0,0 +1,21 @@ +{ + "name": "Rug World Assets", + "website": "https://rugwa.com/", + "description": "$RWA is a meme token.", + "explorer": "https://basescan.org/token/0x928a6a9fc62b2c94baf2992a6fba4715f5bb0066", + "type": "BASE", + "symbol": "RWA", + "decimals": 18, + "status": "active", + "id": "0x928A6a9fc62b2C94BaF2992a6fBa4715f5Bb0066", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rug-world-assets/" + }, + { + "name": "twitter", + "url": "https://twitter.com/RWABase" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x928A6a9fc62b2C94BaF2992a6fBa4715f5Bb0066/logo.png b/blockchains/base/assets/0x928A6a9fc62b2C94BaF2992a6fBa4715f5Bb0066/logo.png new file mode 100644 index 0000000000000..d8a3aa6dd340b Binary files /dev/null and b/blockchains/base/assets/0x928A6a9fc62b2C94BaF2992a6fBa4715f5Bb0066/logo.png differ diff --git a/blockchains/base/assets/0x940181a94A35A4569E4529A3CDfB74e38FD98631/info.json b/blockchains/base/assets/0x940181a94A35A4569E4529A3CDfB74e38FD98631/info.json new file mode 100644 index 0000000000000..266524b7c7bd0 --- /dev/null +++ b/blockchains/base/assets/0x940181a94A35A4569E4529A3CDfB74e38FD98631/info.json @@ -0,0 +1,21 @@ +{ + "name": "Aerodrome", + "type": "BASE", + "symbol": "AERO", + "decimals": 18, + "website": "https://aerodrome.finance/", + "description": "Aerodrome Finance is a next-generation AMM designed to serve as Base's central liquidity hub, combining a powerful liquidity incentive engine, vote-lock governance model, and friendly user experience.", + "explorer": "https://basescan.org/token/0x940181a94a35a4569e4529a3cdfb74e38fd98631", + "status": "active", + "id": "0x940181a94A35A4569E4529A3CDfB74e38FD98631", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/AerodromeFi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aerodrome-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x940181a94A35A4569E4529A3CDfB74e38FD98631/logo.png b/blockchains/base/assets/0x940181a94A35A4569E4529A3CDfB74e38FD98631/logo.png new file mode 100644 index 0000000000000..2cd0275db75b1 Binary files /dev/null and b/blockchains/base/assets/0x940181a94A35A4569E4529A3CDfB74e38FD98631/logo.png differ diff --git a/blockchains/base/assets/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002/info.json b/blockchains/base/assets/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002/info.json new file mode 100644 index 0000000000000..8d226c1e7f26e --- /dev/null +++ b/blockchains/base/assets/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002/info.json @@ -0,0 +1,30 @@ +{ + "name": "FOMO BULL CLUB", + "website": "https://fomobull.club/", + "description": "FOMO BULL CLUB is a members-only, decentralized launchpad and liquidity hub. It initially supports memecoins on the Base blockchain and is set to expand its platform to include Solana, Ethereum, Polygon, and others.", + "explorer": "https://basescan.org/token/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002", + "type": "BASE", + "symbol": "FOMO", + "decimals": 18, + "status": "active", + "id": "0x9A86980D3625b4A6E69D8a4606D51cbc019e2002", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/fomobullclub" + }, + { + "name": "telegram", + "url": "https://t.me/fomobullclub" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fomo-bull-club" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fomo-bull-club" + } + ], + "tags": ["memes"] +} diff --git a/blockchains/base/assets/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002/logo.png b/blockchains/base/assets/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002/logo.png new file mode 100644 index 0000000000000..f90423a7ca3f1 Binary files /dev/null and b/blockchains/base/assets/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002/logo.png differ diff --git a/blockchains/base/assets/0x9DE16c805A3227b9b92e39a446F9d56cf59fe640/info.json b/blockchains/base/assets/0x9DE16c805A3227b9b92e39a446F9d56cf59fe640/info.json new file mode 100644 index 0000000000000..fc748d103674f --- /dev/null +++ b/blockchains/base/assets/0x9DE16c805A3227b9b92e39a446F9d56cf59fe640/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bento", + "website": "https://basedbento.com/", + "description": "$BENTO - The dog coin of the Based people.", + "explorer": "https://basescan.org/token/0x9de16c805a3227b9b92e39a446f9d56cf59fe640", + "type": "BASE", + "symbol": "CHOMP", + "decimals": 18, + "status": "active", + "id": "0x9DE16c805A3227b9b92e39a446F9d56cf59fe640", + "links": [ + { + "name": "telegram", + "url": "https://t.me/basedbento" + }, + { + "name": "twitter", + "url": "https://twitter.com/basedbento" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0x9DE16c805A3227b9b92e39a446F9d56cf59fe640/logo.png b/blockchains/base/assets/0x9DE16c805A3227b9b92e39a446F9d56cf59fe640/logo.png new file mode 100644 index 0000000000000..7702a60822112 Binary files /dev/null and b/blockchains/base/assets/0x9DE16c805A3227b9b92e39a446F9d56cf59fe640/logo.png differ diff --git a/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/info.json b/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/info.json new file mode 100644 index 0000000000000..464d9fe678e9b --- /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 0000000000000..8f06d5eb88f5d Binary files /dev/null and b/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/logo.png differ diff --git a/blockchains/base/assets/0x9a26F5433671751C3276a065f57e5a02D2817973/info.json b/blockchains/base/assets/0x9a26F5433671751C3276a065f57e5a02D2817973/info.json new file mode 100644 index 0000000000000..909a0d5745056 --- /dev/null +++ b/blockchains/base/assets/0x9a26F5433671751C3276a065f57e5a02D2817973/info.json @@ -0,0 +1,17 @@ +{ + "name":"Keyboard Cat", + "type":"BASE", + "symbol":"KEYCAT", + "decimals": 18, + "website":"https://keyboardcat.fun", + "description":"$KEYCAT is a meme coin with no intrinsic value or expectation of financial return. $KEYCAT is not associted with Charlie Schmidt or his creation of Keyboard Cat.", + "explorer":"https://basescan.org/token/0x9a26f5433671751c3276a065f57e5a02d2817973", + "status":"active", + "id":"0x9a26F5433671751C3276a065f57e5a02D2817973", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/KeyboardCatBase" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0x9a26F5433671751C3276a065f57e5a02D2817973/logo.png b/blockchains/base/assets/0x9a26F5433671751C3276a065f57e5a02D2817973/logo.png new file mode 100644 index 0000000000000..4fa517804a755 Binary files /dev/null and b/blockchains/base/assets/0x9a26F5433671751C3276a065f57e5a02D2817973/logo.png differ diff --git a/blockchains/base/assets/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C/info.json b/blockchains/base/assets/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C/info.json new file mode 100644 index 0000000000000..d7309f79bd386 --- /dev/null +++ b/blockchains/base/assets/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C/info.json @@ -0,0 +1,36 @@ +{ + "name": "Onyx", + "website": "https://onyx.org", + "description": "Onyx Protocol enables users to access a cross-token aggregated liquidity protocol that supports NFTs, Tokens and ETH all-in-one. Onyx is powered by Onyxcoin (XCN), the protocols native utility and governance token.", + "explorer": "https://basescan.org/token/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C", + "type": "BASE", + "symbol": "XCN", + "decimals": 18, + "status": "active", + "id": "0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C", + "links": [ + { + "name": "github", + "url": "https://github.com/Onyx-Protocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/OnyxDAO" + }, + { + "name": "blog", + "url": "https://blog.onyx.org" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/onyxcoin/" + }, + { + "name": "telegram", + "url": "https://t.me/onyx" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/base/assets/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C/logo.png b/blockchains/base/assets/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C/logo.png new file mode 100644 index 0000000000000..18629f0ee352e Binary files /dev/null and b/blockchains/base/assets/0x9c632E6Aaa3eA73f91554f8A3cB2ED2F29605e0C/logo.png differ diff --git a/blockchains/base/assets/0xA067436Db77aB18b1a315095E4b816791609897c/info.json b/blockchains/base/assets/0xA067436Db77aB18b1a315095E4b816791609897c/info.json new file mode 100644 index 0000000000000..36d3f49d1036b --- /dev/null +++ b/blockchains/base/assets/0xA067436Db77aB18b1a315095E4b816791609897c/info.json @@ -0,0 +1,21 @@ +{ + "name": "WASSIE", + "website": "http://www.wassie.wtf/", + "description": "The ultimate memecoin of the wassie revolution.", + "explorer": "https://basescan.org/token/0xa067436db77ab18b1a315095e4b816791609897c", + "type": "BASE", + "symbol": "WASSIE", + "decimals": 18, + "status": "active", + "id": "0xA067436Db77aB18b1a315095E4b816791609897c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/WassieOnETH" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wassie/" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xA067436Db77aB18b1a315095E4b816791609897c/logo.png b/blockchains/base/assets/0xA067436Db77aB18b1a315095E4b816791609897c/logo.png new file mode 100644 index 0000000000000..3f350d2569e90 Binary files /dev/null and b/blockchains/base/assets/0xA067436Db77aB18b1a315095E4b816791609897c/logo.png differ diff --git a/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/info.json b/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/info.json new file mode 100644 index 0000000000000..e4590373a91d9 --- /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 0000000000000..0fd6617ffaa6e Binary files /dev/null and b/blockchains/base/assets/0xAC1Bd2486aAf3B5C0fc3Fd868558b082a531B2B4/logo.png differ diff --git a/blockchains/base/assets/0xB166E8B140D35D9D8226E40C09f757BAC5A4d87d/info.json b/blockchains/base/assets/0xB166E8B140D35D9D8226E40C09f757BAC5A4d87d/info.json new file mode 100644 index 0000000000000..5bddf9ec68aae --- /dev/null +++ b/blockchains/base/assets/0xB166E8B140D35D9D8226E40C09f757BAC5A4d87d/info.json @@ -0,0 +1,17 @@ +{ + "name":"Non-Playable Coin", + "type":"BASE", + "symbol":"NPC", + "decimals": 18, + "website":"https://nonplayablecoin.io/", + "description":"A hive mind of unique and special individuals. $NPC is a meme fungible token (MFT) tradable on both Uniswap and NFT exchanges.", + "explorer":"https://basescan.org/token/0xb166e8b140d35d9d8226e40c09f757bac5a4d87d", + "status":"active", + "id":"0xB166E8B140D35D9D8226E40C09f757BAC5A4d87d", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/NonPlayableCoin" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0xB166E8B140D35D9D8226E40C09f757BAC5A4d87d/logo.png b/blockchains/base/assets/0xB166E8B140D35D9D8226E40C09f757BAC5A4d87d/logo.png new file mode 100644 index 0000000000000..895070a5ff75f Binary files /dev/null and b/blockchains/base/assets/0xB166E8B140D35D9D8226E40C09f757BAC5A4d87d/logo.png differ diff --git a/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/info.json b/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/info.json new file mode 100644 index 0000000000000..91dcef0e6861e --- /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 0000000000000..b66ede27403be Binary files /dev/null and b/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/logo.png differ diff --git a/blockchains/base/assets/0xBC45647eA894030a4E9801Ec03479739FA2485F0/info.json b/blockchains/base/assets/0xBC45647eA894030a4E9801Ec03479739FA2485F0/info.json new file mode 100644 index 0000000000000..9208398d71e4d --- /dev/null +++ b/blockchains/base/assets/0xBC45647eA894030a4E9801Ec03479739FA2485F0/info.json @@ -0,0 +1,40 @@ +{ + "name": "Basenji", + "type": "BASE", + "symbol": "BENJI", + "decimals": 18, + "website": "https://www.basenjibase.com/", + "description": "The contract is deployed on Base chain. I can't find any option to input Base chain so i input it as Ethereum. Hope this is ok. Thanks. basescan link: https://basescan.org/token/0xbc45647ea894030a4e9801ec03479739fa2485f0", + "explorer": "https://basescan.org/token/0xbc45647ea894030a4e9801ec03479739fa2485f0", + "status": "active", + "id": "0xBC45647eA894030a4E9801Ec03479739FA2485F0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/basenjiofficial" + }, + { + "name": "telegram", + "url": "https://t.me/BasenjiBaseOfficial" + }, + { + "name": "github", + "url": "https://github.com/BasenjiBase" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/basenjibase/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/basenji/" + }, + { + "name": "source_code", + "url": "https://github.com/BasenjiBase/BasenjiCode" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xBC45647eA894030a4E9801Ec03479739FA2485F0/logo.png b/blockchains/base/assets/0xBC45647eA894030a4E9801Ec03479739FA2485F0/logo.png new file mode 100644 index 0000000000000..8774677f7f3c2 Binary files /dev/null and b/blockchains/base/assets/0xBC45647eA894030a4E9801Ec03479739FA2485F0/logo.png differ diff --git a/blockchains/base/assets/0xC48E605c7b722a57277e087a6170B9E227e5AC0A/info.json b/blockchains/base/assets/0xC48E605c7b722a57277e087a6170B9E227e5AC0A/info.json new file mode 100644 index 0000000000000..4ee7a1cf91f1d --- /dev/null +++ b/blockchains/base/assets/0xC48E605c7b722a57277e087a6170B9E227e5AC0A/info.json @@ -0,0 +1,17 @@ +{ + "name": "OmniCat", + "website": "https://omnicat.xyz/", + "description": "OmniCat is the first omnichain memecoin. Powered by LayerZero, $OMNI is currently live and tradeable on 7 different ecosystems including Ethereum, Arbitrum and Solana.", + "explorer": "https://basescan.org/token/0xc48e605c7b722a57277e087a6170b9e227e5ac0a", + "type": "BASE", + "symbol": "OMNI", + "decimals": 18, + "status": "active", + "id": "0xC48E605c7b722a57277e087a6170B9E227e5AC0A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/OmniCatCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xC48E605c7b722a57277e087a6170B9E227e5AC0A/logo.png b/blockchains/base/assets/0xC48E605c7b722a57277e087a6170B9E227e5AC0A/logo.png new file mode 100644 index 0000000000000..485b7e16686c1 Binary files /dev/null and b/blockchains/base/assets/0xC48E605c7b722a57277e087a6170B9E227e5AC0A/logo.png differ diff --git a/blockchains/base/assets/0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff/info.json b/blockchains/base/assets/0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff/info.json new file mode 100644 index 0000000000000..e9696b24ffb2e --- /dev/null +++ b/blockchains/base/assets/0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff/info.json @@ -0,0 +1,21 @@ +{ + "name": "Based ETH", + "website": "https://reserve.org/", + "description": "Reserve is a free, permissionless platform to build, deploy and govern asset-backed currencies referred to as RTokens. RTokens are always 1:1 asset-backed, allowing for permissionless minting and redeeming. Based ETH is an RToken that maintains an Ethereum-aligned Liquid Staking Token basket.", + "explorer": "https://basescan.org/token/0xcb327b99ff831bf8223cced12b1338ff3aa322ff", + "type": "BASE", + "symbol": "bsdETH", + "decimals": 18, + "status": "active", + "id": "0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/reserveprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/AsteroidShibaCTO" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff/logo.png b/blockchains/base/assets/0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff/logo.png new file mode 100644 index 0000000000000..ca7574b0c60ea Binary files /dev/null and b/blockchains/base/assets/0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff/logo.png differ diff --git a/blockchains/base/assets/0xD1917629B3E6A72E6772Aab5dBe58Eb7FA3C2F33/info.json b/blockchains/base/assets/0xD1917629B3E6A72E6772Aab5dBe58Eb7FA3C2F33/info.json new file mode 100644 index 0000000000000..6a75a88e23a1d --- /dev/null +++ b/blockchains/base/assets/0xD1917629B3E6A72E6772Aab5dBe58Eb7FA3C2F33/info.json @@ -0,0 +1,17 @@ +{ + "name": "Settled ETHXY", + "website": "https://ethxy.com/", + "description": "Base Onchain MMORPG. Level your character. Open world PvP. Epic boss PvE. Degen with friends.", + "explorer": "https://basescan.org/token/0xd1917629b3e6a72e6772aab5dbe58eb7fa3c2f33", + "type": "BASE", + "symbol": "SEXY", + "decimals": 18, + "status": "active", + "id": "0xD1917629B3E6A72E6772Aab5dBe58Eb7FA3C2F33", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ethxy" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xD1917629B3E6A72E6772Aab5dBe58Eb7FA3C2F33/logo.png b/blockchains/base/assets/0xD1917629B3E6A72E6772Aab5dBe58Eb7FA3C2F33/logo.png new file mode 100644 index 0000000000000..c791dbd342516 Binary files /dev/null and b/blockchains/base/assets/0xD1917629B3E6A72E6772Aab5dBe58Eb7FA3C2F33/logo.png differ diff --git a/blockchains/base/assets/0xDC46c1e93B71fF9209A0F8076a9951569DC35855/info.json b/blockchains/base/assets/0xDC46c1e93B71fF9209A0F8076a9951569DC35855/info.json new file mode 100644 index 0000000000000..9024d64b244b8 --- /dev/null +++ b/blockchains/base/assets/0xDC46c1e93B71fF9209A0F8076a9951569DC35855/info.json @@ -0,0 +1,17 @@ +{ + "name": "MYSTCL", + "website": "https://mystcl.xyz/", + "description": "MYSTCLs are collection of 7,000 NFT's, and are the first ERC404 PFP collection on Base.", + "explorer": "https://basescan.org/token/0xdc46c1e93b71ff9209a0f8076a9951569dc35855", + "type": "BASE", + "symbol": "MYST", + "decimals": 18, + "status": "active", + "id": "0xDC46c1e93B71fF9209A0F8076a9951569DC35855", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/WeMYSTCL" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xDC46c1e93B71fF9209A0F8076a9951569DC35855/logo.png b/blockchains/base/assets/0xDC46c1e93B71fF9209A0F8076a9951569DC35855/logo.png new file mode 100644 index 0000000000000..00716830c01e2 Binary files /dev/null and b/blockchains/base/assets/0xDC46c1e93B71fF9209A0F8076a9951569DC35855/logo.png differ diff --git a/blockchains/base/assets/0xE1aBD004250AC8D1F199421d647e01d094FAa180/info.json b/blockchains/base/assets/0xE1aBD004250AC8D1F199421d647e01d094FAa180/info.json new file mode 100644 index 0000000000000..6f1cfc1cbe56e --- /dev/null +++ b/blockchains/base/assets/0xE1aBD004250AC8D1F199421d647e01d094FAa180/info.json @@ -0,0 +1,17 @@ +{ + "name":"Roost Coin", + "type":"BASE", + "symbol":"ROOST", + "decimals": 18, + "website":"https://roost.wtf", + "description":"ROOST is the champion of the Base ecosystem. Protecting, vibing and growing the $ROOST community.", + "explorer":"https://basescan.org/token/0xe1abd004250ac8d1f199421d647e01d094faa180", + "status":"active", + "id":"0xE1aBD004250AC8D1F199421d647e01d094FAa180", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/RoostCoin" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0xE1aBD004250AC8D1F199421d647e01d094FAa180/logo.png b/blockchains/base/assets/0xE1aBD004250AC8D1F199421d647e01d094FAa180/logo.png new file mode 100644 index 0000000000000..e3bfa945dd7b2 Binary files /dev/null and b/blockchains/base/assets/0xE1aBD004250AC8D1F199421d647e01d094FAa180/logo.png differ diff --git a/blockchains/base/assets/0xE2C407753CB782e83B144F5CE9afa9896Fe3882B/info.json b/blockchains/base/assets/0xE2C407753CB782e83B144F5CE9afa9896Fe3882B/info.json new file mode 100644 index 0000000000000..b5d25f41b6044 --- /dev/null +++ b/blockchains/base/assets/0xE2C407753CB782e83B144F5CE9afa9896Fe3882B/info.json @@ -0,0 +1,15 @@ +{ + "name": "Base Dogecoin", + "website": "https://dogecoin.com/", + "description": "Dogecoin (DOGE BASE) is a token issued by Base on Base Chain; its price is pegged to Dogecoin (DOGE) at a ratio of 1:1.", + "explorer": "https://basescan.org/token/0xe2c407753cb782e83b144f5ce9afa9896fe3882b", + "research": "https://research.binance.com/en/projects/dogecoin", + "type": "BASE", + "symbol": "DOGE", + "decimals": 10, + "status": "active", + "id": "0xE2C407753CB782e83B144F5CE9afa9896Fe3882B", + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xE2C407753CB782e83B144F5CE9afa9896Fe3882B/logo.png b/blockchains/base/assets/0xE2C407753CB782e83B144F5CE9afa9896Fe3882B/logo.png new file mode 100644 index 0000000000000..8db4b84afc431 Binary files /dev/null and b/blockchains/base/assets/0xE2C407753CB782e83B144F5CE9afa9896Fe3882B/logo.png differ diff --git a/blockchains/base/assets/0xE3086852A4B125803C815a158249ae468A3254Ca/info.json b/blockchains/base/assets/0xE3086852A4B125803C815a158249ae468A3254Ca/info.json new file mode 100644 index 0000000000000..0b9b86a331fde --- /dev/null +++ b/blockchains/base/assets/0xE3086852A4B125803C815a158249ae468A3254Ca/info.json @@ -0,0 +1,17 @@ +{ + "name":"mfercoin", + "type":"BASE", + "symbol":"mfer", + "decimals":18, + "website":"https://mirror.xyz/sartoshi.eth/gTS1jOL9JdfbO2--rTIMiGo5SmovIbxyPR7xIJJCxUo", + "description":"a peer-to-peer electronic mfer system", + "explorer":"https://basescan.org/token/0xe3086852a4b125803c815a158249ae468a3254ca", + "status":"active", + "id":"0xE3086852A4B125803C815a158249ae468A3254Ca", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/sartoshi_rip" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0xE3086852A4B125803C815a158249ae468A3254Ca/logo.png b/blockchains/base/assets/0xE3086852A4B125803C815a158249ae468A3254Ca/logo.png new file mode 100644 index 0000000000000..c47971bf3f708 Binary files /dev/null and b/blockchains/base/assets/0xE3086852A4B125803C815a158249ae468A3254Ca/logo.png differ diff --git a/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/info.json b/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/info.json new file mode 100644 index 0000000000000..24c8eb857fd99 --- /dev/null +++ b/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/info.json @@ -0,0 +1,28 @@ +{ + "name": "StargateToken", + "website": "https://stargate.finance", + "description": "Stargate is a fully composable liquidity transport protocol that lives at the heart of Omnichain DeFi.", + "explorer": "https://basescan.org/token/0xe3b53af74a4bf62ae5511055290838050bf764df", + "type": "BASE", + "symbol": "STG", + "decimals": 18, + "status": "active", + "id": "0xE3B53AF74a4BF62Ae5511055290838050bf764Df", + "links": [ + { + "name": "medium", + "url": "https://medium.com/stargate-official" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/LEM0ELklmO1kODdh" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stargate-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/logo.png b/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/logo.png new file mode 100644 index 0000000000000..f983849d90c4f Binary files /dev/null and b/blockchains/base/assets/0xE3B53AF74a4BF62Ae5511055290838050bf764Df/logo.png differ diff --git a/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 0000000000000..37f28d3cb6160 --- /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 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/base/assets/0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542/info.json b/blockchains/base/assets/0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542/info.json new file mode 100644 index 0000000000000..6d7528efca047 --- /dev/null +++ b/blockchains/base/assets/0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542/info.json @@ -0,0 +1,17 @@ +{ + "name": "BLACK ROCK", + "website": "https://www.blackrockonbase.com/", + "description": "Just a Black Rock on Base.", + "explorer": "https://basescan.org/token/0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542", + "type": "BASE", + "symbol": "ROCK", + "decimals": 18, + "status": "active", + "id": "0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/blackrockonbase" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542/logo.png b/blockchains/base/assets/0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542/logo.png new file mode 100644 index 0000000000000..7f20eda1b88cc Binary files /dev/null and b/blockchains/base/assets/0xEcE7B98bD817ee5B1F2f536dAf34D0B6af8Bb542/logo.png differ diff --git a/blockchains/base/assets/0xF1B4ddF712E108cf43711B1C39f2fDDb0d5Ce243/info.json b/blockchains/base/assets/0xF1B4ddF712E108cf43711B1C39f2fDDb0d5Ce243/info.json new file mode 100644 index 0000000000000..8252c8be524e5 --- /dev/null +++ b/blockchains/base/assets/0xF1B4ddF712E108cf43711B1C39f2fDDb0d5Ce243/info.json @@ -0,0 +1,17 @@ +{ + "name": "BrianArmstrongCoinbaseUSDC2012Normie", + "website": "https://brianarmstrongcoinbaseusdc2012normie.com", + "description": "BASE emerges as a tribute memecoin within the blockchain sphere, embodying the pioneering essence of Brian Armstrong and the cultural zeitgeist of crypto", + "explorer": "https://basescan.org/token/0xf1b4ddf712e108cf43711b1c39f2fddb0d5ce243", + "type": "BASE", + "symbol": "BASE", + "decimals": 18, + "status": "active", + "id": "0xF1B4ddF712E108cf43711B1C39f2fDDb0d5Ce243", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BACU2012N" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xF1B4ddF712E108cf43711B1C39f2fDDb0d5Ce243/logo.png b/blockchains/base/assets/0xF1B4ddF712E108cf43711B1C39f2fDDb0d5Ce243/logo.png new file mode 100644 index 0000000000000..9b80767ea35aa Binary files /dev/null and b/blockchains/base/assets/0xF1B4ddF712E108cf43711B1C39f2fDDb0d5Ce243/logo.png differ diff --git a/blockchains/base/assets/0xF6e932Ca12afa26665dC4dDE7e27be02A7c02e50/info.json b/blockchains/base/assets/0xF6e932Ca12afa26665dC4dDE7e27be02A7c02e50/info.json new file mode 100644 index 0000000000000..7763f869dd59c --- /dev/null +++ b/blockchains/base/assets/0xF6e932Ca12afa26665dC4dDE7e27be02A7c02e50/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mochi", + "website": "http://mochithecatcoin.com/", + "description": "ZThe cutest cat in crypto. Named after the CEO of Coinbase's cat.", + "explorer": "https://basescan.org/token/0xf6e932ca12afa26665dc4dde7e27be02a7c02e50", + "type": "BASE", + "symbol": "MOCHI", + "decimals": 18, + "status": "active", + "id": "0xF6e932Ca12afa26665dC4dDE7e27be02A7c02e50", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mochi-the-catcoin-new/" + }, + { + "name": "twitter", + "url": "https://twitter.com/mochi_token" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xF6e932Ca12afa26665dC4dDE7e27be02A7c02e50/logo.png b/blockchains/base/assets/0xF6e932Ca12afa26665dC4dDE7e27be02A7c02e50/logo.png new file mode 100644 index 0000000000000..d7c69de221bbf Binary files /dev/null and b/blockchains/base/assets/0xF6e932Ca12afa26665dC4dDE7e27be02A7c02e50/logo.png differ diff --git a/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/info.json b/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/info.json new file mode 100644 index 0000000000000..0857a08ba8dd7 --- /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 0000000000000..ca284f82fac68 Binary files /dev/null and b/blockchains/base/assets/0xFd4330b0312fdEEC6d4225075b82E00493FF2e3f/logo.png differ diff --git a/blockchains/base/assets/0xaB36452DbAC151bE02b16Ca17d8919826072f64a/info.json b/blockchains/base/assets/0xaB36452DbAC151bE02b16Ca17d8919826072f64a/info.json new file mode 100644 index 0000000000000..5becf634bf889 --- /dev/null +++ b/blockchains/base/assets/0xaB36452DbAC151bE02b16Ca17d8919826072f64a/info.json @@ -0,0 +1,21 @@ +{ + "name": "Reserve Rights", + "type": "BASE", + "symbol": "RSR", + "decimals": 18, + "website": "https://reserve.org/", + "description": "The fluctuating protocol token that plays a role in stabilizing RSV and confers the cryptographic right to purchase excess Reserve tokens as the network grows.", + "explorer": "https://basescan.org/token/0xab36452dbac151be02b16ca17d8919826072f64a", + "status": "active", + "id": "0xaB36452DbAC151bE02b16Ca17d8919826072f64a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/reserveprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/reservecurrency" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xaB36452DbAC151bE02b16Ca17d8919826072f64a/logo.png b/blockchains/base/assets/0xaB36452DbAC151bE02b16Ca17d8919826072f64a/logo.png new file mode 100644 index 0000000000000..0fc629c2772a0 Binary files /dev/null and b/blockchains/base/assets/0xaB36452DbAC151bE02b16Ca17d8919826072f64a/logo.png differ diff --git a/blockchains/base/assets/0xcdE172dc5ffC46D228838446c57C1227e0B82049/info.json b/blockchains/base/assets/0xcdE172dc5ffC46D228838446c57C1227e0B82049/info.json new file mode 100644 index 0000000000000..a9ddc86f32089 --- /dev/null +++ b/blockchains/base/assets/0xcdE172dc5ffC46D228838446c57C1227e0B82049/info.json @@ -0,0 +1,21 @@ +{ + "name": "Boomer", + "website": "https://www.baseboomer.com/", + "description": "$BOOMER Coin is swooping in to drag boomers into the digital currency world", + "explorer": "https://basescan.org/token/0xcde172dc5ffc46d228838446c57c1227e0b82049", + "type": "BASE", + "symbol": "BOOMER", + "decimals": 18, + "status": "active", + "id": "0xcdE172dc5ffC46D228838446c57C1227e0B82049", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BoomerOnBase" + }, + { + "name": "telegram", + "url": "https://t.me/baseboomerportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xcdE172dc5ffC46D228838446c57C1227e0B82049/logo.png b/blockchains/base/assets/0xcdE172dc5ffC46D228838446c57C1227e0B82049/logo.png new file mode 100644 index 0000000000000..df55d1fd92ff7 Binary files /dev/null and b/blockchains/base/assets/0xcdE172dc5ffC46D228838446c57C1227e0B82049/logo.png differ diff --git a/blockchains/base/assets/0xd07379a755A8f11B57610154861D694b2A0f615a/info.json b/blockchains/base/assets/0xd07379a755A8f11B57610154861D694b2A0f615a/info.json new file mode 100644 index 0000000000000..8e29b8c1d6da9 --- /dev/null +++ b/blockchains/base/assets/0xd07379a755A8f11B57610154861D694b2A0f615a/info.json @@ -0,0 +1,17 @@ +{ + "name": "BASE", + "website": "https://swapbased.finance/", + "description": "Native Base chain DEX. Offering swaps, single staking, bridging, perpetuals and concentrated liquidity all in one place!", + "explorer": "https://basescan.org/token/0xd07379a755a8f11b57610154861d694b2a0f615a", + "type": "BASE", + "symbol": "BASE", + "decimals": 18, + "status": "active", + "id": "0xd07379a755A8f11B57610154861D694b2A0f615a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/swap_based" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xd07379a755A8f11B57610154861D694b2A0f615a/logo.png b/blockchains/base/assets/0xd07379a755A8f11B57610154861D694b2A0f615a/logo.png new file mode 100644 index 0000000000000..fd1beffc41b7d Binary files /dev/null and b/blockchains/base/assets/0xd07379a755A8f11B57610154861D694b2A0f615a/logo.png differ diff --git a/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/info.json b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/info.json new file mode 100644 index 0000000000000..0291ab8bcb2e9 --- /dev/null +++ b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/info.json @@ -0,0 +1,37 @@ +{ + "name": "USD Base Coin", + "symbol": "USDbC", + "type": "BASE", + "decimals": 6, + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "website": "https://www.centre.io", + "explorer": "https://basescan.org/token/0xd9aaec86b65d86f6a7b5b1b0c42ffa531710b6ca", + "research": "https://research.binance.com/en/projects/usd-coin", + "status": "active", + "id": "0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA", + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/logo.png b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/logo.png new file mode 100644 index 0000000000000..819922b52bcd6 Binary files /dev/null and b/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/logo.png differ diff --git a/blockchains/base/assets/0xdADc4F8E9d8d37294de0E02A2Ce8Cc0c90A4F6c2/info.json b/blockchains/base/assets/0xdADc4F8E9d8d37294de0E02A2Ce8Cc0c90A4F6c2/info.json new file mode 100644 index 0000000000000..e72c13054a91e --- /dev/null +++ b/blockchains/base/assets/0xdADc4F8E9d8d37294de0E02A2Ce8Cc0c90A4F6c2/info.json @@ -0,0 +1,17 @@ +{ + "name": "Starter.xyz", + "website": "https://starter.xyz/", + "description": "Backing tomorrow’s success stories today. Join the onchain capital revolution, where entrepreneurs connect with visionary backers to create a new future.", + "explorer": "https://basescan.org/token/0xdadc4f8e9d8d37294de0e02a2ce8cc0c90a4f6c2", + "type": "BASE", + "symbol": "BUIDL", + "decimals": 18, + "status": "active", + "id": "0xdADc4F8E9d8d37294de0E02A2Ce8Cc0c90A4F6c2", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/starterlabshq" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xdADc4F8E9d8d37294de0E02A2Ce8Cc0c90A4F6c2/logo.png b/blockchains/base/assets/0xdADc4F8E9d8d37294de0E02A2Ce8Cc0c90A4F6c2/logo.png new file mode 100644 index 0000000000000..fa8a05088184d Binary files /dev/null and b/blockchains/base/assets/0xdADc4F8E9d8d37294de0E02A2Ce8Cc0c90A4F6c2/logo.png differ diff --git a/blockchains/base/assets/0xe2c86869216aC578bd62a4b8313770d9EE359A05/info.json b/blockchains/base/assets/0xe2c86869216aC578bd62a4b8313770d9EE359A05/info.json new file mode 100644 index 0000000000000..a88d37dacc00c --- /dev/null +++ b/blockchains/base/assets/0xe2c86869216aC578bd62a4b8313770d9EE359A05/info.json @@ -0,0 +1,32 @@ +{ + "name": "EMAIL Token", + "website": "https://ethermail.io", + "description": "The Email Token ($EMT) provides security and protection against unsolicited email and phishing while simultaneously rewards relevant content through a consensual marketing mechanism increasing adoption and engagement as both users and businesses benefit.", + "explorer": "https://basescan.org/token/0xe2c86869216aC578bd62a4b8313770d9EE359A05", + "type": "BASE", + "symbol": "EMT", + "decimals": 18, + "status": "active", + "id": "0xe2c86869216aC578bd62a4b8313770d9EE359A05", + "links": [ + { + "name": "whitepaper", + "url": "https://ethermail.io/emt" + }, + { + "name": "twitter", + "url": "https://twitter.com/ethermail_io" + }, + { + "name": "medium", + "url": "https://medium.com/@ethermail_io" + }, + { + "name": "telegram", + "url": "https://t.me/ethermail_official" + } + ], + "tags": [ + "privacy" + ] +} diff --git a/blockchains/base/assets/0xe2c86869216aC578bd62a4b8313770d9EE359A05/logo.png b/blockchains/base/assets/0xe2c86869216aC578bd62a4b8313770d9EE359A05/logo.png new file mode 100644 index 0000000000000..1abcc5a534e7a Binary files /dev/null and b/blockchains/base/assets/0xe2c86869216aC578bd62a4b8313770d9EE359A05/logo.png differ diff --git a/blockchains/base/assets/0xebfF2db643Cf955247339c8c6bCD8406308ca437/info.json b/blockchains/base/assets/0xebfF2db643Cf955247339c8c6bCD8406308ca437/info.json new file mode 100644 index 0000000000000..4652896b39cf4 --- /dev/null +++ b/blockchains/base/assets/0xebfF2db643Cf955247339c8c6bCD8406308ca437/info.json @@ -0,0 +1,21 @@ +{ + "name": "ChompCoin", + "website": "https://chompcoin.xyz/", + "description": "Chomp is Base's fiercest little fuzzball! Orange is the new blue, so join the chompunity, and Lettuce Cook.", + "explorer": "https://basescan.org/token/0xebff2db643cf955247339c8c6bcd8406308ca437", + "type": "BASE", + "symbol": "CHOMP", + "decimals": 18, + "status": "active", + "id": "0xebfF2db643Cf955247339c8c6bCD8406308ca437", + "links": [ + { + "name": "telegram", + "url": "https://t.me/chompcoinxyz" + }, + { + "name": "twitter", + "url": "https://twitter.com/Chompcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/base/assets/0xebfF2db643Cf955247339c8c6bCD8406308ca437/logo.png b/blockchains/base/assets/0xebfF2db643Cf955247339c8c6bCD8406308ca437/logo.png new file mode 100644 index 0000000000000..e30fd675f1d21 Binary files /dev/null and b/blockchains/base/assets/0xebfF2db643Cf955247339c8c6bCD8406308ca437/logo.png differ diff --git a/blockchains/base/assets/0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b/info.json b/blockchains/base/assets/0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b/info.json new file mode 100644 index 0000000000000..bb736323b34f9 --- /dev/null +++ b/blockchains/base/assets/0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b/info.json @@ -0,0 +1,21 @@ +{ + "name": "Prime", + "type": "BASE", + "symbol": "PRIME", + "decimals": 18, + "website": "https://www.echelon.io/", + "description": "The Echelon Prime Foundation is a Web3 ecosystem advancing the next-gen of gaming. Echelon creates and distributes tools to encourage innovation in, and promote the growth of, games. These tools encompass smart contract libraries, communication infrastructure, governance frameworks and more.", + "explorer": "https://basescan.org/token/0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b", + "status": "active", + "id": "0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/echelon-prime/" + }, + { + "name": "twitter", + "url": "https://twitter.com/EchelonFND" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b/logo.png b/blockchains/base/assets/0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b/logo.png new file mode 100644 index 0000000000000..1aea1924e8403 Binary files /dev/null and b/blockchains/base/assets/0xfA980cEd6895AC314E7dE34Ef1bFAE90a5AdD21b/logo.png differ diff --git a/blockchains/base/assets/0xfEA9DcDc9E23a9068bF557AD5b186675C61d33eA/info.json b/blockchains/base/assets/0xfEA9DcDc9E23a9068bF557AD5b186675C61d33eA/info.json new file mode 100644 index 0000000000000..dae29b32071b0 --- /dev/null +++ b/blockchains/base/assets/0xfEA9DcDc9E23a9068bF557AD5b186675C61d33eA/info.json @@ -0,0 +1,17 @@ +{ + "name":"Based Shiba Inu", + "type":"BASE", + "symbol":"BSHIB", + "decimals":18, + "website":"http://basedshibainu.com/", + "description":"Based Shiba is proudly calling BASE Network its home. It aims to add a splash of color to the blockchain scene and create memorable experiences for their community.", + "explorer":"https://basescan.org/token/0xfea9dcdc9e23a9068bf557ad5b186675c61d33ea", + "status":"active", + "id":"0xfEA9DcDc9E23a9068bF557AD5b186675C61d33eA", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/BasedShibaInu" + } + ] + } \ No newline at end of file diff --git a/blockchains/base/assets/0xfEA9DcDc9E23a9068bF557AD5b186675C61d33eA/logo.png b/blockchains/base/assets/0xfEA9DcDc9E23a9068bF557AD5b186675C61d33eA/logo.png new file mode 100644 index 0000000000000..baf39772cd0af Binary files /dev/null and b/blockchains/base/assets/0xfEA9DcDc9E23a9068bF557AD5b186675C61d33eA/logo.png differ diff --git a/blockchains/base/info/info.json b/blockchains/base/info/info.json new file mode 100644 index 0000000000000..ca603c5d01fb7 --- /dev/null +++ b/blockchains/base/info/info.json @@ -0,0 +1,26 @@ +{ + "name": "Base", + "website": "https://base.org", + "description": "Base is a secure, low-cost, builder-friendly Ethereum L2 built to bring the next billion users onchain.", + "explorer": "https://basescan.org", + "research": "https://base.mirror.xyz", + "symbol": "ETH", + "type": "coin", + "coin_type": 8453, + "decimals": 18, + "status": "active", + "rpc_url": "https://base-mainnet.public.blastapi.io", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/buildonbase" + }, + { + "name": "github", + "url": "https://github.com/base-org" + } + ] +} diff --git a/blockchains/base/info/logo.png b/blockchains/base/info/logo.png new file mode 100644 index 0000000000000..c5a23cea247f9 Binary files /dev/null and b/blockchains/base/info/logo.png differ diff --git a/blockchains/base/tokenlist.json b/blockchains/base/tokenlist.json new file mode 100644 index 0000000000000..547ebf2b1c128 --- /dev/null +++ b/blockchains/base/tokenlist.json @@ -0,0 +1,83 @@ +{ + "name": "Trust Wallet: Base List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2024-03-18T14:33:26.183301", + "tokens": [ + { + "asset": "c8453_t0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA", + "type": "BASE", + "address": "0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA", + "name": "USD Base Coin", + "symbol": "USDbC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA/logo.png", + "pairs": [] + }, + { + "asset": "c8453_t0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9", + "type": "BASE", + "address": "0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9", + "name": "Baseswap", + "symbol": "BSWAP", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0x78a087d713Be963Bf307b18F2Ff8122EF9A63ae9/logo.png", + "pairs": [] + }, + { + "asset": "c8453_t0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "type": "BASE", + "address": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "name": "Axelar Wrapped USDC", + "symbol": "axlUSDC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png", + "pairs": [] + }, + { + "asset": "c8453_t0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", + "type": "BASE", + "address": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", + "name": "Dai", + "symbol": "DAI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png", + "pairs": [] + }, + { + "asset": "c8453_t0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239", + "type": "BASE", + "address": "0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239", + "name": "yearn.finance", + "symbol": "YFI", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0x9EaF8C1E34F05a589EDa6BAfdF391Cf6Ad3CB239/logo.png", + "pairs": [] + }, + { + "asset": "c8453_t0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c", + "type": "BASE", + "address": "0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c", + "name": "Rocket Pool ETH", + "symbol": "rETH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c/logo.png", + "pairs": [] + }, + { + "asset": "c8453_t0x9A86980D3625b4A6E69D8a4606D51cbc019e2002", + "type": "BASE", + "address": "0x9A86980D3625b4A6E69D8a4606D51cbc019e2002", + "name": "FOMO BULL CLUB", + "symbol": "FOMO", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/base/assets/0x9A86980D3625b4A6E69D8a4606D51cbc019e2002/logo.png", + "pairs": [] + } + + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} \ No newline at end of file diff --git a/blockchains/binance/assets/RUNE-B1A/info.json b/blockchains/binance/assets/RUNE-B1A/info.json index 2c52f35574bf5..e9fbacc464ad5 100644 --- a/blockchains/binance/assets/RUNE-B1A/info.json +++ b/blockchains/binance/assets/RUNE-B1A/info.json @@ -12,4 +12,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} diff --git a/blockchains/binance/assets/TWT-8C2/logo.png b/blockchains/binance/assets/TWT-8C2/logo.png index 8e97855518bfd..276a83baae8dd 100644 Binary files a/blockchains/binance/assets/TWT-8C2/logo.png and b/blockchains/binance/assets/TWT-8C2/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg/logo.png b/blockchains/binance/validators/assets/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg/logo.png new file mode 100644 index 0000000000000..529434877a762 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png b/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png index 158d6b01d52fb..f5f3ada9451c6 100644 Binary files a/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png and b/blockchains/binance/validators/assets/bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag/logo.png b/blockchains/binance/validators/assets/bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag/logo.png new file mode 100644 index 0000000000000..a907d86b4c996 Binary files /dev/null and b/blockchains/binance/validators/assets/bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag/logo.png differ diff --git a/blockchains/binance/validators/assets/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh/logo.png b/blockchains/binance/validators/assets/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh/logo.png new file mode 100644 index 0000000000000..8ebdc3023c8bd Binary files /dev/null and b/blockchains/binance/validators/assets/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh/logo.png differ diff --git a/blockchains/binance/validators/list.json b/blockchains/binance/validators/list.json index b50266d61434f..61300089e5715 100644 --- a/blockchains/binance/validators/list.json +++ b/blockchains/binance/validators/list.json @@ -1,4 +1,10 @@ [ + { + "id": "bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, { "id": "bva1m02zrj77ahdz3597nscq7a6dhxnwsuutsljcvj", "name": "Synclub", @@ -89,12 +95,6 @@ "description": "Seoraksan validator", "website": "https://www.binance.org/en/staking/validator/bva1ghewcuxuunp4g0xj6yznnk6j2ccgxxhtf6h0r2" }, - { - "id": "bva1c6aqe9ndzcn2nsan963z43xg6kgrvzynl97785", - "name": "TW Staking", - "description": "The most trusted & secure crypto wallet", - "website": "https://trustwallet.com" - }, { "id": "bva1t42gtf6hawqgpmdpjzmvlzvmlttlqtkvlmgjxt", "name": "BscScan", @@ -197,6 +197,12 @@ "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", "website": "https://www.bnbchain.org/en/staking/validator/bva1lup0myq4xqu0ze0ng92w69jqwd2qqycxc76v2r" }, + { + "id": "bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh", + "name": "Legend VI - Alternate", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/staking/validator/bva1sm4dclchvxq6yfmvduzc78rktaefwx4taeg6yh" + }, { "id": "bva139vgg7x68z3z7mjcyg6q02h3y0pvah678vr0y3", "name": "HashQuark", @@ -208,5 +214,17 @@ "name": "Tranchess", "description": "Tranchess protocol enables BNB holders to earn delegator rewards on top of protocol token (CHESS) airdrops.", "website": "https://tranchess.com/" + }, + { + "id": "bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg", + "name": "Legend VII - Alternate", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/staking/validator/bva1346977fnwf790657wxl0w3396ddsw7rygh9hgg" + }, + { + "id": "bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag", + "name": "Legend VIII - Alternate", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/staking/validator/bva1nsm7askda5z8r3lfvu6l26acm0rycqh3w87lag" } ] diff --git a/blockchains/bitcoin/assets/btcs/info.json b/blockchains/bitcoin/assets/btcs/info.json new file mode 100644 index 0000000000000..77e9f7f885ac7 --- /dev/null +++ b/blockchains/bitcoin/assets/btcs/info.json @@ -0,0 +1,11 @@ +{ + "name": "BTCs", + "symbol": "BTCS", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/btcs", + "status": "active", + "id": "btcs" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/btcs/logo.png b/blockchains/bitcoin/assets/btcs/logo.png new file mode 100644 index 0000000000000..461dba63aeab5 Binary files /dev/null and b/blockchains/bitcoin/assets/btcs/logo.png differ diff --git a/blockchains/bitcoin/assets/ligo/info.json b/blockchains/bitcoin/assets/ligo/info.json new file mode 100644 index 0000000000000..3a84c3b6352c5 --- /dev/null +++ b/blockchains/bitcoin/assets/ligo/info.json @@ -0,0 +1,11 @@ +{ + "name": "ligo", + "symbol": "LIGO", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/ligo", + "status": "active", + "id": "ligo" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/ligo/logo.png b/blockchains/bitcoin/assets/ligo/logo.png new file mode 100644 index 0000000000000..45774bb94680b Binary files /dev/null and b/blockchains/bitcoin/assets/ligo/logo.png differ diff --git a/blockchains/bitcoin/assets/ordi/info.json b/blockchains/bitcoin/assets/ordi/info.json new file mode 100644 index 0000000000000..e8c062adf2e52 --- /dev/null +++ b/blockchains/bitcoin/assets/ordi/info.json @@ -0,0 +1,11 @@ +{ + "name": "ordi", + "symbol": "ORDI", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/ordi", + "status": "active", + "id": "ordi" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/ordi/logo.png b/blockchains/bitcoin/assets/ordi/logo.png new file mode 100644 index 0000000000000..7bf5c34697770 Binary files /dev/null and b/blockchains/bitcoin/assets/ordi/logo.png differ diff --git a/blockchains/bitcoin/assets/piin/info.json b/blockchains/bitcoin/assets/piin/info.json new file mode 100644 index 0000000000000..c8d99d33518f0 --- /dev/null +++ b/blockchains/bitcoin/assets/piin/info.json @@ -0,0 +1,11 @@ +{ + "name": "piin", + "symbol": "piin", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/piin", + "status": "active", + "id": "piin" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/piin/logo.png b/blockchains/bitcoin/assets/piin/logo.png new file mode 100644 index 0000000000000..864b13b3b188a Binary files /dev/null and b/blockchains/bitcoin/assets/piin/logo.png differ diff --git a/blockchains/bitcoin/assets/rats/info.json b/blockchains/bitcoin/assets/rats/info.json new file mode 100644 index 0000000000000..aba7d24638879 --- /dev/null +++ b/blockchains/bitcoin/assets/rats/info.json @@ -0,0 +1,11 @@ +{ + "name": "rats", + "symbol": "RATS", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/rats", + "status": "active", + "id": "rats" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/rats/logo.png b/blockchains/bitcoin/assets/rats/logo.png new file mode 100644 index 0000000000000..8e736469d7587 Binary files /dev/null and b/blockchains/bitcoin/assets/rats/logo.png differ diff --git a/blockchains/bitcoin/assets/sats/info.json b/blockchains/bitcoin/assets/sats/info.json new file mode 100644 index 0000000000000..3eb1af0d432c8 --- /dev/null +++ b/blockchains/bitcoin/assets/sats/info.json @@ -0,0 +1,11 @@ +{ + "name": "sats", + "symbol": "SATS", + "type": "BRC20", + "decimals": 18, + "description": "-", + "website": "https://unisat.io", + "explorer": "https://unisat.io/brc20/sats", + "status": "active", + "id": "sats" +} \ No newline at end of file diff --git a/blockchains/bitcoin/assets/sats/logo.png b/blockchains/bitcoin/assets/sats/logo.png new file mode 100644 index 0000000000000..f2e82f29725f1 Binary files /dev/null and b/blockchains/bitcoin/assets/sats/logo.png differ diff --git a/blockchains/blast/assets/0x0B4d0ee29857c3961b380d4ec138EA5814E346b9/info.json b/blockchains/blast/assets/0x0B4d0ee29857c3961b380d4ec138EA5814E346b9/info.json new file mode 100644 index 0000000000000..49e22eb4c7210 --- /dev/null +++ b/blockchains/blast/assets/0x0B4d0ee29857c3961b380d4ec138EA5814E346b9/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pacman Blastoff", + "symbol": "PACM", + "type": "BLAST", + "description": "Unruggable meme with burnt LP. P@cman Blastoff is the legendary 69th memecoin, fueled by Pacman Blur's wild vision. Show how much you love Pacman and his beast Blast L2 by owning $PACM. Get ready for the ride!", + "decimals": 18, + "website": "https://airdrop.pacman.meme/#/", + "explorer": "https://blastscan.io/token/0x0B4d0ee29857c3961b380d4ec138EA5814E346b9", + "status": "active", + "id": "0x0B4d0ee29857c3961b380d4ec138EA5814E346b9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/pacman_blastoff" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pacman-blastoff/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x0B4d0ee29857c3961b380d4ec138EA5814E346b9/logo.png b/blockchains/blast/assets/0x0B4d0ee29857c3961b380d4ec138EA5814E346b9/logo.png new file mode 100644 index 0000000000000..0dd3194e3dddf Binary files /dev/null and b/blockchains/blast/assets/0x0B4d0ee29857c3961b380d4ec138EA5814E346b9/logo.png differ diff --git a/blockchains/blast/assets/0x15d24de366F69b835Be19f7Cf9447e770315DD80/info.json b/blockchains/blast/assets/0x15d24de366F69b835Be19f7Cf9447e770315DD80/info.json new file mode 100644 index 0000000000000..8d9bfb643b58b --- /dev/null +++ b/blockchains/blast/assets/0x15d24de366F69b835Be19f7Cf9447e770315DD80/info.json @@ -0,0 +1,17 @@ +{ + "name": "KAP Games", + "website": "https://www.kap.gg/", + "description": "KAP Games is a web3 gaming publisher, studio, and distributor specializing in browser and mobile-native experiences.", + "explorer": "https://blastscan.io/token/0x15d24de366f69b835be19f7cf9447e770315dd80", + "type": "BLAST", + "symbol": "KAP", + "decimals": 18, + "status": "active", + "id": "0x15d24de366F69b835Be19f7Cf9447e770315DD80", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kap-games/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x15d24de366F69b835Be19f7Cf9447e770315DD80/logo.png b/blockchains/blast/assets/0x15d24de366F69b835Be19f7Cf9447e770315DD80/logo.png new file mode 100644 index 0000000000000..d7f5e93d2350e Binary files /dev/null and b/blockchains/blast/assets/0x15d24de366F69b835Be19f7Cf9447e770315DD80/logo.png differ diff --git a/blockchains/blast/assets/0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A/info.json b/blockchains/blast/assets/0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A/info.json new file mode 100644 index 0000000000000..9ee47a7cfee4a --- /dev/null +++ b/blockchains/blast/assets/0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pump", + "symbol": "PUMP", + "type": "BLAST", + "description": "The OG crypto meme", + "decimals": 18, + "website": "https://t.me/pumpitcoingroup", + "explorer": "https://blastscan.io/token/0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A", + "status": "active", + "id": "0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/realpumpitcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pump/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A/logo.png b/blockchains/blast/assets/0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A/logo.png new file mode 100644 index 0000000000000..a31165899665a Binary files /dev/null and b/blockchains/blast/assets/0x216A5a1135A9dab49FA9Ad865E0f22FE22b5630A/logo.png differ diff --git a/blockchains/blast/assets/0x236bb48fcF61ce996B2C8C196a9258c176100c7d/info.json b/blockchains/blast/assets/0x236bb48fcF61ce996B2C8C196a9258c176100c7d/info.json new file mode 100644 index 0000000000000..1d052d6358918 --- /dev/null +++ b/blockchains/blast/assets/0x236bb48fcF61ce996B2C8C196a9258c176100c7d/info.json @@ -0,0 +1,17 @@ +{ + "name": "RabbitX", + "website": "https://rabbitx.io/", + "description": "RabbitX is a global permissionless perpetuals exchange built on Starknet.", + "explorer": "https://blastscan.io/token/0x236bb48fcf61ce996b2c8c196a9258c176100c7d", + "type": "BLAST", + "symbol": "RBX", + "decimals": 18, + "status": "active", + "id": "0x236bb48fcF61ce996B2C8C196a9258c176100c7d", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rabbitx/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x236bb48fcF61ce996B2C8C196a9258c176100c7d/logo.png b/blockchains/blast/assets/0x236bb48fcF61ce996B2C8C196a9258c176100c7d/logo.png new file mode 100644 index 0000000000000..a85442d84002d Binary files /dev/null and b/blockchains/blast/assets/0x236bb48fcF61ce996B2C8C196a9258c176100c7d/logo.png differ diff --git a/blockchains/blast/assets/0x2416092f143378750bb29b79eD961ab195CcEea5/info.json b/blockchains/blast/assets/0x2416092f143378750bb29b79eD961ab195CcEea5/info.json new file mode 100644 index 0000000000000..e14a8d8684ddf --- /dev/null +++ b/blockchains/blast/assets/0x2416092f143378750bb29b79eD961ab195CcEea5/info.json @@ -0,0 +1,21 @@ +{ + "name": "ezETH", + "website": "https://www.renzoprotocol.com/", + "description": "Renzo is a Liquid Restaking Token (LRT) and Strategy Manager for EigenLayer. It is the interface to the EigenLayer ecosystem securing Actively Validated Services (AVSs).", + "explorer": "https://blastscan.io/token/0x2416092f143378750bb29b79eD961ab195CcEea5", + "type": "BLAST", + "symbol": "Renzo Restaked ETH", + "decimals": 18, + "status": "active", + "id": "0x2416092f143378750bb29b79eD961ab195CcEea5", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/renzo-restaked-eth/" + }, + { + "name": "twitter", + "url": "https://twitter.com/RenzoProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x2416092f143378750bb29b79eD961ab195CcEea5/logo.png b/blockchains/blast/assets/0x2416092f143378750bb29b79eD961ab195CcEea5/logo.png new file mode 100644 index 0000000000000..48e5c5ace795d Binary files /dev/null and b/blockchains/blast/assets/0x2416092f143378750bb29b79eD961ab195CcEea5/logo.png differ diff --git a/blockchains/blast/assets/0x34050224F9eA1859790b7CBBBe2264f1204771A6/info.json b/blockchains/blast/assets/0x34050224F9eA1859790b7CBBBe2264f1204771A6/info.json new file mode 100644 index 0000000000000..042567fdffa08 --- /dev/null +++ b/blockchains/blast/assets/0x34050224F9eA1859790b7CBBBe2264f1204771A6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Blast Inu", + "symbol": "BINU", + "type": "BLAST", + "description": "By leveraging the advanced features of the Blast L2 blockchain, Blast Inu ensures swift and efficient transactions without the burden of additional taxes.", + "decimals": 18, + "website": "https://blastinu.fun/", + "explorer": "https://blastscan.io/token/0x34050224f9ea1859790b7cbbbe2264f1204771a6", + "status": "active", + "id": "0x34050224F9eA1859790b7CBBBe2264f1204771A6", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BlastInuFun" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blast-inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x34050224F9eA1859790b7CBBBe2264f1204771A6/logo.png b/blockchains/blast/assets/0x34050224F9eA1859790b7CBBBe2264f1204771A6/logo.png new file mode 100644 index 0000000000000..0abd2b8e66bb1 Binary files /dev/null and b/blockchains/blast/assets/0x34050224F9eA1859790b7CBBBe2264f1204771A6/logo.png differ diff --git a/blockchains/blast/assets/0x42E12D42b3d6C4A74a88A61063856756Ea2DB357/info.json b/blockchains/blast/assets/0x42E12D42b3d6C4A74a88A61063856756Ea2DB357/info.json new file mode 100644 index 0000000000000..9c1a4effc94ae --- /dev/null +++ b/blockchains/blast/assets/0x42E12D42b3d6C4A74a88A61063856756Ea2DB357/info.json @@ -0,0 +1,21 @@ +{ + "name": "Orbit Protocol", + "symbol": "ORBIT", + "type": "BLAST", + "description": "Orbit is a decentralized liquidity protocol that facilitates the lending and borrowing of Blast assets. Orbit's innovation is to make use of Blast's native yield to provide a better lending / borrowing experience.", + "decimals": 18, + "website": "https://orbitlending.io/", + "explorer": "https://blastscan.io/token/0x42e12d42b3d6c4a74a88a61063856756ea2db357", + "status": "active", + "id": "0x42E12D42b3d6C4A74a88A61063856756Ea2DB357", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/orbitlending" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/orbit-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x42E12D42b3d6C4A74a88A61063856756Ea2DB357/logo.png b/blockchains/blast/assets/0x42E12D42b3d6C4A74a88A61063856756Ea2DB357/logo.png new file mode 100644 index 0000000000000..7c7d20311abdf Binary files /dev/null and b/blockchains/blast/assets/0x42E12D42b3d6C4A74a88A61063856756Ea2DB357/logo.png differ diff --git a/blockchains/blast/assets/0x4300000000000000000000000000000000000003/info.json b/blockchains/blast/assets/0x4300000000000000000000000000000000000003/info.json new file mode 100644 index 0000000000000..6bde7a64498d9 --- /dev/null +++ b/blockchains/blast/assets/0x4300000000000000000000000000000000000003/info.json @@ -0,0 +1,21 @@ +{ + "name": "USDB", + "symbol": "USDB", + "type": "BLAST", + "description": "Blast's native stablecoin.", + "decimals": 18, + "website": "https://blast.io/en", + "explorer": "https://blastscan.io/token/0x4300000000000000000000000000000000000003", + "status": "active", + "id": "0x4300000000000000000000000000000000000003", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/blast_l2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usdb/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x4300000000000000000000000000000000000003/logo.png b/blockchains/blast/assets/0x4300000000000000000000000000000000000003/logo.png new file mode 100644 index 0000000000000..cefea3ceb912e Binary files /dev/null and b/blockchains/blast/assets/0x4300000000000000000000000000000000000003/logo.png differ diff --git a/blockchains/blast/assets/0x4300000000000000000000000000000000000004/info.json b/blockchains/blast/assets/0x4300000000000000000000000000000000000004/info.json new file mode 100644 index 0000000000000..f3344ebedfb2c --- /dev/null +++ b/blockchains/blast/assets/0x4300000000000000000000000000000000000004/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped Ether", + "symbol": "WETH", + "type": "BLAST", + "decimals": 18, + "description": "wETH is wrapped ETH", + "website": "https://weth.io/", + "explorer": "https://blastscan.io/token/0x4300000000000000000000000000000000000004", + "status": "active", + "id": "0x4300000000000000000000000000000000000004", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/weth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x4300000000000000000000000000000000000004/logo.png b/blockchains/blast/assets/0x4300000000000000000000000000000000000004/logo.png new file mode 100644 index 0000000000000..f9328d9550a06 Binary files /dev/null and b/blockchains/blast/assets/0x4300000000000000000000000000000000000004/logo.png differ diff --git a/blockchains/blast/assets/0x47C337Bd5b9344a6F3D6f58C474D9D8cd419D8cA/info.json b/blockchains/blast/assets/0x47C337Bd5b9344a6F3D6f58C474D9D8cd419D8cA/info.json new file mode 100644 index 0000000000000..418be8441d759 --- /dev/null +++ b/blockchains/blast/assets/0x47C337Bd5b9344a6F3D6f58C474D9D8cd419D8cA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dackie", + "symbol": "DACKIE", + "type": "BLAST", + "description": "The Premier User-friendly Multi-chain DEX.", + "decimals": 18, + "website": "https://www.dackieswap.xyz/?chain=blast", + "explorer": "https://blastscan.io/token/0x47c337bd5b9344a6f3d6f58c474d9d8cd419d8ca", + "status": "active", + "id": "0x47C337Bd5b9344a6F3D6f58C474D9D8cd419D8cA", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DackieSwap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dackieswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x47C337Bd5b9344a6F3D6f58C474D9D8cd419D8cA/logo.png b/blockchains/blast/assets/0x47C337Bd5b9344a6F3D6f58C474D9D8cd419D8cA/logo.png new file mode 100644 index 0000000000000..e55f481dcbcf9 Binary files /dev/null and b/blockchains/blast/assets/0x47C337Bd5b9344a6F3D6f58C474D9D8cd419D8cA/logo.png differ diff --git a/blockchains/blast/assets/0x4fEE793d435c6D2c10C135983BB9d6D4fC7B9BBd/info.json b/blockchains/blast/assets/0x4fEE793d435c6D2c10C135983BB9d6D4fC7B9BBd/info.json new file mode 100644 index 0000000000000..2db53078351a4 --- /dev/null +++ b/blockchains/blast/assets/0x4fEE793d435c6D2c10C135983BB9d6D4fC7B9BBd/info.json @@ -0,0 +1,21 @@ +{ + "name": "USD+", + "website": "https://lido.fi/", + "description": "USD+ is a yield-generating stablecoin yielding 8-12% pa, via daily rebase. It is fully backed by a portfolio of liquid, yield generating, low risk DeFi assets .", + "explorer": "https://blastscan.io/token/0x4fee793d435c6d2c10c135983bb9d6d4fc7b9bbd", + "type": "BLAST", + "symbol": "USD+", + "decimals": 18, + "status": "active", + "id": "0x4fEE793d435c6D2c10C135983BB9d6D4fC7B9BBd", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/overnight_fi" + }, + { + "name": "telegram", + "url": "https://t.me/overnight_fi" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x4fEE793d435c6D2c10C135983BB9d6D4fC7B9BBd/logo.png b/blockchains/blast/assets/0x4fEE793d435c6D2c10C135983BB9d6D4fC7B9BBd/logo.png new file mode 100644 index 0000000000000..ba8cca27a175c Binary files /dev/null and b/blockchains/blast/assets/0x4fEE793d435c6D2c10C135983BB9d6D4fC7B9BBd/logo.png differ diff --git a/blockchains/blast/assets/0x5ffd9EbD27f2fcAB044c0f0a26A45Cb62fa29c06/info.json b/blockchains/blast/assets/0x5ffd9EbD27f2fcAB044c0f0a26A45Cb62fa29c06/info.json new file mode 100644 index 0000000000000..2ef3467bb43a5 --- /dev/null +++ b/blockchains/blast/assets/0x5ffd9EbD27f2fcAB044c0f0a26A45Cb62fa29c06/info.json @@ -0,0 +1,21 @@ +{ + "name": "PacMoon", + "symbol": "PAC", + "type": "BLAST", + "description": "The community coin of Blast.", + "decimals": 18, + "website": "https://pacmoon.io/", + "explorer": "https://blastscan.io/token/0x5ffd9ebd27f2fcab044c0f0a26a45cb62fa29c06", + "status": "active", + "id": "0x5ffd9EbD27f2fcAB044c0f0a26A45Cb62fa29c06", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/pacmoon_" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pacmoon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x5ffd9EbD27f2fcAB044c0f0a26A45Cb62fa29c06/logo.png b/blockchains/blast/assets/0x5ffd9EbD27f2fcAB044c0f0a26A45Cb62fa29c06/logo.png new file mode 100644 index 0000000000000..85d6d3777206f Binary files /dev/null and b/blockchains/blast/assets/0x5ffd9EbD27f2fcAB044c0f0a26A45Cb62fa29c06/logo.png differ diff --git a/blockchains/blast/assets/0x68449870EEa84453044Bd430822827E21Fd8F101/info.json b/blockchains/blast/assets/0x68449870EEa84453044Bd430822827E21Fd8F101/info.json new file mode 100644 index 0000000000000..f06c2c28a34ae --- /dev/null +++ b/blockchains/blast/assets/0x68449870EEa84453044Bd430822827E21Fd8F101/info.json @@ -0,0 +1,17 @@ +{ + "name": "ZAIBOT.io", + "website": "https://www.zaibot.io/", + "description": "Zaibot is not just a tool, it's a community-driven platform that keeps you engaged, informed, and ahead in the fast-paced world of cryptocurrency.", + "explorer": "https://blastscan.io/token/0x68449870eea84453044bd430822827e21fd8f101", + "type": "BLAST", + "symbol": "ZAI", + "decimals": 18, + "status": "active", + "id": "0x68449870EEa84453044Bd430822827E21Fd8F101", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zaibot/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x68449870EEa84453044Bd430822827E21Fd8F101/logo.png b/blockchains/blast/assets/0x68449870EEa84453044Bd430822827E21Fd8F101/logo.png new file mode 100644 index 0000000000000..3da092034986e Binary files /dev/null and b/blockchains/blast/assets/0x68449870EEa84453044Bd430822827E21Fd8F101/logo.png differ diff --git a/blockchains/blast/assets/0x7217124C626f0b7077bE91dF939195C9a8184ecC/info.json b/blockchains/blast/assets/0x7217124C626f0b7077bE91dF939195C9a8184ecC/info.json new file mode 100644 index 0000000000000..c48c267e5880e --- /dev/null +++ b/blockchains/blast/assets/0x7217124C626f0b7077bE91dF939195C9a8184ecC/info.json @@ -0,0 +1,21 @@ +{ + "name": "Finger Blast", + "symbol": "FINGER", + "type": "BLAST", + "description": "Bring back the art of fingering. 0 utility just memes.", + "decimals": 18, + "website": "https://www.fingerblast.xyz/", + "explorer": "https://blastscan.io/token/0x7217124c626f0b7077be91df939195c9a8184ecc", + "status": "active", + "id": "0x7217124C626f0b7077bE91dF939195C9a8184ecC", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/fingerblastx" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/finger-blast/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x7217124C626f0b7077bE91dF939195C9a8184ecC/logo.png b/blockchains/blast/assets/0x7217124C626f0b7077bE91dF939195C9a8184ecC/logo.png new file mode 100644 index 0000000000000..ff291f497259e Binary files /dev/null and b/blockchains/blast/assets/0x7217124C626f0b7077bE91dF939195C9a8184ecC/logo.png differ diff --git a/blockchains/blast/assets/0x764933fbAd8f5D04Ccd088602096655c2ED9879F/info.json b/blockchains/blast/assets/0x764933fbAd8f5D04Ccd088602096655c2ED9879F/info.json new file mode 100644 index 0000000000000..476479b66a11d --- /dev/null +++ b/blockchains/blast/assets/0x764933fbAd8f5D04Ccd088602096655c2ED9879F/info.json @@ -0,0 +1,21 @@ +{ + "name": "Any Inu", + "symbol": "AI", + "type": "BLAST", + "description": "$AI is a omnichain dog coin powered by Axelar's Interchain Token Service.", + "decimals": 18, + "website": "https://www.anyinu.xyz/", + "explorer": "https://blastscan.io/token/0x764933fbad8f5d04ccd088602096655c2ed9879f", + "status": "active", + "id": "0x764933fbAd8f5D04Ccd088602096655c2ED9879F", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/AnyInuCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/any-inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x764933fbAd8f5D04Ccd088602096655c2ED9879F/logo.png b/blockchains/blast/assets/0x764933fbAd8f5D04Ccd088602096655c2ED9879F/logo.png new file mode 100644 index 0000000000000..fd362b759ef54 Binary files /dev/null and b/blockchains/blast/assets/0x764933fbAd8f5D04Ccd088602096655c2ED9879F/logo.png differ diff --git a/blockchains/blast/assets/0x76DA31D7C9CbEAE102aff34D3398bC450c8374c1/info.json b/blockchains/blast/assets/0x76DA31D7C9CbEAE102aff34D3398bC450c8374c1/info.json new file mode 100644 index 0000000000000..1ca96b60fb099 --- /dev/null +++ b/blockchains/blast/assets/0x76DA31D7C9CbEAE102aff34D3398bC450c8374c1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Magic Internet Money", + "symbol": "MIM", + "type": "BLAST", + "description": "abracadabra.money is a lending protocol that allows users to borrow a USD-pegged Stablecoin (MIM) using interest-bearing tokens as collateral.", + "decimals": 18, + "website": "https://abracadabra.money/", + "explorer": "https://blastscan.io/token/0x76da31d7c9cbeae102aff34d3398bc450c8374c1", + "status": "active", + "id": "0x76DA31D7C9CbEAE102aff34D3398bC450c8374c1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MIM_Spell" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/magic-internet-money/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x76DA31D7C9CbEAE102aff34D3398bC450c8374c1/logo.png b/blockchains/blast/assets/0x76DA31D7C9CbEAE102aff34D3398bC450c8374c1/logo.png new file mode 100644 index 0000000000000..98896b174b783 Binary files /dev/null and b/blockchains/blast/assets/0x76DA31D7C9CbEAE102aff34D3398bC450c8374c1/logo.png differ diff --git a/blockchains/blast/assets/0x818a92bc81Aad0053d72ba753fb5Bc3d0C5C0923/info.json b/blockchains/blast/assets/0x818a92bc81Aad0053d72ba753fb5Bc3d0C5C0923/info.json new file mode 100644 index 0000000000000..6540c8ff1ac0e --- /dev/null +++ b/blockchains/blast/assets/0x818a92bc81Aad0053d72ba753fb5Bc3d0C5C0923/info.json @@ -0,0 +1,21 @@ +{ + "name": "Juice Finance", + "website": "https://www.juice.finance/", + "description": "Juice Finance, is a leading disruptive Cross-Margin DeFi protocol built on the Blast L2. At its core, Juice innovates with cross-margin lending features, integrating seamlessly with Blast’s unique rebasing tokens and ecosystem ethos.", + "explorer": "https://blastscan.io/token/0x818a92bc81aad0053d72ba753fb5bc3d0c5c0923", + "type": "BLAST", + "symbol": "JUICE", + "decimals": 18, + "status": "active", + "id": "0x818a92bc81Aad0053d72ba753fb5Bc3d0C5C0923", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/juice_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/juice-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x818a92bc81Aad0053d72ba753fb5Bc3d0C5C0923/logo.png b/blockchains/blast/assets/0x818a92bc81Aad0053d72ba753fb5Bc3d0C5C0923/logo.png new file mode 100644 index 0000000000000..bfc10fb1a3be1 Binary files /dev/null and b/blockchains/blast/assets/0x818a92bc81Aad0053d72ba753fb5Bc3d0C5C0923/logo.png differ diff --git a/blockchains/blast/assets/0x87E154E86Fb691AB8A27116e93Ed8d54e2b8C18C/info.json b/blockchains/blast/assets/0x87E154E86Fb691AB8A27116e93Ed8d54e2b8C18C/info.json new file mode 100644 index 0000000000000..44daab4591b29 --- /dev/null +++ b/blockchains/blast/assets/0x87E154E86Fb691AB8A27116e93Ed8d54e2b8C18C/info.json @@ -0,0 +1,17 @@ +{ + "name": "Titan Trading", + "website": "https://titantrading.io/", + "description": "Titan Trading Platform is a pioneer all-inclusive and high-performance trading platform power by cutting-edge AI technology on Blast with user-friendly interface, using the top-tier investment trading algorithm.", + "explorer": "https://blastscan.io/token/0x87e154e86fb691ab8a27116e93ed8d54e2b8c18c", + "type": "BLAST", + "symbol": "TES", + "decimals": 18, + "status": "active", + "id": "0x87E154E86Fb691AB8A27116e93Ed8d54e2b8C18C", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/titan-trading-platform/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x87E154E86Fb691AB8A27116e93Ed8d54e2b8C18C/logo.png b/blockchains/blast/assets/0x87E154E86Fb691AB8A27116e93Ed8d54e2b8C18C/logo.png new file mode 100644 index 0000000000000..1e9bc0861b8ab Binary files /dev/null and b/blockchains/blast/assets/0x87E154E86Fb691AB8A27116e93Ed8d54e2b8C18C/logo.png differ diff --git a/blockchains/blast/assets/0x9bD75c164dAf830733AC2EA71A0258f95aac7C57/info.json b/blockchains/blast/assets/0x9bD75c164dAf830733AC2EA71A0258f95aac7C57/info.json new file mode 100644 index 0000000000000..f87b9197fd365 --- /dev/null +++ b/blockchains/blast/assets/0x9bD75c164dAf830733AC2EA71A0258f95aac7C57/info.json @@ -0,0 +1,21 @@ +{ + "name": "BlastCat", + "symbol": "BCat", + "type": "BLAST", + "description": "The BlastCat project aims to introduce individuals to the Blast ecosystem through its fun and friendly mascot, BlastCat!", + "decimals": 18, + "website": "https://blastcat.xyz/", + "explorer": "https://blastscan.io/token/0x9bd75c164daf830733ac2ea71a0258f95aac7c57", + "status": "active", + "id": "0x9bD75c164dAf830733AC2EA71A0258f95aac7C57", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BlastCatcat/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blastcat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x9bD75c164dAf830733AC2EA71A0258f95aac7C57/logo.png b/blockchains/blast/assets/0x9bD75c164dAf830733AC2EA71A0258f95aac7C57/logo.png new file mode 100644 index 0000000000000..8076d82c2d6f8 Binary files /dev/null and b/blockchains/blast/assets/0x9bD75c164dAf830733AC2EA71A0258f95aac7C57/logo.png differ diff --git a/blockchains/blast/assets/0x9e20461bc2c4c980f62f1B279D71734207a6A356/info.json b/blockchains/blast/assets/0x9e20461bc2c4c980f62f1B279D71734207a6A356/info.json new file mode 100644 index 0000000000000..b7c6b4f9d59ba --- /dev/null +++ b/blockchains/blast/assets/0x9e20461bc2c4c980f62f1B279D71734207a6A356/info.json @@ -0,0 +1,21 @@ +{ + "name": "OmniCat", + "website": "https://omnicat.xyz/", + "description": "OmniCat is the first omnichain memecoin. Powered by LayerZero, $OMNI is currently live and tradeable on 7 different ecosystems including Ethereum, Arbitrum and Solana.", + "explorer": "https://blastscan.io/token/0x9e20461bc2c4c980f62f1b279d71734207a6a356", + "type": "BLAST", + "symbol": "OMNI", + "decimals": 18, + "status": "active", + "id": "0x9e20461bc2c4c980f62f1B279D71734207a6A356", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/OmniCatCoin" + }, + { + "name": "telegram", + "url": "https://t.me/OmniCatTg" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0x9e20461bc2c4c980f62f1B279D71734207a6A356/logo.png b/blockchains/blast/assets/0x9e20461bc2c4c980f62f1B279D71734207a6A356/logo.png new file mode 100644 index 0000000000000..07b48f706c374 Binary files /dev/null and b/blockchains/blast/assets/0x9e20461bc2c4c980f62f1B279D71734207a6A356/logo.png differ diff --git a/blockchains/blast/assets/0xB582Dc28968c725D2868130752aFa0c13EbF9b1a/info.json b/blockchains/blast/assets/0xB582Dc28968c725D2868130752aFa0c13EbF9b1a/info.json new file mode 100644 index 0000000000000..b6ccae0514dd3 --- /dev/null +++ b/blockchains/blast/assets/0xB582Dc28968c725D2868130752aFa0c13EbF9b1a/info.json @@ -0,0 +1,21 @@ +{ + "name": "Blast Pepe", + "symbol": "BEPE", + "type": "BLAST", + "description": "First memecoin on Blast. Stealth launched. LP vanished. Community-driven meme here to redefine shitcoins.", + "decimals": 18, + "website": "https://bepe.lol/", + "explorer": "https://blastscan.io/token/0xB582Dc28968c725D2868130752aFa0c13EbF9b1a", + "status": "active", + "id": "0xB582Dc28968c725D2868130752aFa0c13EbF9b1a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bepeblast" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/blast-pepe/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0xB582Dc28968c725D2868130752aFa0c13EbF9b1a/logo.png b/blockchains/blast/assets/0xB582Dc28968c725D2868130752aFa0c13EbF9b1a/logo.png new file mode 100644 index 0000000000000..4d7cfc667f68d Binary files /dev/null and b/blockchains/blast/assets/0xB582Dc28968c725D2868130752aFa0c13EbF9b1a/logo.png differ diff --git a/blockchains/blast/assets/0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692/info.json b/blockchains/blast/assets/0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692/info.json new file mode 100644 index 0000000000000..e784d0aab57ae --- /dev/null +++ b/blockchains/blast/assets/0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692/info.json @@ -0,0 +1,29 @@ +{ + "name": "Wrapped Bitcoin", + "website": "https://wbtc.network", + "description": "Wrapped Bitcoin (WBTC) is the first ERC20 token backed 1:1 with Bitcoin.", + "explorer": "https://blastscan.io/token/0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692", + "type": "BLAST", + "symbol": "WBTC", + "decimals": 8, + "status": "active", + "id": "0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692", + "tags": [ + "defi", + "wrapped" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://wbtc.network/assets/wrapped-tokens-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692/logo.png b/blockchains/blast/assets/0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692/logo.png new file mode 100644 index 0000000000000..702d64a2e040a Binary files /dev/null and b/blockchains/blast/assets/0xF7bc58b8D8f97ADC129cfC4c9f45Ce3C0E1D2692/logo.png differ diff --git a/blockchains/blast/assets/0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F/info.json b/blockchains/blast/assets/0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F/info.json new file mode 100644 index 0000000000000..4eaa35b4cd01b --- /dev/null +++ b/blockchains/blast/assets/0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bag", + "symbol": "BAG", + "type": "BLAST", + "description": "BAG: The metaverse coin of the people. Aligning builders and hosts to become the #1 Metaverse community in the world.", + "decimals": 18, + "website": "https://bagcoin.org/", + "explorer": "https://blastscan.io/token/0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F", + "status": "active", + "id": "0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bagcoinorg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bag-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F/logo.png b/blockchains/blast/assets/0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F/logo.png new file mode 100644 index 0000000000000..eb2ba94ae2b0e Binary files /dev/null and b/blockchains/blast/assets/0xb9dfCd4CF589bB8090569cb52FaC1b88Dbe4981F/logo.png differ diff --git a/blockchains/blast/assets/0xd582879453337BD149Ae53EC2092B0af5281d1D7/info.json b/blockchains/blast/assets/0xd582879453337BD149Ae53EC2092B0af5281d1D7/info.json new file mode 100644 index 0000000000000..eba3bd074c02e --- /dev/null +++ b/blockchains/blast/assets/0xd582879453337BD149Ae53EC2092B0af5281d1D7/info.json @@ -0,0 +1,21 @@ +{ + "name": "GLORY", + "symbol": "GLORY", + "type": "BLAST", + "description": "SEKAI GLORY is an anime trading card game on mobile - built on Blast.", + "decimals": 18, + "website": "https://www.sekaiglory.com/", + "explorer": "https://blastscan.io/token/0xd582879453337BD149Ae53EC2092B0af5281d1D7", + "status": "active", + "id": "0xd582879453337BD149Ae53EC2092B0af5281d1D7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SekaiGlory" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sekai-glory/" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/assets/0xd582879453337BD149Ae53EC2092B0af5281d1D7/logo.png b/blockchains/blast/assets/0xd582879453337BD149Ae53EC2092B0af5281d1D7/logo.png new file mode 100644 index 0000000000000..e421ee61dbf29 Binary files /dev/null and b/blockchains/blast/assets/0xd582879453337BD149Ae53EC2092B0af5281d1D7/logo.png differ diff --git a/blockchains/blast/info/info.json b/blockchains/blast/info/info.json new file mode 100644 index 0000000000000..94943b8541b82 --- /dev/null +++ b/blockchains/blast/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Blast", + "website": "https://blast.io/en", + "description": "Blast is the only Ethereum L2 with native yield for ETH and stablecoins.", + "explorer": "https://blastscan.io", + "symbol": "ETH", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Blast_L2" + }, + { + "name": "discord", + "url": "https://discord.com/invite/blast-l2" + } + ] +} \ No newline at end of file diff --git a/blockchains/blast/info/logo.png b/blockchains/blast/info/logo.png new file mode 100644 index 0000000000000..d4fa4aaaccacb Binary files /dev/null and b/blockchains/blast/info/logo.png differ diff --git a/blockchains/bouncebit/assets/0x22aAC17E571D6651880d057e310703fF4C7c3483/info.json b/blockchains/bouncebit/assets/0x22aAC17E571D6651880d057e310703fF4C7c3483/info.json new file mode 100644 index 0000000000000..adec0a8e5ffcf --- /dev/null +++ b/blockchains/bouncebit/assets/0x22aAC17E571D6651880d057e310703fF4C7c3483/info.json @@ -0,0 +1,17 @@ +{ + "name": "stBB", + "website": "https://bouncebit.io/", + "description": "BounceBit pioneers CeDeFi infrastructure, offering institutional-grade yield products, restaking use cases, and CeDeFi as a service, making high-yield opportunities accessible.", + "explorer": "https://bbscan.io/token/0x22aAC17E571D6651880d057e310703fF4C7c3483", + "symbol": "stBB", + "type": "BOUNCEBIT", + "decimals": 18, + "status": "active", + "id": "0x22aAC17E571D6651880d057e310703fF4C7c3483", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bouncebit/" + } + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/assets/0x22aAC17E571D6651880d057e310703fF4C7c3483/logo.png b/blockchains/bouncebit/assets/0x22aAC17E571D6651880d057e310703fF4C7c3483/logo.png new file mode 100644 index 0000000000000..9fcd0e258ee6c Binary files /dev/null and b/blockchains/bouncebit/assets/0x22aAC17E571D6651880d057e310703fF4C7c3483/logo.png differ diff --git a/blockchains/bouncebit/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json b/blockchains/bouncebit/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json new file mode 100644 index 0000000000000..db0d4bc5ce8bb --- /dev/null +++ b/blockchains/bouncebit/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json @@ -0,0 +1,38 @@ +{ + "name": "MUBI", + "symbol": "MUBI", + "type": "BOUNCEBIT", + "decimals": 18, + "website": "https://multibit.exchange/", + "description": "MultiBit is the first-ever dual-sided bridge designed for easy cross-network transfers between BRC20 and ERC20 tokens.", + "explorer": "https://bbscan.io/token/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93", + "status": "active", + "id": "0x38e382F74dfb84608F3C1F10187f6bEf5951DE93", + "links": [ + { + "name": "github", + "url": "https://github.com/multibit-repo" + }, + { + + "name": "twitter", + "url": "https://twitter.com/Multibit_Bridge" + }, + { + "name": "telegram", + "url": "https://t.me/multibitprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multibit/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/multibit" + } + ], + "tags": [ + "wrapped", + "defi" + ] +} diff --git a/blockchains/bouncebit/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/logo.png b/blockchains/bouncebit/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/logo.png new file mode 100644 index 0000000000000..9fa7dad0ee02f Binary files /dev/null and b/blockchains/bouncebit/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/logo.png differ diff --git a/blockchains/bouncebit/assets/0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222/info.json b/blockchains/bouncebit/assets/0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222/info.json new file mode 100644 index 0000000000000..bd415a5f1357c --- /dev/null +++ b/blockchains/bouncebit/assets/0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222/info.json @@ -0,0 +1,17 @@ +{ + "name": "BounceBit USD", + "website": "https://docs.bouncebit.io/token/bouncebit-tokenomics/stablecoins-on-bouncebit-bbusd", + "description": "Stablecoins from various EVM-compatible Chains can be bridged into the BounceBit ecosystem. Most notably, FDUSD on Binance Smart Chain (BEP20) and USDT on Ethereum are supported. BounceBit aims to support all sound stablecoins.", + "explorer": "https://bbscan.io/token/0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222", + "symbol": "BBUSD", + "type": "BOUNCEBIT", + "decimals": 18, + "status": "active", + "id": "0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bouncebit-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/assets/0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222/logo.png b/blockchains/bouncebit/assets/0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222/logo.png new file mode 100644 index 0000000000000..4cd00c51558c5 Binary files /dev/null and b/blockchains/bouncebit/assets/0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222/logo.png differ diff --git a/blockchains/bouncebit/assets/0x7F150c293c97172C75983BD8ac084c187107eA19/info.json b/blockchains/bouncebit/assets/0x7F150c293c97172C75983BD8ac084c187107eA19/info.json new file mode 100644 index 0000000000000..49cb2ac28b5b5 --- /dev/null +++ b/blockchains/bouncebit/assets/0x7F150c293c97172C75983BD8ac084c187107eA19/info.json @@ -0,0 +1,17 @@ +{ + "name": "stBBTC", + "website": "https://bitcoin.org/en/", + "description": "Bitcoin is a decentralized cryptocurrency originally described in a 2008 whitepaper by a person, or group of people, using the alias Satoshi Nakamoto. It was launched soon after, in January 2009.", + "explorer": "https://bbscan.io/token/0x7F150c293c97172C75983BD8ac084c187107eA19", + "symbol": "stBBTC", + "type": "BOUNCEBIT", + "decimals": 18, + "status": "active", + "id": "0x7F150c293c97172C75983BD8ac084c187107eA19", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/assets/0x7F150c293c97172C75983BD8ac084c187107eA19/logo.png b/blockchains/bouncebit/assets/0x7F150c293c97172C75983BD8ac084c187107eA19/logo.png new file mode 100644 index 0000000000000..3d8d9d4648f4a Binary files /dev/null and b/blockchains/bouncebit/assets/0x7F150c293c97172C75983BD8ac084c187107eA19/logo.png differ diff --git a/blockchains/bouncebit/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json b/blockchains/bouncebit/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json new file mode 100644 index 0000000000000..21c42f648015d --- /dev/null +++ b/blockchains/bouncebit/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bounce Token", + "website": "https://bounce.finance/", + "description": "Bounce is a decentralized auction platform, incorporating liquidity mining, decentralized governance and staking mechanisms. The first principle of Bounce is scarcity of resources, which creates a competitive swap environment.", + "explorer": "https://bbscan.io/token/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096", + "type": "BOUNCEBIT", + "symbol": "ACTION", + "decimals": 18, + "status": "active", + "id": "0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096", + "links": [ + { + "name": "telegram", + "url": "https://t.me/bounce_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bounce-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png b/blockchains/bouncebit/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png new file mode 100644 index 0000000000000..ce839ee8efbf6 Binary files /dev/null and b/blockchains/bouncebit/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png differ diff --git a/blockchains/bouncebit/assets/0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863/info.json b/blockchains/bouncebit/assets/0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863/info.json new file mode 100644 index 0000000000000..6abb60117e169 --- /dev/null +++ b/blockchains/bouncebit/assets/0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped BounceBit", + "website": "https://bouncebit.io/", + "description": "BounceBit pioneers CeDeFi infrastructure, offering institutional-grade yield products, restaking use cases, and CeDeFi as a service, making high-yield opportunities accessible.", + "explorer": "https://bbscan.io/token/0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863", + "type": "BOUNCEBIT", + "symbol": "WBB", + "decimals": 18, + "status": "active", + "id": "0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863", + "links": [ + { + "name": "telegram", + "url": "https://t.me/bouncebit_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bouncebit/" + } + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/assets/0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863/logo.png b/blockchains/bouncebit/assets/0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863/logo.png new file mode 100644 index 0000000000000..2f7732aaa6f73 Binary files /dev/null and b/blockchains/bouncebit/assets/0xF4c20e5004C6FDCDdA920bDD491ba8C98a9c5863/logo.png differ diff --git a/blockchains/bouncebit/assets/0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC/info.json b/blockchains/bouncebit/assets/0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC/info.json new file mode 100644 index 0000000000000..6a4bc5cb56c0f --- /dev/null +++ b/blockchains/bouncebit/assets/0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC/info.json @@ -0,0 +1,17 @@ +{ + "name": "BBTC", + "website": "https://bitcoin.org/en/", + "description": "Bitcoin is a decentralized cryptocurrency originally described in a 2008 whitepaper by a person, or group of people, using the alias Satoshi Nakamoto. It was launched soon after, in January 2009.", + "explorer": "https://bbscan.io/token/0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC", + "symbol": "stBBTC", + "type": "BOUNCEBIT", + "decimals": 18, + "status": "active", + "id": "0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/assets/0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC/logo.png b/blockchains/bouncebit/assets/0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC/logo.png new file mode 100644 index 0000000000000..b9884ba919aee Binary files /dev/null and b/blockchains/bouncebit/assets/0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC/logo.png differ diff --git a/blockchains/bouncebit/info/info.json b/blockchains/bouncebit/info/info.json new file mode 100644 index 0000000000000..9e2ff6ad2db4a --- /dev/null +++ b/blockchains/bouncebit/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "BounceBit", + "website": "https://bouncebit.io/", + "description": "BounceBit is building a BTC restaking infrastructure that provides a foundational layer for different restaking products, secured by the regulated custody of Mainnet Digital and Ceffu.", + "explorer": "https://blastscan.io", + "symbol": "BB", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bounce_bit" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bouncebit" + } + ] +} \ No newline at end of file diff --git a/blockchains/bouncebit/info/logo.png b/blockchains/bouncebit/info/logo.png new file mode 100644 index 0000000000000..72bb72a02bab2 Binary files /dev/null and b/blockchains/bouncebit/info/logo.png differ diff --git a/blockchains/btcdiamond/info/info.json b/blockchains/btcdiamond/info/info.json new file mode 100644 index 0000000000000..d3dfcede98e84 --- /dev/null +++ b/blockchains/btcdiamond/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Bitcoin Diamond", + "website": "https://www.bitcoindiamond.org", + "description": "Bitcoin Diamond (BCD) is a hard fork of Bitcoin.", + "explorer": "http://explorer.btcd.io/#/", + "symbol": "BCD", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoin-diamond/" + }, + { + "name": "twitter", + "url": "https://twitter.com/horizenglobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/btcdiamond/info/logo.png b/blockchains/btcdiamond/info/logo.png new file mode 100644 index 0000000000000..b1ab6e0cb7d05 Binary files /dev/null and b/blockchains/btcdiamond/info/logo.png differ diff --git a/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/info.json b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/info.json new file mode 100644 index 0000000000000..c3fd044cb517e --- /dev/null +++ b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/info.json @@ -0,0 +1,21 @@ +{ + "name": "Snek", + "website": "https://www.snek.com", + "description": "Our vision is to create a sustainable and inclusive token on the Cardano blockchain, providing a fun and rewarding experience to our community.", + "explorer": "https://cexplorer.io/asset/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk", + "type": "CARDANO", + "symbol": "SNEK", + "decimals": 6, + "status": "active", + "id": "asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snek/" + }, + { + "name": "twitter", + "url": "https://twitter.com/snekcoinada" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/logo.png b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/logo.png new file mode 100644 index 0000000000000..229cbdc6e1e01 Binary files /dev/null and b/blockchains/cardano/assets/asset108xu02ckwrfc8qs9d97mgyh4kn8gdu9w8f5sxk/logo.png differ diff --git a/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/info.json b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/info.json new file mode 100644 index 0000000000000..59b3e599e96ae --- /dev/null +++ b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/info.json @@ -0,0 +1,37 @@ +{ + "name": "USD Coin", + "website": "https://www.centre.io", + "description": "USDC provides a fully collateralized US dollar stablecoin, and is based on the open source asset-backed stablecoin framework developed by Centre.", + "explorer": "https://cexplorer.io/asset/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23", + "research": "https://research.binance.com/en/projects/usd-coin", + "type": "CARDANO", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/logo.png b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/logo.png new file mode 100644 index 0000000000000..1c05ab87710a2 Binary files /dev/null and b/blockchains/cardano/assets/asset1fc7e54kds62yggplh0vs65vcgrmn5n577per23/logo.png differ diff --git a/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/info.json b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/info.json new file mode 100644 index 0000000000000..6a1928384e7e2 --- /dev/null +++ b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tether USD", + "website": "https://tether.to", + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "explorer": "https://cexplorer.io/asset/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743", + "type": "CARDANO", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/logo.png b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/logo.png new file mode 100644 index 0000000000000..dab9b67b68b3c Binary files /dev/null and b/blockchains/cardano/assets/asset1l58ned7zvj57pxyp94kkqqyxvjelvtpcjjh743/logo.png differ diff --git a/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/info.json b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/info.json new file mode 100644 index 0000000000000..fe576de6b2592 --- /dev/null +++ b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/info.json @@ -0,0 +1,21 @@ +{ + "name": "ADA Shiba Inu", + "website": "https://ashib.io/", + "description": "ADA Shiba Inu is the 2.0 version of Shiba Inu built on Cardano", + "explorer": "https://cexplorer.io/asset/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8", + "type": "CARDANO", + "symbol": "ASHIB", + "decimals": 6, + "status": "active", + "id": "asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-inu/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Shibtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/logo.png b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/logo.png new file mode 100644 index 0000000000000..285c0d3cf767b Binary files /dev/null and b/blockchains/cardano/assets/asset1wrng86n9sz6t5d0lemvudur4ul6mgduv0gzuj8/logo.png differ diff --git a/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/info.json b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/info.json new file mode 100644 index 0000000000000..c793cd242a81b --- /dev/null +++ b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/info.json @@ -0,0 +1,21 @@ +{ + "name": "MELD", + "website": "https://meld.com/", + "description": "Deprecated version of the governance token of the MELD protocol.", + "explorer": "https://cexplorer.io/asset/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw", + "type": "CARDANO", + "symbol": "MELD", + "decimals": 6, + "status": "active", + "id": "asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meld/" + }, + { + "name": "twitter", + "url": "https://twitter.com/MELD_Defi" + } + ] +} \ No newline at end of file diff --git a/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/logo.png b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/logo.png new file mode 100644 index 0000000000000..68d2410a48bd5 Binary files /dev/null and b/blockchains/cardano/assets/asset1zvn33mj5kzgxtct7jr5qjyefu9ewk22xp0s0yw/logo.png differ diff --git a/blockchains/cardano/info/logo.png b/blockchains/cardano/info/logo.png index 1ab80529f702a..b463a55eb2e3a 100644 Binary files a/blockchains/cardano/info/logo.png and b/blockchains/cardano/info/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool194usk2h8vcq6yw89xs5asrvw22g08kcfy72xyfrnnkg6qrhtlfw/logo.png b/blockchains/cardano/validators/assets/pool194usk2h8vcq6yw89xs5asrvw22g08kcfy72xyfrnnkg6qrhtlfw/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool194usk2h8vcq6yw89xs5asrvw22g08kcfy72xyfrnnkg6qrhtlfw/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1du3r4a7xq60hg2x0wcz7lw5ya3qs74rk258c8kanp93rsqdqu45/logo.png b/blockchains/cardano/validators/assets/pool1du3r4a7xq60hg2x0wcz7lw5ya3qs74rk258c8kanp93rsqdqu45/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1du3r4a7xq60hg2x0wcz7lw5ya3qs74rk258c8kanp93rsqdqu45/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm/logo.png b/blockchains/cardano/validators/assets/pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1gaztx97t53k47fr7282d70tje8323vvzx8pshgts30t9krw62tm/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1ljywsch33t7gaf02aeeqkqpuku0ngpwl9fm04t7u5sl5xyunmgp/logo.png b/blockchains/cardano/validators/assets/pool1ljywsch33t7gaf02aeeqkqpuku0ngpwl9fm04t7u5sl5xyunmgp/logo.png new file mode 100644 index 0000000000000..cbc90da983488 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 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1yet04d4ykpp7me8uc2jx2glxrx88kt9uhmv6jeh7xkmtu5zucna/logo.png differ diff --git a/blockchains/cardano/validators/assets/pool1zz7x8ergn02chznayj9fjds2gk5q6prmpdr49faspd65kzqsrjs/logo.png b/blockchains/cardano/validators/assets/pool1zz7x8ergn02chznayj9fjds2gk5q6prmpdr49faspd65kzqsrjs/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/cardano/validators/assets/pool1zz7x8ergn02chznayj9fjds2gk5q6prmpdr49faspd65kzqsrjs/logo.png differ diff --git a/blockchains/cardano/validators/list.json b/blockchains/cardano/validators/list.json index 7f92dae3b093a..8eb7c31582888 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", @@ -70,5 +100,11 @@ "name": "BIRTH | Larissa.Health", "description": "Improving the world of midwifery with digital tech. Dedicated to reduce pregnancy-related mortality.", "website": "https://larissa.health" + }, + { + "id": "pool1du3r4a7xq60hg2x0wcz7lw5ya3qs74rk258c8kanp93rsqdqu45", + "name": "Allnodes.com ⚡️ 0% fee", + "description": "Reliable non-custodial Pool run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/ada/staking" } ] diff --git a/blockchains/celo/assets/0x17700282592D6917F6A73D0bF8AcCf4D578c131e/info.json b/blockchains/celo/assets/0x17700282592D6917F6A73D0bF8AcCf4D578c131e/info.json new file mode 100644 index 0000000000000..053ecffbf5713 --- /dev/null +++ b/blockchains/celo/assets/0x17700282592D6917F6A73D0bF8AcCf4D578c131e/info.json @@ -0,0 +1,25 @@ +{ + "name": "Moola Market", + "website": "https://www.moola.market/", + "description": "Moola is a non-custodial liquidity protocol built on the Celo blockchain that is democratizing access to yield and credit.", + "explorer": "https://explorer.celo.org/mainnet/address/0x17700282592D6917F6A73D0bF8AcCf4D578c131e", + "type": "CELO", + "symbol": "MOO", + "decimals": 18, + "status": "active", + "id": "0x17700282592D6917F6A73D0bF8AcCf4D578c131e", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moola-celo-usd/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Moola_Market" + }, + { + "name": "telegram", + "url": "https://t.me/moolamarket" + } + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x17700282592D6917F6A73D0bF8AcCf4D578c131e/logo.png b/blockchains/celo/assets/0x17700282592D6917F6A73D0bF8AcCf4D578c131e/logo.png new file mode 100644 index 0000000000000..9ce20af143093 Binary files /dev/null and b/blockchains/celo/assets/0x17700282592D6917F6A73D0bF8AcCf4D578c131e/logo.png differ diff --git a/blockchains/celo/assets/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9/info.json b/blockchains/celo/assets/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9/info.json new file mode 100644 index 0000000000000..790697d99cf51 --- /dev/null +++ b/blockchains/celo/assets/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9/info.json @@ -0,0 +1,25 @@ +{ + "name": "Plastiks", + "website": "https://celo.org/", + "description": "Plastiks is an NFT marketplace deployed that brings People, Organizations and Companies together to fight against plastic pollution.", + "explorer": "https://explorer.celo.org/mainnet/address/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9", + "type": "CELO", + "symbol": "PLASTIK", + "decimals": 9, + "status": "active", + "id": "0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/plastiks/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Plastiks_io" + }, + { + "name": "telegram", + "url": "https://t.me/plastiksio" + } + ] +} diff --git a/blockchains/celo/assets/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9/logo.png b/blockchains/celo/assets/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9/logo.png new file mode 100644 index 0000000000000..735c8954f581c Binary files /dev/null and b/blockchains/celo/assets/0x27cd006548dF7C8c8e9fdc4A67fa05C2E3CA5CF9/logo.png differ diff --git a/blockchains/celo/assets/0x471EcE3750Da237f93B8E339c536989b8978a438/info.json b/blockchains/celo/assets/0x471EcE3750Da237f93B8E339c536989b8978a438/info.json new file mode 100644 index 0000000000000..1bd78edb19d65 --- /dev/null +++ b/blockchains/celo/assets/0x471EcE3750Da237f93B8E339c536989b8978a438/info.json @@ -0,0 +1,21 @@ +{ + "name": "Celo", + "website": "https://celo.org/", + "description": "Celo is a carbon-negative, permissionless, blockchain with a rich ecosystem of global partners building innovative Web3 dapps to support a more inclusive financial system.", + "explorer": "https://explorer.celo.org/mainnet/address/0x471EcE3750Da237f93B8E339c536989b8978a438", + "type": "CELO", + "symbol": "CELO", + "decimals": 18, + "status": "abandoned", + "id": "0x471EcE3750Da237f93B8E339c536989b8978a438", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/celo/" + }, + { + "name": "github", + "url": "https://github.com/celo-org" + } + ] +} diff --git a/blockchains/celo/assets/0x471EcE3750Da237f93B8E339c536989b8978a438/logo.png b/blockchains/celo/assets/0x471EcE3750Da237f93B8E339c536989b8978a438/logo.png new file mode 100644 index 0000000000000..8d0a5572bb92c Binary files /dev/null and b/blockchains/celo/assets/0x471EcE3750Da237f93B8E339c536989b8978a438/logo.png differ diff --git a/blockchains/celo/assets/0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e/info.json b/blockchains/celo/assets/0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e/info.json new file mode 100644 index 0000000000000..0759ebf349b37 --- /dev/null +++ b/blockchains/celo/assets/0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://explorer.celo.org/mainnet/address/0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e", + "type": "CELO", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "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/celo/assets/0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e/logo.png b/blockchains/celo/assets/0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e/logo.png new file mode 100644 index 0000000000000..82d7b7a63deda Binary files /dev/null and b/blockchains/celo/assets/0x48065fbBE25f71C9282ddf5e1cD6D6A887483D5e/logo.png differ diff --git a/blockchains/celo/assets/0x6e512BFC33be36F2666754E996ff103AD1680Cc9/info.json b/blockchains/celo/assets/0x6e512BFC33be36F2666754E996ff103AD1680Cc9/info.json new file mode 100644 index 0000000000000..911d914650f7f --- /dev/null +++ b/blockchains/celo/assets/0x6e512BFC33be36F2666754E996ff103AD1680Cc9/info.json @@ -0,0 +1,25 @@ +{ + "name": "Allbridge", + "website": "https://allbridge.io/", + "description": "Allbridge is a simple, modern, and reliable way to transfer assets between different networks. It is a bridge between both EVM and non-EVM compatible blockchains, that aims to cover L2 solutions and NFT transfers in the future.", + "explorer": "https://explorer.celo.org/mainnet/address/0x6e512BFC33be36F2666754E996ff103AD1680Cc9", + "type": "CELO", + "symbol": "ABR", + "decimals": 18, + "status": "active", + "id": "0x6e512BFC33be36F2666754E996ff103AD1680Cc9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/allbridge/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Allbridge_io" + }, + { + "name": "telegram", + "url": "https://t.me/allbridge_official" + } + ] +} diff --git a/blockchains/celo/assets/0x6e512BFC33be36F2666754E996ff103AD1680Cc9/logo.png b/blockchains/celo/assets/0x6e512BFC33be36F2666754E996ff103AD1680Cc9/logo.png new file mode 100644 index 0000000000000..148f406ca5ce5 Binary files /dev/null and b/blockchains/celo/assets/0x6e512BFC33be36F2666754E996ff103AD1680Cc9/logo.png differ diff --git a/blockchains/celo/assets/0x7D00cd74FF385c955EA3d79e47BF06bD7386387D/info.json b/blockchains/celo/assets/0x7D00cd74FF385c955EA3d79e47BF06bD7386387D/info.json new file mode 100644 index 0000000000000..5d64cb8f3f760 --- /dev/null +++ b/blockchains/celo/assets/0x7D00cd74FF385c955EA3d79e47BF06bD7386387D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Moola Celo", + "website": "https://www.moola.market/", + "description": "Moola is a non-custodial liquidity protocol built on the Celo blockchain that is democratizing access to yield and credit.", + "explorer": "https://explorer.celo.org/mainnet/address/0x7D00cd74FF385c955EA3d79e47BF06bD7386387D", + "type": "CELO", + "symbol": "MCELO", + "decimals": 18, + "status": "active", + "id": "0x7D00cd74FF385c955EA3d79e47BF06bD7386387D", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moola-celo-usd/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Moola_Market" + }, + { + "name": "telegram", + "url": "https://t.me/moolamarket" + } + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0x7D00cd74FF385c955EA3d79e47BF06bD7386387D/logo.png b/blockchains/celo/assets/0x7D00cd74FF385c955EA3d79e47BF06bD7386387D/logo.png new file mode 100644 index 0000000000000..4fe7000a6d4e1 Binary files /dev/null and b/blockchains/celo/assets/0x7D00cd74FF385c955EA3d79e47BF06bD7386387D/logo.png differ diff --git a/blockchains/celo/assets/0x918146359264C492BD6934071c6Bd31C854EDBc3/info.json b/blockchains/celo/assets/0x918146359264C492BD6934071c6Bd31C854EDBc3/info.json new file mode 100644 index 0000000000000..76764a87646a5 --- /dev/null +++ b/blockchains/celo/assets/0x918146359264C492BD6934071c6Bd31C854EDBc3/info.json @@ -0,0 +1,25 @@ +{ + "name": "Moola Celo USD", + "website": "https://www.moola.market/", + "description": "Moola is a non-custodial liquidity protocol built on the Celo blockchain that is democratizing access to yield and credit.", + "explorer": "https://explorer.celo.org/mainnet/address/0x918146359264C492BD6934071c6Bd31C854EDBc3", + "type": "CELO", + "symbol": "MCUSD", + "decimals": 18, + "status": "active", + "id": "0x918146359264C492BD6934071c6Bd31C854EDBc3", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moola-celo-usd/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Moola_Market" + }, + { + "name": "telegram", + "url": "https://t.me/moolamarket" + } + ] +} diff --git a/blockchains/celo/assets/0x918146359264C492BD6934071c6Bd31C854EDBc3/logo.png b/blockchains/celo/assets/0x918146359264C492BD6934071c6Bd31C854EDBc3/logo.png new file mode 100644 index 0000000000000..9ce20af143093 Binary files /dev/null and b/blockchains/celo/assets/0x918146359264C492BD6934071c6Bd31C854EDBc3/logo.png differ diff --git a/blockchains/celo/assets/0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568/info.json b/blockchains/celo/assets/0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568/info.json new file mode 100644 index 0000000000000..613e8a7f6ceaf --- /dev/null +++ b/blockchains/celo/assets/0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568/info.json @@ -0,0 +1,25 @@ +{ + "name": "Moola Celo EUR", + "website": "https://www.moola.market/", + "description": "Moola is a non-custodial liquidity protocol built on the Celo blockchain that is democratizing access to yield and credit.", + "explorer": "https://explorer.celo.org/mainnet/address/0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568", + "type": "CELO", + "symbol": "MCEUR", + "decimals": 18, + "status": "active", + "id": "0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moola-celo-usd/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Moola_Market" + }, + { + "name": "telegram", + "url": "https://t.me/moolamarket" + } + ] +} diff --git a/blockchains/celo/assets/0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568/logo.png b/blockchains/celo/assets/0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568/logo.png new file mode 100644 index 0000000000000..9ce20af143093 Binary files /dev/null and b/blockchains/celo/assets/0xE273Ad7ee11dCfAA87383aD5977EE1504aC07568/logo.png differ diff --git a/blockchains/celo/assets/0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE/info.json b/blockchains/celo/assets/0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE/info.json new file mode 100644 index 0000000000000..569f9498ead12 --- /dev/null +++ b/blockchains/celo/assets/0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE/info.json @@ -0,0 +1,21 @@ +{ + "name": "ImmortalDAO Finance ", + "website": "https://migrate.immortalx.io/", + "description": "Immortal is a decentralized reserve currency protocol on Celo blockchain based on the IMMO token.", + "explorer": "https://explorer.celo.org/mainnet/address/0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE", + "type": "CELO", + "symbol": "IMMO", + "decimals": 9, + "status": "active", + "id": "0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/immortaldao-finance/" + }, + { + "name": "twitter", + "url": "https://twitter.com/immortalx_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE/logo.png b/blockchains/celo/assets/0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE/logo.png new file mode 100644 index 0000000000000..1b1289ec48e35 Binary files /dev/null and b/blockchains/celo/assets/0xE685d21b7B0FC7A248a6A8E03b8Db22d013Aa2eE/logo.png differ diff --git a/blockchains/celo/assets/0xcebA9300f2b948710d2653dD7B07f33A8B32118C/info.json b/blockchains/celo/assets/0xcebA9300f2b948710d2653dD7B07f33A8B32118C/info.json new file mode 100644 index 0000000000000..5d69d87921f5e --- /dev/null +++ b/blockchains/celo/assets/0xcebA9300f2b948710d2653dD7B07f33A8B32118C/info.json @@ -0,0 +1,36 @@ +{ + "name": "USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://explorer.celo.org/mainnet/address/0xcebA9300f2b948710d2653dD7B07f33A8B32118C", + "type": "CELO", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0xcebA9300f2b948710d2653dD7B07f33A8B32118C", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/celo/assets/0xcebA9300f2b948710d2653dD7B07f33A8B32118C/logo.png b/blockchains/celo/assets/0xcebA9300f2b948710d2653dD7B07f33A8B32118C/logo.png new file mode 100644 index 0000000000000..eafbaac194aa7 Binary files /dev/null and b/blockchains/celo/assets/0xcebA9300f2b948710d2653dD7B07f33A8B32118C/logo.png differ diff --git a/blockchains/celo/info/info.json b/blockchains/celo/info/info.json index 4318f70c7dc40..8ba9e1f9a072e 100644 --- a/blockchains/celo/info/info.json +++ b/blockchains/celo/info/info.json @@ -9,6 +9,9 @@ "rpc_url": "https://forno.celo.org", "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "github", diff --git a/blockchains/celo/info/logo.png b/blockchains/celo/info/logo.png index 078b712447c61..a2f6999cd173b 100644 Binary files a/blockchains/celo/info/logo.png and b/blockchains/celo/info/logo.png differ diff --git a/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/info.json b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/info.json new file mode 100644 index 0000000000000..053cc055028c0 --- /dev/null +++ b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/info.json @@ -0,0 +1,30 @@ +{ + "name": "Ethereum", + "symbol": "ETH", + "type": "CONFLUX", + "decimals": 18, + "description": "Ethereum is a global, open-source platform for decentralized applications. Eth is fueling transactions on the Chain.", + "website": "https://ethereum.org/", + "explorer": "https://evm.confluxscan.net/address/0xa47f43de2f9623acb395ca4905746496d2014d57", + "research": "https://research.binance.com/en/projects/ethereum", + "status": "active", + "id": "0xa47f43DE2f9623aCb395CA4905746496D2014d57", + "links": [ + { + "name": "github", + "url": "https://github.com/ethereum/ethereum-org-website" + }, + { + "name": "twitter", + "url": "https://twitter.com/ethdotorg" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g" + }, + { + "name": "discord", + "url": "https://discord.com/invite/CetY6Y4" + } + ] +} \ No newline at end of file diff --git a/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/logo.png b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/logo.png new file mode 100644 index 0000000000000..df4a0f3a19b3a Binary files /dev/null and b/blockchains/cfxevm/assets/0xa47f43DE2f9623aCb395CA4905746496D2014d57/logo.png differ diff --git a/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/info.json b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/info.json new file mode 100644 index 0000000000000..23bcb2c48fb5e --- /dev/null +++ b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "symbol": "USDT", + "type": "CONFLUX", + "decimals": 18, + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "website": "https://tether.to", + "explorer": "https://evm.confluxscan.net/address/0xfe97e85d13abd9c1c33384e796f10b73905637ce", + "status": "active", + "id": "0xfe97E85d13ABD9c1c33384E796F10B73905637cE", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/logo.png b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/logo.png new file mode 100644 index 0000000000000..4a53c2480431f Binary files /dev/null and b/blockchains/cfxevm/assets/0xfe97E85d13ABD9c1c33384E796F10B73905637cE/logo.png differ diff --git a/blockchains/cfxevm/info/info.json b/blockchains/cfxevm/info/info.json new file mode 100644 index 0000000000000..7c3e510e3582c --- /dev/null +++ b/blockchains/cfxevm/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Conflux eSpace", + "website": "https://confluxnetwork.org", + "description": "Conflux enables creators, communities, and markets to connect across borders and protocols", + "explorer": "https://evm.confluxscan.net", + "symbol": "CFX", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/conflux-chain" + }, + { + "name": "twitter", + "url": "https://twitter.com/Conflux_Network" + } + ] +} \ No newline at end of file diff --git a/blockchains/cfxevm/info/logo.png b/blockchains/cfxevm/info/logo.png new file mode 100644 index 0000000000000..c8907ec9be623 Binary files /dev/null and b/blockchains/cfxevm/info/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcpt5ph/logo.png b/blockchains/comdex/validators/assets/comdexvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcpt5ph/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcpt5ph/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper16jaa0d8tth8v5ae48s4a5zqjvdp768nqft9h5r/logo.png b/blockchains/comdex/validators/assets/comdexvaloper16jaa0d8tth8v5ae48s4a5zqjvdp768nqft9h5r/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper16jaa0d8tth8v5ae48s4a5zqjvdp768nqft9h5r/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd/logo.png b/blockchains/comdex/validators/assets/comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper195re7mhwh9urewm3rvaj9r7vm6j63c4sd78njd/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper1g6zz4d7j6fvxy24nsqkjrcxqrt7hwp6p6hws7c/logo.png b/blockchains/comdex/validators/assets/comdexvaloper1g6zz4d7j6fvxy24nsqkjrcxqrt7hwp6p6hws7c/logo.png new file mode 100644 index 0000000000000..4b09813738a9d Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper1g6zz4d7j6fvxy24nsqkjrcxqrt7hwp6p6hws7c/logo.png differ diff --git a/blockchains/comdex/validators/assets/comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3/logo.png b/blockchains/comdex/validators/assets/comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/comdex/validators/assets/comdexvaloper1gfe4f7urf866xte5cpmkgsw7q2u97qj06ldtj3/logo.png differ diff --git a/blockchains/comdex/validators/list.json b/blockchains/comdex/validators/list.json new file mode 100644 index 0000000000000..31d08a4bfcd80 --- /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/validators/assets/corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5/logo.png b/blockchains/coreum/validators/assets/corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/coreum/validators/assets/corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5/logo.png differ diff --git a/blockchains/coreum/validators/list.json b/blockchains/coreum/validators/list.json new file mode 100644 index 0000000000000..6eba4002b5ca5 --- /dev/null +++ b/blockchains/coreum/validators/list.json @@ -0,0 +1,8 @@ +[ + { + "id": "corevaloper1k0rllvenwr02gvm52fh5056g5m3hly2lpf63z5", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + } +] \ No newline at end of file diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zfd832j/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zfd832j/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zfd832j/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5/logo.png new file mode 100644 index 0000000000000..dc486ae388c52 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6/logo.png new file mode 100644 index 0000000000000..9dff7bbedfbee Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1gpx52r9h3zeul45amvcy2pysgvcwddxrgx6cnv/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1gpx52r9h3zeul45amvcy2pysgvcwddxrgx6cnv/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1gpx52r9h3zeul45amvcy2pysgvcwddxrgx6cnv/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1k6e7l0lz497l8njqjxpd3g4wlkdfwe93uqf03k/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1k6e7l0lz497l8njqjxpd3g4wlkdfwe93uqf03k/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1k6e7l0lz497l8njqjxpd3g4wlkdfwe93uqf03k/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png index 3c29ee005d51c..0888af01c5da5 100644 Binary files a/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png and b/blockchains/cosmos/validators/assets/cosmosvaloper1wdrypwex63geqswmcy5qynv4w3z3dyef2qmyna/logo.png differ diff --git a/blockchains/cosmos/validators/assets/cosmosvaloper1wrx0x9m9ykdhw9sg04v7uljme53wuj03aa5d4f/logo.png b/blockchains/cosmos/validators/assets/cosmosvaloper1wrx0x9m9ykdhw9sg04v7uljme53wuj03aa5d4f/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/cosmos/validators/assets/cosmosvaloper1wrx0x9m9ykdhw9sg04v7uljme53wuj03aa5d4f/logo.png differ diff --git a/blockchains/cosmos/validators/list.json b/blockchains/cosmos/validators/list.json index f9ec87c54a557..06b425e0fe8f3 100644 --- a/blockchains/cosmos/validators/list.json +++ b/blockchains/cosmos/validators/list.json @@ -1,4 +1,16 @@ [ + { + "id": "cosmosvaloper1k6e7l0lz497l8njqjxpd3g4wlkdfwe93uqf03k", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "cosmosvaloper1gpx52r9h3zeul45amvcy2pysgvcwddxrgx6cnv", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.fr" + }, { "id": "cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q", "name": "Swiss Staking", @@ -17,6 +29,12 @@ "description": "We provide staking and validator services for crypto networks to increase the value of the network for all.", "website": "https://mythos.services" }, + { + "id": "cosmosvaloper15w6ra6m68c63t0sv2hzmkngwr9t88e23r8vtg5", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, { "id": "cosmosvaloper1j0vaeh27t4rll7zhmarwcuq8xtrmvqhudrgcky", "name": "Chainflow", @@ -248,7 +266,7 @@ { "id": "cosmosvaloper1rcp29q3hpd246n6qak7jluqep4v006cdsc2kkl", "name": "in3s.com", - "description": "Trusted by the ICF; decentralization advocate; Game-Of-Stakes winner; active Cosmos community member since 2017.", + "description": "Trusted by the ICF; genesis validator; never slashed; decentralization advocate; Game-Of-Stakes winner; Game-Of-Chains winner; active Cosmos community member since 2017.", "website": "https://in3s.com" }, { @@ -260,7 +278,7 @@ { "id": "cosmosvaloper1fhr7e04ct0zslmkzqt9smakg3sxrdve6ulclj2", "name": "Stakin", - "description": "Your Trusted Crypto Rewards", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", "website": "https://stakin.com/" }, { @@ -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", @@ -376,5 +394,23 @@ "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/" + }, + { + "id": "cosmosvaloper1wrx0x9m9ykdhw9sg04v7uljme53wuj03aa5d4f", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + }, + { + "id": "cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6", + "name": "Kahuna", + "description": "Kahuna is a tech-focused investment firm dedicated to Blockchain Infrastructure, DeFi, and Gaming startups. Follow us on https://x.com/kahunahq", + "website": "https://www.kahuna.network/" } ] diff --git a/blockchains/crescent/validators/assets/crevaloper126nxgyruw03fyr3rmxg76squcy08pjtm9zkl5d/logo.png b/blockchains/crescent/validators/assets/crevaloper126nxgyruw03fyr3rmxg76squcy08pjtm9zkl5d/logo.png new file mode 100644 index 0000000000000..4b09813738a9d Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper126nxgyruw03fyr3rmxg76squcy08pjtm9zkl5d/logo.png differ diff --git a/blockchains/crescent/validators/assets/crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f/logo.png b/blockchains/crescent/validators/assets/crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f/logo.png differ diff --git a/blockchains/crescent/validators/assets/crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc/logo.png b/blockchains/crescent/validators/assets/crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc/logo.png differ diff --git a/blockchains/crescent/validators/assets/crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf/logo.png b/blockchains/crescent/validators/assets/crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/crescent/validators/assets/crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf/logo.png differ diff --git a/blockchains/crescent/validators/list.json b/blockchains/crescent/validators/list.json new file mode 100644 index 0000000000000..269ff481956b7 --- /dev/null +++ b/blockchains/crescent/validators/list.json @@ -0,0 +1,26 @@ +[ + { + "id": "crevaloper19mt7qa5pralxre8j9v0wae2kvncv8qcghv0chf", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "crevaloper173rqm36cj5efq2yhsedd8vhfrl7rjqeftkp80f", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "crevaloper17zw2jx6jjfah60pycklvqfnm3qaxd7kqzafglc", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "crevaloper126nxgyruw03fyr3rmxg76squcy08pjtm9zkl5d", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + } +] \ No newline at end of file diff --git a/blockchains/cronos/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/info.json b/blockchains/cronos/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/info.json deleted file mode 100644 index 135ad5383293c..0000000000000 --- a/blockchains/cronos/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/info.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "name": "Dogelon", - "symbol": "ELON", - "type": "CRC20", - "decimals": 18, - "description": "I am Dogelon. Dogelon Mars. Join me and together we'll reach the stars ✨ We want to reach Mars and beyond. However, many of those good people are rugged, or buy scam tokens that can't be sold. For this reason, the Dogelon community pledges to send tokens over time to victims of rugs and scams, so that the worst day of their trading life can be turned into their best. And after some time, they will be able to join us on our regular flights to Mars....", - "website": "https://dogelon.io", - "explorer": "https://cronos.org/explorer/address/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/token-transfers", - "status": "active", - "id": "0x02DCcaf514C98451320a9365C5b46C61d3246ff3", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/dogelonmars" - }, - { - "name": "telegram", - "url": "https://t.me/DogelonMars" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/dogelon/" - } - ], - "tags": [ - "memes" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/info.json b/blockchains/cronos/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/info.json deleted file mode 100644 index c8c7c2991cb3e..0000000000000 --- a/blockchains/cronos/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/info.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "ADA", - "symbol": "ADA", - "type": "CRC20", - "decimals": 6, - "description": "Cardano (ADA) is a decentralized platform that will allow complex programmable transfers of value in a secure and scalable fashion. Cardano is built in the secure Haskell programming language.", - "website": "https://cronos.org/", - "explorer": "https://cronos.org/explorer/address/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/token-transfers", - "status": "active", - "id": "0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/cardano" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/cardano/" - }, - { - "name": "telegram", - "url": "https://t.me/CardanoAnnouncements" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/cardano/" - } - ], - "tags": [ - "defi" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/info.json b/blockchains/cronos/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/info.json deleted file mode 100644 index b384f93da9f50..0000000000000 --- a/blockchains/cronos/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/info.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "Fantom Token", - "symbol": "FTM", - "type": "CRC20", - "decimals": 18, - "description": "Fantom is a high-performance, scalable, customizable, and secure smart-contract platform. It is designed to overcome the limitations of previous generation blockchain platforms. Fantom is permissionless, decentralized, and open-source.", - "website": "http://fantom.foundation", - "explorer": "https://cronos.org/explorer/address/0x63888BaFc5975630E4E5CF50c3845a3250115F64/token-transfers", - "status": "active", - "id": "0x63888BaFc5975630E4E5CF50c3845a3250115F64", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/FantomFDN" - }, - { - "name": "telegram", - "url": "https://t.me/Fantom_English" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/coins/fantom/" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/fantom/" - } - ], - "tags": [ - "defi" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json b/blockchains/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json deleted file mode 100644 index 3af4070c1996e..0000000000000 --- a/blockchains/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "name": "Tether USD", - "symbol": "USDT", - "type": "CRC20", - "decimals": 6, - "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", - "website": "https://cronos.org/", - "explorer": "https://cronos.org/explorer/address/0x66e428c3f67a68878562e79A0234c1F83c208770/token-transfers", - "status": "active", - "id": "0x66e428c3f67a68878562e79A0234c1F83c208770", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/Tether_to" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/coins/tether/" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/tether/" - } - ], - "tags": [ - "stablecoin" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json b/blockchains/cronos/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json deleted file mode 100644 index 89cf83d609506..0000000000000 --- a/blockchains/cronos/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "Quant", - "symbol": "QNT", - "type": "CRC20", - "decimals": 18, - "description": "The Quant Network team developed Quant as a cryptocurrency token based on the Ethereum blockchain. The solutions offered by Quant include Overledger OS and GoVerify.", - "website": "https://quant.network", - "explorer": "https://cronos.org/explorer/address/0x7d54F4E05f273a9317f723997612Ed64eF53C900/token-transfers", - "status": "active", - "id": "0x7d54F4E05f273a9317f723997612Ed64eF53C900", - "links": [ - { - "name": "github", - "url": "https://github.com/quantnetwork" - }, - { - "name": "twitter", - "url": "https://twitter.com/quant_network" - }, - { - "name": "reddit", - "url": "https://reddit.com/r/QuantNetwork/" - }, - { - "name": "blog", - "url": "https://medium.com/@quant_network" - }, - { - "name": "facebook", - "url": "https://facebook.com/quantnetwork" - }, - { - "name": "telegram", - "url": "https://t.me/quantnetworkannouncements" - }, - { - "name": "whitepaper", - "url": "https://files.quant.network/files.quant.network/Quant_Overledger_Whitepaper_v0.1.pdf" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/quant-network/" - } - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/info.json b/blockchains/cronos/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/info.json deleted file mode 100644 index 2800b81e71c4e..0000000000000 --- a/blockchains/cronos/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/info.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "Chainlink", - "symbol": "LINK", - "type": "CRC20", - "decimals": 18, - "description": "Chainlink is a decentralized oracle service, which aims to connect smart contracts with data from the real world. Oracles are needed to function as data feeds in smart contracts. Oracles provide external data (e.g. temperature, weather) that can drive smart contract executions. Participants on the network are incentivized (through rewards) to provide smart contracts with access to external data feeds.", - "website": "https://chain.link", - "explorer": "https://cronos.org/explorer/address/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/token-transfers", - "status": "active", - "id": "0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9", - "links": [ - { - "name": "github", - "url": "https://github.com/smartcontractkit/chainlink" - }, - { - "name": "twitter", - "url": "https://twitter.com/chainlink" - }, - { - "name": "reddit", - "url": "https://reddit.com/r/chainlink" - }, - { - "name": "whitepaper", - "url": "https://link.smartcontract.com/whitepaper" - } - ], - "tags": [ - "defi" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/info.json b/blockchains/cronos/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/info.json deleted file mode 100644 index 6d6227341add9..0000000000000 --- a/blockchains/cronos/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/info.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "name": "DappRadar", - "symbol": "RADAR", - "type": "CRC20", - "decimals": 18, - "description": "DappRadar aims to be one of the leading global NFT & DeFi DAPP store.", - "website": "https://dappradar.com/", - "explorer": "https://cronos.org/explorer/address/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/token-transfers", - "status": "active", - "id": "0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a", - "links": [ - { - "name": "github", - "url": "https://github.com/dappradar" - }, - { - "name": "twitter", - "url": "https://twitter.com/dappradar" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/dappradar/" - }, - { - "name": "telegram", - "url": "https://t.me/joinchat/GdhNjQ8PMhCZ_a0CZutmXg" - } - ], - "tags": [ - "nft", - "defi" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json b/blockchains/cronos/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json deleted file mode 100644 index 88151f8318d72..0000000000000 --- a/blockchains/cronos/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "SHIBA INU", - "symbol": "SHIB", - "type": "CRC20", - "decimals": 18, - "description": "According to SHIBA INU, the reasoning behind the creation of SHIBA is that Shibas constantly forget where they bury their treasure.", - "website": "https://shibatoken.com/", - "explorer": "https://cronos.org/explorer/address/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/token-transfers", - "status": "active", - "id": "0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee", - "links": [ - { - "name": "telegram", - "url": "https://t.me/shibainuthedogecoinkiller" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/shiba-inu/" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/shiba-inu/" - } - ], - "tags": [ - "deflationary", - "memes" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/info.json b/blockchains/cronos/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/info.json deleted file mode 100644 index 1d705e26b892d..0000000000000 --- a/blockchains/cronos/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/info.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "Wrapped Ether", - "symbol": "WETH", - "type": "CRC20", - "decimals": 18, - "description": "wETH is 'wrapped ETH'", - "website": "https://weth.io/", - "explorer": "https://cronos.org/explorer/address/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/token-transfers", - "status": "active", - "id": "0xe44Fd7fCb2b1581822D0c862B68222998a0c299a", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/radarrelay?lang=en" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/weth/" - }, - { - "name": "telegram", - "url": "https://t.me/radar_relay" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/weth/" - } - ], - "tags": [ - "wrapped" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/info.json b/blockchains/cronos/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/info.json deleted file mode 100644 index 00315742d172c..0000000000000 --- a/blockchains/cronos/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/info.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "name": "ONE", - "symbol": "ONE", - "type": "CRC20", - "decimals": 18, - "description": "Harmony is an open and fast blockchain. Our mainnet runs Ethereum applications with 2-second transaction finality and 100 times lower fees.", - "website": "https://www.harmony.one", - "explorer": "https://cronos.org/explorer/address/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/token-transfers", - "status": "active", - "id": "0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/harmonyprotocol" - }, - { - "name": "telegram", - "url": "https://t.me/harmony_one" - }, - { - "name": "facebook", - "url": "https://facebook.com/harmonyoneprotocol/" - } - ] -} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/info.json b/blockchains/cronos/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/info.json deleted file mode 100644 index 9e40082ab4ac3..0000000000000 --- a/blockchains/cronos/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/info.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "Matic Token", - "symbol": "MATIC", - "type": "CRC20", - "decimals": 18, - "description": "Matic Network is a Layer-2 scaling solution that uses sidechains for off-chain computation while ensuring asset security using the Plasma framework and a decentralized network of Proof-of-Stake (PoS) validators.", - "website": "https://matic.network", - "explorer": "https://cronos.org/explorer/address/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/token-transfers", - "status": "active", - "id": "0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/0xPolygon" - }, - { - "name": "telegram", - "url": "https://t.me/polygonofficial" - }, - { - "name": "github", - "url": "https://github.com/maticnetwork/" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/polygon/" - } - ], - "tags": [ - "defi" - ] -} \ No newline at end of file diff --git a/blockchains/cronos/info/info.json b/blockchains/cronos/info/info.json index 67c092d865b07..3bb8c0e669327 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 0000000000000..5b0c752b6a4fd --- /dev/null +++ b/blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/info.json @@ -0,0 +1,28 @@ +{ + "name": "Dogelon", + "symbol": "ELON", + "type": "CRC20", + "decimals": 18, + "description": "I am Dogelon. Dogelon Mars. Join me and together we'll reach the stars ✨ We want to reach Mars and beyond. However, many of those good people are rugged, or buy scam tokens that can't be sold. For this reason, the Dogelon community pledges to send tokens over time to victims of rugs and scams, so that the worst day of their trading life can be turned into their best. And after some time, they will be able to join us on our regular flights to Mars....", + "website": "https://dogelon.io", + "explorer": "https://crypto.org/explorer/account/0x02DCcaf514C98451320a9365C5b46C61d3246ff3", + "status": "active", + "id": "0x02DCcaf514C98451320a9365C5b46C61d3246ff3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dogelonmars" + }, + { + "name": "telegram", + "url": "https://t.me/DogelonMars" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogelon/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/logo.png b/blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/logo.png similarity index 100% rename from blockchains/cronos/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/logo.png rename to blockchains/cryptoorg/assets/0x02DCcaf514C98451320a9365C5b46C61d3246ff3/logo.png diff --git a/blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/info.json b/blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/info.json new file mode 100644 index 0000000000000..bbcad0b22be2e --- /dev/null +++ b/blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/info.json @@ -0,0 +1,32 @@ +{ + "name": "ADA", + "symbol": "ADA", + "type": "CRC20", + "decimals": 6, + "description": "Cardano (ADA) is a decentralized platform that will allow complex programmable transfers of value in a secure and scalable fashion. Cardano is built in the secure Haskell programming language.", + "website": "https://crypto.org/", + "explorer": "https://crypto.org/explorer/account/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0", + "status": "active", + "id": "0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/cardano" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cardano/" + }, + { + "name": "telegram", + "url": "https://t.me/CardanoAnnouncements" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cardano/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/logo.png b/blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/logo.png similarity index 100% rename from blockchains/cronos/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/logo.png rename to blockchains/cryptoorg/assets/0x0e517979C2c1c1522ddB0c73905e0D39b3F990c0/logo.png diff --git a/blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/info.json b/blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/info.json new file mode 100644 index 0000000000000..bef05940b879c --- /dev/null +++ b/blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/info.json @@ -0,0 +1,32 @@ +{ + "name": "Fantom Token", + "symbol": "FTM", + "type": "CRC20", + "decimals": 18, + "description": "Fantom is a high-performance, scalable, customizable, and secure smart-contract platform. It is designed to overcome the limitations of previous generation blockchain platforms. Fantom is permissionless, decentralized, and open-source.", + "website": "http://fantom.foundation", + "explorer": "https://crypto.org/explorer/account/0x63888BaFc5975630E4E5CF50c3845a3250115F64", + "status": "active", + "id": "0x63888BaFc5975630E4E5CF50c3845a3250115F64", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/FantomFDN" + }, + { + "name": "telegram", + "url": "https://t.me/Fantom_English" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/fantom/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantom/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/logo.png b/blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/logo.png similarity index 100% rename from blockchains/cronos/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/logo.png rename to blockchains/cryptoorg/assets/0x63888BaFc5975630E4E5CF50c3845a3250115F64/logo.png diff --git a/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json b/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json new file mode 100644 index 0000000000000..a5bb571b6a3f2 --- /dev/null +++ b/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether USD", + "symbol": "USDT", + "type": "CRC20", + "decimals": 6, + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "website": "https://crypto.org/", + "explorer": "https://crypto.org/explorer/account/0x66e428c3f67a68878562e79A0234c1F83c208770", + "status": "active", + "id": "0x66e428c3f67a68878562e79A0234c1F83c208770", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Tether_to" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/tether/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png b/blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png similarity index 100% rename from blockchains/cronos/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png rename to blockchains/cryptoorg/assets/0x66e428c3f67a68878562e79A0234c1F83c208770/logo.png diff --git a/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json b/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json new file mode 100644 index 0000000000000..6112a818bc804 --- /dev/null +++ b/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/info.json @@ -0,0 +1,45 @@ +{ + "name": "Quant", + "symbol": "QNT", + "type": "CRC20", + "decimals": 18, + "description": "The Quant Network team developed Quant as a cryptocurrency token based on the Ethereum blockchain. The solutions offered by Quant include Overledger OS and GoVerify.", + "website": "https://quant.network", + "explorer": "https://crypto.org/explorer/account/0x7d54F4E05f273a9317f723997612Ed64eF53C900", + "status": "active", + "id": "0x7d54F4E05f273a9317f723997612Ed64eF53C900", + "links": [ + { + "name": "github", + "url": "https://github.com/quantnetwork" + }, + { + "name": "twitter", + "url": "https://twitter.com/quant_network" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/QuantNetwork/" + }, + { + "name": "blog", + "url": "https://medium.com/@quant_network" + }, + { + "name": "facebook", + "url": "https://facebook.com/quantnetwork" + }, + { + "name": "telegram", + "url": "https://t.me/quantnetworkannouncements" + }, + { + "name": "whitepaper", + "url": "https://files.quant.network/files.quant.network/Quant_Overledger_Whitepaper_v0.1.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/quant-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/logo.png b/blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/logo.png similarity index 100% rename from blockchains/cronos/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/logo.png rename to blockchains/cryptoorg/assets/0x7d54F4E05f273a9317f723997612Ed64eF53C900/logo.png diff --git a/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/info.json b/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/info.json new file mode 100644 index 0000000000000..4d8f0e7a0cfb3 --- /dev/null +++ b/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/info.json @@ -0,0 +1,32 @@ +{ + "name": "Chainlink", + "symbol": "LINK", + "type": "CRC20", + "decimals": 18, + "description": "Chainlink is a decentralized oracle service, which aims to connect smart contracts with data from the real world. Oracles are needed to function as data feeds in smart contracts. Oracles provide external data (e.g. temperature, weather) that can drive smart contract executions. Participants on the network are incentivized (through rewards) to provide smart contracts with access to external data feeds.", + "website": "https://chain.link", + "explorer": "https://crypto.org/explorer/account/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9", + "status": "active", + "id": "0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9", + "links": [ + { + "name": "github", + "url": "https://github.com/smartcontractkit/chainlink" + }, + { + "name": "twitter", + "url": "https://twitter.com/chainlink" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/chainlink" + }, + { + "name": "whitepaper", + "url": "https://link.smartcontract.com/whitepaper" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/logo.png b/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/logo.png new file mode 100644 index 0000000000000..ab55f5e21fae2 Binary files /dev/null and b/blockchains/cryptoorg/assets/0xBc6f24649CCd67eC42342AccdCECCB2eFA27c9d9/logo.png differ diff --git a/blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/info.json b/blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/info.json new file mode 100644 index 0000000000000..c88d10ad4fcb9 --- /dev/null +++ b/blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/info.json @@ -0,0 +1,33 @@ +{ + "name": "DappRadar", + "symbol": "RADAR", + "type": "CRC20", + "decimals": 18, + "description": "DappRadar aims to be one of the leading global NFT & DeFi DAPP store.", + "website": "https://dappradar.com/", + "explorer": "https://crypto.org/explorer/account/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a", + "status": "active", + "id": "0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a", + "links": [ + { + "name": "github", + "url": "https://github.com/dappradar" + }, + { + "name": "twitter", + "url": "https://twitter.com/dappradar" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dappradar/" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/GdhNjQ8PMhCZ_a0CZutmXg" + } + ], + "tags": [ + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/logo.png b/blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/logo.png similarity index 100% rename from blockchains/cronos/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/logo.png rename to blockchains/cryptoorg/assets/0xa58e3AeAeA3292c3E260378e55E9684C59E7A27a/logo.png diff --git a/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json b/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json new file mode 100644 index 0000000000000..2ce4c6eb2db1f --- /dev/null +++ b/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/info.json @@ -0,0 +1,29 @@ +{ + "name": "SHIBA INU", + "symbol": "SHIB", + "type": "CRC20", + "decimals": 18, + "description": "According to SHIBA INU, the reasoning behind the creation of SHIBA is that Shibas constantly forget where they bury their treasure.", + "website": "https://shibatoken.com/", + "explorer": "https://crypto.org/explorer/account/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee", + "status": "active", + "id": "0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee", + "links": [ + { + "name": "telegram", + "url": "https://t.me/shibainuthedogecoinkiller" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shiba-inu/" + } + ], + "tags": [ + "deflationary", + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/logo.png b/blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/logo.png similarity index 100% rename from blockchains/cronos/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/logo.png rename to blockchains/cryptoorg/assets/0xbED48612BC69fA1CaB67052b42a95FB30C1bcFee/logo.png diff --git a/blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/info.json b/blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/info.json new file mode 100644 index 0000000000000..b46bc623ec6c3 --- /dev/null +++ b/blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/info.json @@ -0,0 +1,32 @@ +{ + "name": "Wrapped Ether", + "symbol": "WETH", + "type": "CRC20", + "decimals": 18, + "description": "wETH is 'wrapped ETH'", + "website": "https://weth.io/", + "explorer": "https://crypto.org/explorer/account/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a", + "status": "active", + "id": "0xe44Fd7fCb2b1581822D0c862B68222998a0c299a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/radarrelay?lang=en" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + }, + { + "name": "telegram", + "url": "https://t.me/radar_relay" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/weth/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/logo.png b/blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/logo.png similarity index 100% rename from blockchains/cronos/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/logo.png rename to blockchains/cryptoorg/assets/0xe44Fd7fCb2b1581822D0c862B68222998a0c299a/logo.png diff --git a/blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/info.json b/blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/info.json new file mode 100644 index 0000000000000..eba7959636da1 --- /dev/null +++ b/blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/info.json @@ -0,0 +1,25 @@ +{ + "name": "ONE", + "symbol": "ONE", + "type": "CRC20", + "decimals": 18, + "description": "Harmony is an open and fast blockchain. Our mainnet runs Ethereum applications with 2-second transaction finality and 100 times lower fees.", + "website": "https://www.harmony.one", + "explorer": "https://crypto.org/explorer/account/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341", + "status": "active", + "id": "0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/harmonyprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/harmony_one" + }, + { + "name": "facebook", + "url": "https://facebook.com/harmonyoneprotocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/logo.png b/blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/logo.png similarity index 100% rename from blockchains/cronos/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/logo.png rename to blockchains/cryptoorg/assets/0xf0F2cCf4F18a13F73F7C48FA248645dD4Ac51341/logo.png diff --git a/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/info.json b/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/info.json new file mode 100644 index 0000000000000..69bcedf5ffe26 --- /dev/null +++ b/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/info.json @@ -0,0 +1,32 @@ +{ + "name": "Matic Token", + "symbol": "MATIC", + "type": "CRC20", + "decimals": 18, + "description": "Matic Network is a Layer-2 scaling solution that uses sidechains for off-chain computation while ensuring asset security using the Plasma framework and a decentralized network of Proof-of-Stake (PoS) validators.", + "website": "https://matic.network", + "explorer": "https://crypto.org/explorer/account/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5", + "status": "active", + "id": "0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/0xPolygon" + }, + { + "name": "telegram", + "url": "https://t.me/polygonofficial" + }, + { + "name": "github", + "url": "https://github.com/maticnetwork/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polygon/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/cronos/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/logo.png b/blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/logo.png similarity index 100% rename from blockchains/cronos/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/logo.png rename to blockchains/cryptoorg/assets/0xf78a326ACd53651F8dF5D8b137295e434B7c8ba5/logo.png diff --git a/blockchains/cryptoorg/info/logo.png b/blockchains/cryptoorg/info/logo.png index ae4b44e694528..08d6bd8efb35b 100644 Binary files a/blockchains/cryptoorg/info/logo.png and b/blockchains/cryptoorg/info/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj/logo.png new file mode 100644 index 0000000000000..9f0f2ffb1580b Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h/logo.png b/blockchains/cryptoorg/validators/assets/crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1td4trxpsa3992sqh70erxyeuyjdxdce2kmuzrt/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1td4trxpsa3992sqh70erxyeuyjdxdce2kmuzrt/logo.png new file mode 100644 index 0000000000000..4169fbd4c6092 Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1td4trxpsa3992sqh70erxyeuyjdxdce2kmuzrt/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1tkev46yqrjzrjzrqtty30ex68eja2zcltyq2vj/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1tkev46yqrjzrjzrqtty30ex68eja2zcltyq2vj/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1tkev46yqrjzrjzrqtty30ex68eja2zcltyq2vj/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1u5ryf5jwc2jhd9xyvmasfqzacxp03v8dcj8xry/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1u5ryf5jwc2jhd9xyvmasfqzacxp03v8dcj8xry/logo.png new file mode 100644 index 0000000000000..5870da0bcc758 Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1u5ryf5jwc2jhd9xyvmasfqzacxp03v8dcj8xry/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1up72gll847cqf5wrdedp66pklvpmqxcctr63nh/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1up72gll847cqf5wrdedp66pklvpmqxcctr63nh/logo.png new file mode 100644 index 0000000000000..b2402257153de Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1up72gll847cqf5wrdedp66pklvpmqxcctr63nh/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1vk5zc056nfngucy69eyveupytkhkr2ya3yj9r0/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1vk5zc056nfngucy69eyveupytkhkr2ya3yj9r0/logo.png new file mode 100644 index 0000000000000..cae8c0bcf8dd9 Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1vk5zc056nfngucy69eyveupytkhkr2ya3yj9r0/logo.png differ diff --git a/blockchains/cryptoorg/validators/assets/crocncl1yr3pm394j5yz3zsz5gjc28eqhvnre9389seafz/logo.png b/blockchains/cryptoorg/validators/assets/crocncl1yr3pm394j5yz3zsz5gjc28eqhvnre9389seafz/logo.png new file mode 100644 index 0000000000000..40d99e260a31d Binary files /dev/null and b/blockchains/cryptoorg/validators/assets/crocncl1yr3pm394j5yz3zsz5gjc28eqhvnre9389seafz/logo.png differ diff --git a/blockchains/cryptoorg/validators/list.json b/blockchains/cryptoorg/validators/list.json new file mode 100644 index 0000000000000..78c9a408667a6 --- /dev/null +++ b/blockchains/cryptoorg/validators/list.json @@ -0,0 +1,50 @@ +[ + { + "id": "crocncl1u5ryf5jwc2jhd9xyvmasfqzacxp03v8dcj8xry", + "name": "Allnodes.com ⚡️ Auto-compound (Ledger or Keplr)", + "description": "A non-custodial platform where you can host Masternodes, Validator Nodes, Super Nodes, Sentry Nodes, Full Nodes, and partake in Staking in over 70 protocols.", + "website": "https://www.allnodes.com" + }, + { + "id": "crocncl1yr3pm394j5yz3zsz5gjc28eqhvnre9389seafz", + "name": "Crypto.bzh", + "description": "Here is the address to use to delegate your funds (staking) on ​​the Crypto.bzh validator.", + "website": "https://crypto.bzh" + }, + { + "id": "crocncl1up72gll847cqf5wrdedp66pklvpmqxcctr63nh", + "name": "nebkas.ro", + "description": "The company is a limited liability company, incorporated and functioning according to Romanian laws.", + "website": "https://nebkas.ro" + }, + { + "id": "crocncl1td4trxpsa3992sqh70erxyeuyjdxdce2kmuzrt", + "name": "Veno.finance", + "description": "Earn more rewards with Veno! Boost extra APY with our ecosystem partners!", + "website": "https://veno.finance" + }, + { + "id": "crocncl1vk5zc056nfngucy69eyveupytkhkr2ya3yj9r0", + "name": "Making.cash", + "description": "Validator on Celo, Solana, Certik, Dock, Regen and more", + "website": "https://making.cash" + }, + { + "id": "crocncl18nc2zx5rs7jwm7dwk5gvelul2wer8zfykfmg8h", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com" + }, + { + "id": "crocncl1398htakkpn2esmp3czjs548ujj5278xmxw2tyj", + "name": "Kingstaker", + "description": "Reliable and experienced EU validator. Just the minimum commission is charged to cover infrastructure cost. Thank you for staking with us!", + "website": "https://kingstaker.com" + }, + { + "id": "crocncl1tkev46yqrjzrjzrqtty30ex68eja2zcltyq2vj", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection & Eligible for airdrops | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + } +] diff --git a/blockchains/elrond/assets/USDT-f8c08c/info.json b/blockchains/elrond/assets/USDT-f8c08c/info.json new file mode 100644 index 0000000000000..dbb89aff2f4fe --- /dev/null +++ b/blockchains/elrond/assets/USDT-f8c08c/info.json @@ -0,0 +1,29 @@ +{ + "type": "ESDT", + "id": "USDT-f8c08c", + "name": "Wrapped USDT (on MultiversX)", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "description": "USDT stablecoin originating on Ethereum, bridged as an ESDT token on MultiversX. 1 USDT = 1 Wrapped USDT", + "website": "https://xexchange.com", + "explorer": "https://explorer.multiversx.com/tokens/USDT-f8c08c", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + } + ], + "tags": [ + "stablecoin", + "wrapped" + ] +} diff --git a/blockchains/elrond/assets/USDT-f8c08c/logo.png b/blockchains/elrond/assets/USDT-f8c08c/logo.png new file mode 100644 index 0000000000000..4b3027306a91c Binary files /dev/null and b/blockchains/elrond/assets/USDT-f8c08c/logo.png differ diff --git a/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq8hlllls7a6h85/logo.png b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq8hlllls7a6h85/logo.png new file mode 100644 index 0000000000000..8b600a18bc912 Binary files /dev/null and b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq8hlllls7a6h85/logo.png differ diff --git a/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq9hllllsz2je7q/logo.png b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq9hllllsz2je7q/logo.png new file mode 100644 index 0000000000000..9c3ba8a329627 Binary files /dev/null and b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq9hllllsz2je7q/logo.png differ diff --git a/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqhllllsajxzat/logo.png b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqhllllsajxzat/logo.png new file mode 100644 index 0000000000000..16c9e97d39903 Binary files /dev/null and b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqhllllsajxzat/logo.png differ diff --git a/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqrhlllls062tu4/logo.png b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqrhlllls062tu4/logo.png new file mode 100644 index 0000000000000..fa3fa1d2bb8bd Binary files /dev/null and b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqrhlllls062tu4/logo.png differ diff --git a/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqzhllllsp9wvyl/logo.png b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqzhllllsp9wvyl/logo.png new file mode 100644 index 0000000000000..27aaddd1e904d Binary files /dev/null and b/blockchains/elrond/validators/assets/erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqzhllllsp9wvyl/logo.png differ diff --git a/blockchains/elrond/validators/list.json b/blockchains/elrond/validators/list.json new file mode 100644 index 0000000000000..59717b3fb8555 --- /dev/null +++ b/blockchains/elrond/validators/list.json @@ -0,0 +1,32 @@ +[ + { + "id": "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqhllllsajxzat", + "name": "Staking Agency", + "description": "The smart way to manage your stakes", + "website": "https://staking.agency/" + }, + { + "id": "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq8hlllls7a6h85", + "name": "Meria", + "description": "French Crypto Investment Provider www.meria.com", + "website": "https://meria.com/" + }, + { + "id": "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqrhlllls062tu4", + "name": "iVerse Vision", + "description": "Next generation Blockchain projects https://t.me/iVerse_Vision_Official", + "website": "https://www.iverse.vision/" + }, + { + "id": "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqq9hllllsz2je7q", + "name": "PartnerStaking", + "description": "Easiest way to manage your stake using the Partner Staking mobile app: https://partnerstaking.com/mobile", + "website": "https://partnerstaking.com/" + }, + { + "id": "erd1qqqqqqqqqqqqqqqpqqqqqqqqqqqqqqqqqqqqqqqqqqqqqzhllllsp9wvyl", + "name": "Trust Staking", + "description": "Trust Staking, a tech-driven provider on MultiversX, expertly manages private and third-party nodes. We are dedicated to the chain, reinvesting most of our revenues into developing innovative products like XOXNO and supporting various network protocols for blockchain growth.", + "website": "https://truststaking.com/" + } +] diff --git a/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json b/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json new file mode 100644 index 0000000000000..481f8c2286d77 --- /dev/null +++ b/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json @@ -0,0 +1,34 @@ +{ +"name": "USDA", +"website": "https://www.angle.money/", +"description": "USDA is an over-collateralized and decentralized USD stablecoin by the Angle Protocol.", +"explorer": "https://etherscan.io/token/0x0000206329b97DB379d5E1Bf586BbDB969C63274", +"type": "ERC20", +"symbol": "USDA", +"decimals": 18, +"status": "active", +"tags": ["defi", "stablecoin"], +"id": "0x0000206329b97DB379d5E1Bf586BbDB969C63274", +"links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-usd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } +] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png b/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png new file mode 100644 index 0000000000000..759db2e96cc84 Binary files /dev/null and b/blockchains/ethereum/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png differ diff --git a/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json b/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json new file mode 100644 index 0000000000000..0dd89961cc43f --- /dev/null +++ b/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json @@ -0,0 +1,34 @@ +{ +"name": "Staked USDA", +"website": "https://www.angle.money/", +"description": "stUSD is a USD savings solution built on top of USDA by the Angle Protocol", +"explorer": "https://etherscan.io/token/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", +"type": "ERC20", +"symbol": "stUSD", +"decimals": 18, +"status": "active", +"tags": ["defi", "stablecoin"], +"id": "0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", +"links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-staked-agusd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } +] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png b/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png new file mode 100644 index 0000000000000..a0fd0bd217403 Binary files /dev/null and b/blockchains/ethereum/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png differ diff --git a/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json b/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json new file mode 100644 index 0000000000000..3d1738a49eb1f --- /dev/null +++ b/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json @@ -0,0 +1,34 @@ +{ +"name": "Staked EURA", +"website": "https://www.angle.money/", +"description": "stEUR is a Euro savings solution built on top of EURA by the Angle Protocol.", +"explorer": "https://etherscan.io/token/0x004626A008B1aCdC4c74ab51644093b155e59A23", +"type": "ERC20", +"symbol": "stEUR", +"decimals": 18, +"status": "active", +"tags": ["defi", "stablecoin"], +"id": "0x004626A008B1aCdC4c74ab51644093b155e59A23", +"links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/staked-ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } +] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png b/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png new file mode 100644 index 0000000000000..dbf1b94234fc1 Binary files /dev/null and b/blockchains/ethereum/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png differ diff --git a/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/info.json b/blockchains/ethereum/assets/0x0305f515fa978cf87226cf8A9776D25bcfb2Cc0B/info.json new file mode 100644 index 0000000000000..2f958fba8a501 --- /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 0000000000000..6a1e743f2d4c9 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 0000000000000..9c384044ade67 --- /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 0000000000000..40eda8f2f790b 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 0000000000000..3794873ada4e4 --- /dev/null +++ b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/info.json @@ -0,0 +1,25 @@ +{ + "name": "Rollbit Coin", + "website": "https://rollbit.com/", + "description": "RLB is Rollbit's native token. It introduces 'RLB Lottery' which includes a prize pool grown from a share of Rollbit's casino profits.", + "explorer": "https://etherscan.io/token/0x046eee2cc3188071c02bfc1745a6b17c656e3f3d", + "type": "ERC20", + "symbol": "RLB", + "decimals": 18, + "status": "active", + "id": "0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rollbit-coin/" + }, + { + "name": "twitter", + "url": "https://twitter.com/rollbitcom" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rollbit-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/logo.png b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/logo.png new file mode 100644 index 0000000000000..85082663b0969 Binary files /dev/null and b/blockchains/ethereum/assets/0x046EeE2cc3188071C02BfC1745A6b17c656e3f3d/logo.png differ diff --git a/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/info.json b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/info.json new file mode 100644 index 0000000000000..15948e26ec33a --- /dev/null +++ b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/info.json @@ -0,0 +1,24 @@ +{ + "name": "HarryPotterObamaPacMan8Inu", + "website": "https://hpop8i.com/", + "description": "HarryPotterObamaPacMan8Inu is an enchanting and whimsical meme project that recently took its first steps onto the Ethereum blockchain. Inspired by a fusion of iconic characters from popular culture, this unique and lighthearted project brings together the worlds of Harry Potter, Barack Obama, Pac-Man, and the Inu meme trend in an unexpected and delightful way.", + "explorer": "https://etherscan.io/token/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae", + "type": "ERC20", + "symbol": "XRP", + "decimals": 8, + "status": "active", + "id": "0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae", + "tags": [ + "memes" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/HPOP8I" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/harrypotterobamapacman8inu/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/logo.png b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/logo.png new file mode 100644 index 0000000000000..8761450401a1c Binary files /dev/null and b/blockchains/ethereum/assets/0x07E0EDf8ce600FB51d44F51E3348D77D67F298ae/logo.png differ diff --git a/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/info.json b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/info.json new file mode 100644 index 0000000000000..504afe8432f2f --- /dev/null +++ b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/info.json @@ -0,0 +1,28 @@ +{ + "name": "Dalarnia", + "type": "ERC20", + "symbol": "DAR", + "decimals": 6, + "website": "https://www.minesofdalarnia.com", + "description": "Mines of Dalarnia is an action-adventure game. Players mine and combine various in-game items, improving their skills and gear to unlock the MoD universe's secrets while fighting enemies and searching for rare relics and artifacts.", + "explorer": "https://etherscan.io/token/0x081131434f93063751813c619ecca9c4dc7862a3", + "status": "active", + "id": "0x081131434f93063751813C619Ecca9C4dC7862a3", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MinesOfDalarnia" + }, + { + "name": "twitter", + "url": "https://twitter.com/MinesOfDalarnia" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mines-of-dalarnia/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/logo.png b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/logo.png new file mode 100644 index 0000000000000..c8e37a57ef89c Binary files /dev/null and b/blockchains/ethereum/assets/0x081131434f93063751813C619Ecca9C4dC7862a3/logo.png differ diff --git a/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/info.json b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/info.json new file mode 100644 index 0000000000000..b4da9a02a32c0 --- /dev/null +++ b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/info.json @@ -0,0 +1,29 @@ +{ + "name": "GOLD", + "website": "https://hodl.gold/", + "description": "Gold has been the symbol of power, wealth, & beauty in all of humanity’s recorded history. It is also widely used in internet culture to convey digital currencies. The GOLD coin is the ethereum project for one of the most valuable resources in the world. It’s also a meme. That’s all it’ll ever be. Launched stealth with no presale, low taxes, & LP burnt. Contract will be renounced. GOLD is here to bring back the golden era of crypto.", + "explorer": "https://etherscan.io/token/0x089453742936dd35134383aee9d78bee63a69b01", + "type": "ERC20", + "symbol": "GOLD", + "decimals": 18, + "status": "active", + "id": "0x089453742936dd35134383aee9d78bEe63A69b01", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GoldCoinETH" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gold-2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/the-gold-token/" + }, + { + "name": "telegram", + "url": "https://t.me/GoldCoinETH" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/logo.png b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/logo.png new file mode 100644 index 0000000000000..190fc89bfc38d Binary files /dev/null and b/blockchains/ethereum/assets/0x089453742936dd35134383aee9d78bEe63A69b01/logo.png differ diff --git a/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json b/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json new file mode 100644 index 0000000000000..b799d40a1e1e1 --- /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 0000000000000..5dd9cbe12c479 Binary files /dev/null and b/blockchains/ethereum/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png differ diff --git a/blockchains/ethereum/assets/0x0C04fF41b11065EEd8c9EDA4d461BA6611591395/info.json b/blockchains/ethereum/assets/0x0C04fF41b11065EEd8c9EDA4d461BA6611591395/info.json new file mode 100644 index 0000000000000..6fa191ff49253 --- /dev/null +++ b/blockchains/ethereum/assets/0x0C04fF41b11065EEd8c9EDA4d461BA6611591395/info.json @@ -0,0 +1,21 @@ +{ + "name": "VIVEK", + "type": "ERC20", + "symbol": "TRUTH", + "decimals": 9, + "website": "https://vivek-truth.com/", + "description": "In a world where misinformation is rampant, Vivek Truth stands as a beacon of clarity.", + "explorer": "https://etherscan.io/token/0x0c04ff41b11065eed8c9eda4d461ba6611591395", + "status": "active", + "id": "0x0C04fF41b11065EEd8c9EDA4d461BA6611591395", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/TruthMemecoin" + }, + { + "name": "telegram", + "url": "https://t.me/VivekTruthCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0C04fF41b11065EEd8c9EDA4d461BA6611591395/logo.png b/blockchains/ethereum/assets/0x0C04fF41b11065EEd8c9EDA4d461BA6611591395/logo.png new file mode 100644 index 0000000000000..ba931fb6d2c21 Binary files /dev/null and b/blockchains/ethereum/assets/0x0C04fF41b11065EEd8c9EDA4d461BA6611591395/logo.png differ diff --git a/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/info.json b/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/info.json new file mode 100644 index 0000000000000..740fb5e44fd5c --- /dev/null +++ b/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Catboy", + "type": "ERC20", + "symbol": "CATBOY", + "decimals": 18, + "website": "https://www.catboy.io/", + "description": "Catboy is an NFT project with a fusion of meme & anime, while 'catified.' With reward utilities & innovative and Interactive NFTs with AI integration.", + "explorer": "https://etherscan.io/token/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6", + "status": "active", + "id": "0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/catboy_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cat-boy/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/logo.png b/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/logo.png new file mode 100644 index 0000000000000..585e18c89e9c2 Binary files /dev/null and b/blockchains/ethereum/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/logo.png differ diff --git a/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/info.json b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/info.json new file mode 100644 index 0000000000000..bf51ba1f62b9f --- /dev/null +++ b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/info.json @@ -0,0 +1,34 @@ +{ + "name": "ATOR Protocol", + "type": "ERC20", + "symbol": "ATOR", + "decimals": 18, + "website": "https://ator.io/", + "description": "ATOR empowers The Onion Router (Tor) through on-chain incentives, and facilitates wider adoption of secure network relay protocols through hardware products.", + "explorer": "https://etherscan.io/token/0x0f7b3f5a8fed821c5eb60049538a548db2d479ce", + "status": "active", + "id": "0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/atorprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/atorofficialportal" + }, + { + "name": "github", + "url": "https://github.com/ATOR-Development" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ator" + } + ], + "tags": [ + "defi", + "privacy", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/logo.png b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/logo.png new file mode 100644 index 0000000000000..fae0e2380b15f Binary files /dev/null and b/blockchains/ethereum/assets/0x0F7B3F5a8FeD821c5eb60049538a548dB2D479ce/logo.png differ diff --git a/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/info.json b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/info.json new file mode 100644 index 0000000000000..766fa1a137fb4 --- /dev/null +++ b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/info.json @@ -0,0 +1,25 @@ +{ + "name": "Shiba V Pepe", + "type": "ERC20", + "symbol": "SHEPE", + "decimals": 9, + "website": "https://shibavspepe.io/", + "description": "$SHEPE is aiming to start the communities battle between Shiba VS Pepe.", + "explorer": "https://etherscan.io/token/0x0b0a8c7c34374c1d0c649917a97eee6c6c929b1b", + "status": "active", + "id": "0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b", + "links": [ + { + "name": "telegram", + "url": "https://t.me/shibavspepe" + }, + { + "name": "twitter", + "url": "https://twitter.com/shibavspepe" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-v-pepe/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/logo.png b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/logo.png new file mode 100644 index 0000000000000..ee3a40be30e57 Binary files /dev/null and b/blockchains/ethereum/assets/0x0b0a8c7C34374C1d0C649917a97EeE6c6c929B1b/logo.png differ diff --git a/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/info.json b/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/info.json new file mode 100644 index 0000000000000..3b485510b3db5 --- /dev/null +++ b/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/info.json @@ -0,0 +1,17 @@ +{ + "name": "Flooring Lab Credit", + "website": "https://flooring.io/", + "description": "The $FLC token is the native currency that powers the Flooring Protocol ecosystem. It unlocks and fuels customized platform utilities for all users.", + "explorer": "https://etherscan.io/token/0x102c776ddb30c754ded4fdcc77a19230a60d4e4f", + "type": "ERC20", + "symbol": "FLC", + "decimals": 18, + "status": "active", + "id": "0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/flooringproto" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/logo.png b/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/logo.png new file mode 100644 index 0000000000000..03b07b6dfa1f8 Binary files /dev/null and b/blockchains/ethereum/assets/0x102c776DDB30C754dEd4fDcC77A19230A60D4e4f/logo.png differ diff --git a/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/info.json b/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/info.json new file mode 100644 index 0000000000000..6f815b359ce1a --- /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 0000000000000..f3f72e02f18ba Binary files /dev/null and b/blockchains/ethereum/assets/0x1063181dc986F76F7eA2Dd109e16fc596d0f522A/logo.png differ diff --git a/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/info.json b/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/info.json new file mode 100644 index 0000000000000..440e2f73e1c6b --- /dev/null +++ b/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/info.json @@ -0,0 +1,48 @@ +{ + "name": "Taiko Token", + "website": "https://taiko.xyz/", + "description": "Taiko is a permissionless based rollup on Ethereum", + "explorer": "https://etherscan.io/token/0x10dea67478c5f8c5e2d90e5e9b26dbe60c54d800", + "symbol": "TAIKO", + "type": "ERC20", + "decimals": 18, + "status": "active", + "tags": [ + "governance" + ], + "id": "0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800", + "links": [ + { + "name": "github", + "url": "https://github.com/taikoxyz/taiko-mono" + }, + { + "name": "docs", + "url": "https://docs.taiko.xyz/start-here/getting-started" + }, + { + "name": "twitter", + "url": "https://twitter.com/taikoxyz" + }, + { + "name": "whitepaper", + "url": "https://github.com/taikoxyz/taiko-mono/blob/main/packages/protocol/docs/tokenomics-whitepaper.pdf" + }, + { + "name": "blog", + "url": "https://taiko.mirror.xyz/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/taikoxyz" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/taiko" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/taiko/" + } + ] +} diff --git a/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/logo.png b/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/logo.png new file mode 100644 index 0000000000000..2d0790b85f84b Binary files /dev/null and b/blockchains/ethereum/assets/0x10dea67478c5F8C5E2D90e5E9B26dBe60c54d800/logo.png differ diff --git a/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/info.json b/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/info.json new file mode 100644 index 0000000000000..1c8d7b7a40c40 --- /dev/null +++ b/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/info.json @@ -0,0 +1,21 @@ +{ + "name": "NodeAI", + "website": "https://nodes.ai", + "description": "Node AI is a decentralized platform that provides access to GPU and AI resources.", + "explorer": "https://etherscan.io/token/0x1258d60b224c0c5cd888d37bbf31aa5fcfb7e870", + "type": "ERC20", + "symbol": "GPU", + "decimals": 18, + "status": "active", + "id": "0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/NodeAIETH" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/node-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/logo.png b/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/logo.png new file mode 100644 index 0000000000000..219d77c7c927b Binary files /dev/null and b/blockchains/ethereum/assets/0x1258D60B224c0C5cD888D37bbF31aa5FCFb7e870/logo.png differ diff --git a/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json b/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json new file mode 100644 index 0000000000000..d4c7b4e0fc287 --- /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 0000000000000..9939ad9e03215 Binary files /dev/null and b/blockchains/ethereum/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/logo.png differ diff --git a/blockchains/ethereum/assets/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4/info.json b/blockchains/ethereum/assets/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4/info.json new file mode 100644 index 0000000000000..7221f57dfc0a2 --- /dev/null +++ b/blockchains/ethereum/assets/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4/info.json @@ -0,0 +1,21 @@ +{ + "name": "White Yorkshire", + "type": "ERC20", + "symbol": "WSH", + "decimals": 18, + "website": "https://wsh-token.com/", + "description": "White Yorkshire (WSH) is a meme-themed cryptocurrency project that aims to combine the charm of memes with the innovation of blockchain technology.", + "explorer": "https://etherscan.io/token/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4", + "status": "active", + "id": "0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/WshToken" + }, + { + "name": "telegram", + "url": "https://t.me/wsh_token" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4/logo.png b/blockchains/ethereum/assets/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4/logo.png new file mode 100644 index 0000000000000..0f1f069e3005e Binary files /dev/null and b/blockchains/ethereum/assets/0x12996C7B23c4012149bf9F5663FF9Aa08A9cF2E4/logo.png differ diff --git a/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/info.json b/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/info.json new file mode 100644 index 0000000000000..2f28fb93f60ca --- /dev/null +++ b/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/info.json @@ -0,0 +1,34 @@ +{ + "name": "SafePal Token", + "website": "https://www.safepal.io", + "description": "SafePal is a cryptocurrency wallet that aims to provide a secure and user-friendly crypto asset management platform.", + "explorer": "https://etherscan.io/token/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134", + "research": "https://research.binance.com/en/projects/safepal", + "type": "ERC20", + "symbol": "SFP", + "decimals": 18, + "status": "active", + "id": "0x12e2b8033420270db2F3b328E32370Cb5B2Ca134", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/iSafePal" + }, + { + "name": "github", + "url": "https://github.com/SafePalWallet" + }, + { + "name": "telegram", + "url": "https://t.me/SafePalwallet" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/safepal/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/safepal/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/logo.png b/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/logo.png new file mode 100644 index 0000000000000..154b3c9c6777d Binary files /dev/null and b/blockchains/ethereum/assets/0x12e2b8033420270db2F3b328E32370Cb5B2Ca134/logo.png differ diff --git a/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json new file mode 100644 index 0000000000000..4025c077720d8 --- /dev/null +++ b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json @@ -0,0 +1,25 @@ +{ + "name": "CyberConnect", + "type": "ERC20", + "symbol": "CYBER", + "decimals": 18, + "website": "https://cyberconnect.me/", + "description": "CyberConnect is a Web3 social network that enables developers to create social applications empowering users to own their digital identity, content, connections, and interactions.", + "explorer": "https://etherscan.io/token/0x14778860e937f509e651192a90589de711fb88a9", + "status": "active", + "id": "0x14778860E937f509e651192a90589dE711Fb88a9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CyberConnectHQ" + }, + { + "name": "github", + "url": "https://github.com/cyberconnecthq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cyberconnect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png new file mode 100644 index 0000000000000..b26b7b808fb16 Binary files /dev/null and b/blockchains/ethereum/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png differ diff --git a/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/info.json b/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/info.json new file mode 100644 index 0000000000000..75c7b1d22cfe3 --- /dev/null +++ b/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/info.json @@ -0,0 +1,53 @@ +{ + "name": "Zero1 Labs", + "type": "ERC20", + "symbol": "DEAI", + "decimals": 18, + "website": "https://z1labs.ai", + "description": "Zero1 is a DeAI ecosystem creating a new economic primitive.", + "explorer": "https://etherscan.io/token/0x1495bc9e44af1f8bcb62278d2bec4540cf0c05ea", + "status": "active", + "id": "0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/" + }, + { + "name": "telegram_news", + "url": "https://t.me/zero1labs" + }, + { + "name": "discord", + "url": "https://discord.com/4mEBU6fja5" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zero1-labs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zero1-labs/" + }, + { + "name": "blog", + "url": "https://z1labs.ai/blog/" + }, + { + "name": "docs", + "url": "https://docs.z1labs.ai/" + }, + { + "name": "whitepaper", + "url": "https://z1labs.ai/litepaper.pdf" + }, + { + "name": "github", + "url": "https://github.com/z1labs" + } + ], + "tags": [ + "dapp", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/logo.png b/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/logo.png new file mode 100644 index 0000000000000..e8c022d35fa92 Binary files /dev/null and b/blockchains/ethereum/assets/0x1495bc9e44Af1F8BCB62278D2bEC4540cF0C05ea/logo.png differ diff --git a/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/info.json b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/info.json new file mode 100644 index 0000000000000..8a787ce91ca77 --- /dev/null +++ b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/info.json @@ -0,0 +1,25 @@ +{ + "name": "PAAL AI", + "website": "https://paalai.io/", + "description": "Paal is an advanced chatbot built on AI and ML technologies, designed to streamline tasks that typically require human intellect, such as natural language understanding, image recognition, decision-making, and problem-solving.", + "explorer": "https://etherscan.io/token/0x14fee680690900ba0cccfc76ad70fd1b95d10e16", + "type": "ERC20", + "symbol": "PAAL", + "decimals": 9, + "status": "active", + "id": "0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paal-ai/" + }, + { + "name": "twitter", + "url": "https://twitter.com/PaalMind" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/paal-ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/logo.png b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/logo.png new file mode 100644 index 0000000000000..5005332b2a23f Binary files /dev/null and b/blockchains/ethereum/assets/0x14feE680690900BA0ccCfC76AD70Fd1b95D10e16/logo.png differ diff --git a/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/info.json b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/info.json new file mode 100644 index 0000000000000..e3c8847b61a7c --- /dev/null +++ b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/info.json @@ -0,0 +1,25 @@ +{ + "name": "HXAcoin", + "website": "https://www.hxacoin.io/", + "description": "HXA coin is the native utility token of the Herencia Artifex project - a revolutionary NFT project that aims to bridge the gap between real-world items and blockchain technology.", + "explorer": "https://etherscan.io/token/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396", + "type": "ERC20", + "symbol": "HXA", + "decimals": 18, + "status": "active", + "id": "0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/HXAcoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hxacoin/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hxacoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/logo.png b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/logo.png new file mode 100644 index 0000000000000..f262f107dd89d Binary files /dev/null and b/blockchains/ethereum/assets/0x15C1Cab705B9Ddb9FfeeEa608eD8BaFcdd4c0396/logo.png differ diff --git a/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/info.json b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/info.json new file mode 100644 index 0000000000000..f1967724a8af6 --- /dev/null +++ b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/info.json @@ -0,0 +1,25 @@ +{ + "name": "Worldcoin", + "website": "https://worldcoin.org/", + "description": "The Worldcoin system revolves around World ID, a privacy-preserving global identity network. World ID enables users to verify their humanness online (`Proof of Personhood`) while maintaining their privacy through zero-knowledge proofs.", + "explorer": "https://etherscan.io/token/0x163f8c2467924be0ae7b5347228cabf260318753", + "type": "ERC20", + "symbol": "WLD", + "decimals": 18, + "status": "active", + "id": "0x163f8C2467924be0ae7B5347228CABF260318753", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/worldcoin" + }, + { + "name": "telegram", + "url": "https://t.me/worldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/worldcoin-org/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/logo.png b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/logo.png new file mode 100644 index 0000000000000..cb7f6e3935a81 Binary files /dev/null and b/blockchains/ethereum/assets/0x163f8C2467924be0ae7B5347228CABF260318753/logo.png differ diff --git a/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/info.json b/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/info.json new file mode 100644 index 0000000000000..a32aa6139bf1c --- /dev/null +++ b/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/info.json @@ -0,0 +1,25 @@ +{ + "name": "Inspect", + "website": "https://www.inspect.xyz/", + "description": "Inspect, the first Layer 2 for X (Twitter), merges SocialFi and DeFi in Web3. It revolutionizes crypto navigation in social media, offering tools for swaps, trend tracking, smart money engagement, and alpha interaction. Empowering users with insights, it reshapes decentralized-era social engagement.", + "explorer": "https://etherscan.io/token/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457", + "symbol": "INSP", + "type": "ERC20", + "decimals": 18, + "id": "0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457", + "status": "active", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/inspectxyz" + }, + { + "name": "telegram", + "url": "https://t.me/inspectxyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/inspect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/logo.png b/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/logo.png new file mode 100644 index 0000000000000..709d880c1fd80 Binary files /dev/null and b/blockchains/ethereum/assets/0x186eF81fd8E77EEC8BfFC3039e7eC41D5FC0b457/logo.png differ diff --git a/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/info.json b/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/info.json new file mode 100644 index 0000000000000..03ab1761c2fce --- /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 0000000000000..c43b83973316f Binary files /dev/null and b/blockchains/ethereum/assets/0x1B6e9c73beE68102d9dd4A2627f97bFf4183ab0A/logo.png differ diff --git a/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/info.json b/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/info.json new file mode 100644 index 0000000000000..0a9a86a664224 --- /dev/null +++ b/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/info.json @@ -0,0 +1,17 @@ +{ + "name":"Vow", + "type":"ERC20", + "symbol":"VOW", + "decimals": 18, + "website":"http://vowcurrency.com/", + "description":"The Vow ecosystem incentivizes a global shift from centralized issuance of currency, to decentralized issuance of currency.", + "explorer":"https://etherscan.io/token/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb", + "status":"active", + "id":"0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/vowcurrency" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/logo.png b/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/logo.png new file mode 100644 index 0000000000000..433d659d380df Binary files /dev/null and b/blockchains/ethereum/assets/0x1BBf25e71EC48B84d773809B4bA55B6F4bE946Fb/logo.png differ diff --git a/blockchains/ethereum/assets/0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed/info.json b/blockchains/ethereum/assets/0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed/info.json new file mode 100644 index 0000000000000..f820b46ef27a7 --- /dev/null +++ b/blockchains/ethereum/assets/0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed/info.json @@ -0,0 +1,21 @@ +{ + "name": "PORTAL", + "type": "ERC20", + "symbol": "PORTAL", + "decimals": 18, + "website": "https://www.portalgaming.com/", + "description": "Portal aims to unite games and gamers from various blockchain networks on its cross-chain token platform, establishing a united Web3 gaming ecosystem.", + "explorer": "https://etherscan.io/token/0x1bbe973bef3a977fc51cbed703e8ffdefe001fed", + "status": "active", + "id": "0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/PortalCoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/portal-gaming/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed/logo.png b/blockchains/ethereum/assets/0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed/logo.png new file mode 100644 index 0000000000000..cee3db74b8485 Binary files /dev/null and b/blockchains/ethereum/assets/0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed/logo.png differ diff --git a/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/info.json b/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/info.json new file mode 100644 index 0000000000000..e7bee6880547d --- /dev/null +++ b/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/info.json @@ -0,0 +1,35 @@ +{ + "name": "EURA", + "website": "https://www.angle.money/", + "description": "EURA is an over-collateralized and decentralized Euro stablecoin by the Angle Protocol.", + "explorer": "https://etherscan.io/token/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8", + "type": "ERC20", + "symbol": "EURA", + "decimals": 18, + "status": "active", + "tags": ["defi", "stablecoin"], + "id": "0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] + } + \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/logo.png b/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/logo.png new file mode 100644 index 0000000000000..b80f4f7f9341b Binary files /dev/null and b/blockchains/ethereum/assets/0x1a7e4e63778B4f12a199C062f3eFdD288afCBce8/logo.png differ diff --git a/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/info.json b/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/info.json new file mode 100644 index 0000000000000..f6da3268cec3d --- /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 0000000000000..f23fbed3cbe9e Binary files /dev/null and b/blockchains/ethereum/assets/0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c/logo.png differ diff --git a/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/info.json b/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/info.json new file mode 100644 index 0000000000000..67eaf0ab3c30f --- /dev/null +++ b/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/info.json @@ -0,0 +1,24 @@ +{ + "name": "Freeway Token", + "symbol": "FWT", + "type": "ERC20", + "decimals": 18, + "description": "Freeway Tokens (FWT) are the native utility tokens for AuBit Freeway — a ground-breaking new asset management platform built for greater total returns on the world’s top investment products with no additional risk.", + "website": "https://aubit.io/", + "explorer": "https://etherscan.io/token/0x20e7125677311Fca903A8897042b9983f22Ea295", + "status": "active", + "id": "0x20e7125677311Fca903A8897042b9983f22Ea295", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/FreewayFi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/freeway/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/logo.png b/blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/logo.png similarity index 100% rename from blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/logo.png rename to blockchains/ethereum/assets/0x20e7125677311Fca903A8897042b9983f22Ea295/logo.png diff --git a/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/info.json b/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/info.json index c35a2217418fb..f0f40c03c8d3e 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 c3045348fbd1c..5bc8414cd2469 100644 Binary files a/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png and b/blockchains/ethereum/assets/0x21BfBDa47A0B4B5b1248c767Ee49F7caA9B23697/logo.png differ diff --git a/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/info.json b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/info.json new file mode 100644 index 0000000000000..92a5919782f2c --- /dev/null +++ b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/info.json @@ -0,0 +1,24 @@ +{ + "name": "Four", + "symbol": "FOUR", + "type": "ERC20", + "decimals": 18, + "description": "It all started with a tweet. Then it became a rallying cry to fight FUD. Now it's a memecoin.", + "website": "https://www.4thecoin.com/", + "explorer": "https://etherscan.io/token/0x244b797d622d4dee8b188b03546acaabd0cf91a0", + "status": "active", + "id": "0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/4thecoin" + }, + { + "name": "telegram", + "url": "https://t.me/TheCoin4" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/logo.png b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/logo.png new file mode 100644 index 0000000000000..9a4147093b5a4 Binary files /dev/null and b/blockchains/ethereum/assets/0x244b797d622D4DEe8b188b03546ACAAbD0Cf91A0/logo.png differ diff --git a/blockchains/ethereum/assets/0x249cA82617eC3DfB2589c4c17ab7EC9765350a18/info.json b/blockchains/ethereum/assets/0x249cA82617eC3DfB2589c4c17ab7EC9765350a18/info.json new file mode 100644 index 0000000000000..dd799e66ef952 --- /dev/null +++ b/blockchains/ethereum/assets/0x249cA82617eC3DfB2589c4c17ab7EC9765350a18/info.json @@ -0,0 +1,40 @@ +{ + "name": "Verse", + "symbol": "VERSE", + "type": "ERC20", + "decimals": 18, + "description": "VERSE is Bitcoin.com's ecosystem token, providing rewards and utility to users of Bitcoin.com's products and services.", + "website": "https://verse.bitcoin.com", + "explorer": "https://etherscan.io/token/0x249ca82617ec3dfb2589c4c17ab7ec9765350a18", + "status": "active", + "id": "0x249cA82617eC3DfB2589c4c17ab7EC9765350a18", + "tags": [ + "defi" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/buy.bitcoin.news" + }, + { + "name": "twitter", + "url": "https://twitter.com/bitcoincom" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCetxkZolEBHX47BqtZktbkg" + }, + { + "name": "blog", + "url": "https://blog.bitcoin.com/" + }, + { + "name": "telegram", + "url": "https://t.me/GetVerse" + }, + { + "name": "whitepaper", + "url": "https://www.getverse.com/verse-whitepaper.pdf" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x249cA82617eC3DfB2589c4c17ab7EC9765350a18/logo.png b/blockchains/ethereum/assets/0x249cA82617eC3DfB2589c4c17ab7EC9765350a18/logo.png new file mode 100644 index 0000000000000..4a4bdff5796be Binary files /dev/null and b/blockchains/ethereum/assets/0x249cA82617eC3DfB2589c4c17ab7EC9765350a18/logo.png differ diff --git a/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/info.json b/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/info.json index 43a74dc9e5e00..10fdf47bd2205 100644 --- a/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/info.json +++ b/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "MOOV", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7", "links": [ { diff --git a/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/logo.png b/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/logo.png deleted file mode 100644 index 93258ee8e3b5d..0000000000000 Binary files a/blockchains/ethereum/assets/0x24EC2Ca132abf8F6f8a6E24A1B97943e31f256a7/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/info.json b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/info.json index 5bcaeb8a26f58..3f7689f433337 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 aab1fbdeaa8a6..fff673b54dcdf 100644 Binary files a/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png and b/blockchains/ethereum/assets/0x24cCeDEBF841544C9e6a62Af4E8c2fA6e5a46FdE/logo.png differ diff --git a/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/info.json b/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/info.json new file mode 100644 index 0000000000000..474bc9c404d62 --- /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 0000000000000..29a95e25f9b65 Binary files /dev/null and b/blockchains/ethereum/assets/0x24fcFC492C1393274B6bcd568ac9e225BEc93584/logo.png differ diff --git a/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/info.json b/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/info.json new file mode 100644 index 0000000000000..1fdc2d19cb55d --- /dev/null +++ b/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/info.json @@ -0,0 +1,21 @@ +{ + "name": "DOGE20", + "website": "https://dogecoin20.io/en", + "description": "Utilising smart contracts powered by Ethereum, DOGE20 is much more than a meme coin and brings passive earning potential to the community.", + "explorer": "https://etherscan.io/token/0x2541a36be4cd39286ed61a3e6afc2307602489d6", + "type": "ERC20", + "symbol": "DOGE20", + "decimals": 18, + "status": "active", + "id": "0x2541A36BE4cD39286ED61a3E6AFC2307602489d6", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DOGE_COIN20" + }, + { + "name": "telegram", + "url": "https://t.me/DOGE_COIN20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/logo.png b/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/logo.png new file mode 100644 index 0000000000000..23fa620361e4f Binary files /dev/null and b/blockchains/ethereum/assets/0x2541A36BE4cD39286ED61a3E6AFC2307602489d6/logo.png differ diff --git a/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json new file mode 100644 index 0000000000000..f08eed0be3691 --- /dev/null +++ b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/info.json @@ -0,0 +1,28 @@ +{ + "name": "Alvey Chain", + "type": "ERC20", + "symbol": "wALV", + "decimals": 18, + "website": "https://www.alveychain.com", + "description": "Alvey Coin is a decentralized blockchain project built on Bitcoin's UTXO model, with support for Ethereum Virtual Machine based smart contracts, and secured by a Proof of Stake consensus.", + "explorer": "https://etherscan.io/token/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497", + "status": "active", + "id": "0x256D1fCE1b1221e8398f65F9B36033CE50B2D497", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/AlveyChain" + }, + { + "name": "github", + "url": "https://github.com/AlveyCoin" + }, + { + "name": "telegram", + "url": "https://t.me/AlveyChain" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png new file mode 100644 index 0000000000000..697332506680a Binary files /dev/null and b/blockchains/ethereum/assets/0x256D1fCE1b1221e8398f65F9B36033CE50B2D497/logo.png differ diff --git a/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/info.json b/blockchains/ethereum/assets/0x25931894a86D47441213199621F1F2994e1c39Aa/info.json new file mode 100644 index 0000000000000..a9c3d7881b9f0 --- /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 0000000000000..11296a606fc2c 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 031556649b84f..0a551ae8aea50 100644 --- a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json +++ b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/info.json @@ -1,14 +1,42 @@ { - "name": "BitcoinSoV", + "name": "BSOV Token", "symbol": "BSOV", "type": "ERC20", "decimals": 8, - "description": "-", - "website": "https://www.btcsov.com/", + "description": "BSOV Token is not a Bitcoin fork, but shares Bitcoin’s supply distribution with a deflationary design. This cryptocurrency is the first mineable and deflationary-by-design crypto commodity built on the Ethereum blockchain (ERC20).", + "website": "https://www.bsovtoken.com/", "explorer": "https://etherscan.io/token/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1", "status": "active", "id": "0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1", "tags": [ - "deflationary" + "deflationary", + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/BitcoinSoVCommunity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoinsov/" + }, + { + "name": "whitepaper", + "url": "https://bsovtoken.com/wp-content/uploads/2020/06/BitcoinSoV-BSoV_-A-Mineable-Deflationary-Store-of-Value-1.pdf" + }, + { + "name": "telegram_news", + "url": "https://t.me/BSOVnews" + }, + { + "name": "blog", + "url": "https://bsovtoken.com/stories" + }, + { + "name": "twitter", + "url": "https://twitter.com/bsov_" + } ] -} \ No newline at end of file +} + diff --git a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png index 94f2855f0948a..525f7eb1d24fe 100644 Binary files a/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png and b/blockchains/ethereum/assets/0x26946adA5eCb57f3A1F91605050Ce45c482C9Eb1/logo.png differ diff --git a/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/info.json b/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/info.json new file mode 100644 index 0000000000000..be537421ac6d4 --- /dev/null +++ b/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/info.json @@ -0,0 +1,21 @@ +{ + "name": "MOO DENG", + "website": "https://moodeng.vip/", + "description": "oodeng is a community-driven meme coin on Ethereum, inspired by a famous hippo from a Thai zoo.", + "explorer": "https://etherscan.io/token/0x28561b8a2360f463011c16b6cc0b0cbef8dbbcad", + "symbol": "MOODENG", + "type": "ERC20", + "decimals": 9, + "status": "active", + "id": "0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moo-deng-token/" + }, + { + "name": "twitter", + "url": "https://twitter.com/moodengctoeth" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/logo.png b/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/logo.png new file mode 100644 index 0000000000000..c91ace875a734 Binary files /dev/null and b/blockchains/ethereum/assets/0x28561B8A2360F463011c16b6Cc0B0cbEF8dbBcad/logo.png differ diff --git a/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/info.json b/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/info.json new file mode 100644 index 0000000000000..4162bebb7db16 --- /dev/null +++ b/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Book of Ethereum", + "website": "https://bookofeth.xyz/", + "description": "The Book of Ethereum project is designed as a community-driven meme token that aims to catalog all memes within the Ethereum community. It was launched fairly by the development team with the goal of creating a decentralized repository for meme shari...", + "explorer": "https://etherscan.io/token/0x289ff00235d2b98b0145ff5d4435d3e92f9540a6", + "type": "ERC20", + "symbol": "BOOE", + "decimals": 18, + "status": "active", + "id": "0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Bookof_Eth" + }, + { + "name": "telegram", + "url": "https://t.me/BookofEthereum" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/logo.png b/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/logo.png new file mode 100644 index 0000000000000..31a2f4677783b Binary files /dev/null and b/blockchains/ethereum/assets/0x289Ff00235D2b98b0145ff5D4435d3e92f9540a6/logo.png differ diff --git a/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/info.json b/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/info.json new file mode 100644 index 0000000000000..7372e944bb3e6 --- /dev/null +++ b/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/info.json @@ -0,0 +1,17 @@ +{ + "name": "HashAI", + "type": "ERC20", + "symbol": "HASHAI", + "decimals": 18, + "website": "https://hashai.cc", + "description": "Where Artificial Intelligence Meets Mining Excellence With vast Crypto and Web3 experience, the Hash AI team has established the infrastructure, partnerships, and distribution network for a successful Crypto mining company. This involves mining rig supplies, rig hosting and GPU sales, and a mining facility with over 500 top GPUs.", + "explorer": "https://etherscan.io/token/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076", + "status": "active", + "id": "0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/HashAi_Eth" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/logo.png b/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/logo.png new file mode 100644 index 0000000000000..5a195080d3214 Binary files /dev/null and b/blockchains/ethereum/assets/0x292fcDD1B104DE5A00250fEBbA9bC6A5092A0076/logo.png differ diff --git a/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/info.json b/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/info.json new file mode 100644 index 0000000000000..c5976116da57f --- /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 0000000000000..67e5504e3d6a6 Binary files /dev/null and b/blockchains/ethereum/assets/0x2DC917b722184ECE1dCb9Bb9DDDfB1D63CcD25EB/logo.png differ diff --git a/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/info.json b/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/info.json new file mode 100644 index 0000000000000..80372885acc7b --- /dev/null +++ b/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/info.json @@ -0,0 +1,21 @@ +{ + "name": "HACHI", + "website": "https://hachitoken.com/", + "description": "HACHI (Hachiko) is without a doubt the most famous dog of the Akita Inu breed. Loyalty Above All.", + "explorer": "https://etherscan.io/token/0x2a7e415c169ce3a580c6f374dc26f6aaad1eccfe", + "type": "ERC20", + "symbol": "HACHI", + "decimals": 18, + "status": "active", + "id": "0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe", + "links": [ + { + "name": "telegram", + "url": "https://t.me/hachitoken" + }, + { + "name": "twitter", + "url": "https://twitter.com/RealHachiToken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/logo.png b/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/logo.png new file mode 100644 index 0000000000000..8bbed2d7b7c6b Binary files /dev/null and b/blockchains/ethereum/assets/0x2a7e415C169cE3a580c6F374Dc26f6Aaad1EccFe/logo.png differ diff --git a/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/info.json b/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/info.json new file mode 100644 index 0000000000000..ce5db10d495de --- /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 0000000000000..a3fb80da0a20b Binary files /dev/null and b/blockchains/ethereum/assets/0x2aD9adDD0d97EC3cDBA27F92bF6077893b76Ab0b/logo.png differ diff --git a/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/info.json b/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/info.json new file mode 100644 index 0000000000000..dc5b3f96a566b --- /dev/null +++ b/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/info.json @@ -0,0 +1,21 @@ +{ + "name": "WASSIE", + "website": "http://www.wassie.wtf/", + "description": "The ultimate memecoin of the wassie revolution.", + "explorer": "https://etherscan.io/token/0x2c95d751da37a5c1d9c5a7fd465c1d50f3d96160", + "type": "ERC20", + "symbol": "WASSIE", + "decimals": 18, + "status": "active", + "id": "0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/WassieOnETH" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wassie/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/logo.png b/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/logo.png new file mode 100644 index 0000000000000..8139b0e91aee1 Binary files /dev/null and b/blockchains/ethereum/assets/0x2c95D751DA37A5C1d9c5a7Fd465c1d50F3d96160/logo.png differ diff --git a/blockchains/ethereum/assets/0x2de72aDa48BDF7Bac276256D3F016fE058490C34/logo.png b/blockchains/ethereum/assets/0x2de72aDa48BDF7Bac276256D3F016fE058490C34/logo.png deleted file mode 100644 index 52a97499126e8..0000000000000 Binary files a/blockchains/ethereum/assets/0x2de72aDa48BDF7Bac276256D3F016fE058490C34/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x31429d1856aD1377A8A0079410B297e1a9e214c2/info.json b/blockchains/ethereum/assets/0x31429d1856aD1377A8A0079410B297e1a9e214c2/info.json new file mode 100644 index 0000000000000..91fa2d98633da --- /dev/null +++ b/blockchains/ethereum/assets/0x31429d1856aD1377A8A0079410B297e1a9e214c2/info.json @@ -0,0 +1,21 @@ +{ + "name": "ANGLE", + "website": "https://app.angle.money/#/", + "description": "Angle is an over-collateralized, decentralized and capital-efficient stablecoin protocol.", + "explorer": "https://etherscan.io/token/0x31429d1856ad1377a8a0079410b297e1a9e214c2", + "type": "ERC20", + "symbol": "ANGLE", + "decimals": 18, + "status": "active", + "id": "0x31429d1856aD1377A8A0079410B297e1a9e214c2", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/angle/" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x31429d1856aD1377A8A0079410B297e1a9e214c2/logo.png b/blockchains/ethereum/assets/0x31429d1856aD1377A8A0079410B297e1a9e214c2/logo.png new file mode 100644 index 0000000000000..b5b2da29aa05f Binary files /dev/null and b/blockchains/ethereum/assets/0x31429d1856aD1377A8A0079410B297e1a9e214c2/logo.png differ diff --git a/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json b/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json index 738e01958d58a..f3e92c0a8830c 100644 --- a/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json +++ b/blockchains/ethereum/assets/0x3155BA85D5F96b2d030a4966AF206230e46849cb/info.json @@ -7,6 +7,6 @@ "type": "ERC20", "symbol": "RUNE", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x3155BA85D5F96b2d030a4966AF206230e46849cb" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/info.json b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/info.json new file mode 100644 index 0000000000000..23e4b1e101cab --- /dev/null +++ b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/info.json @@ -0,0 +1,25 @@ +{ + "name": "Monerium EUR emoney", + "website": "https://monerium.com", + "description": "The Monerium EURe is the first fully authorized and regulated euro stablecoin. It's the only onchain fiat directly transferable between bank accounts and web3 wallets.", + "explorer": "https://etherscan.io/token/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f", + "type": "ERC20", + "symbol": "EURe", + "decimals": 18, + "status": "active", + "id": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/monerium" + }, + { + "name": "telegram", + "url": "https://t.me/+o89F3aj9PsUzMDQ0" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monerium/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/logo.png b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/logo.png new file mode 100644 index 0000000000000..20268b491a66b Binary files /dev/null and b/blockchains/ethereum/assets/0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f/logo.png differ diff --git a/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/info.json b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/info.json new file mode 100644 index 0000000000000..83622f2809702 --- /dev/null +++ b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/info.json @@ -0,0 +1,25 @@ +{ + "name": "Adventure Gold", + "type": "ERC20", + "symbol": "AGLD", + "decimals": 18, + "website": "https://www.lootproject.com/", + "description": "Adventure Gold is the native ERC-20 token of the Loot non-fungible token (NFT) project. Loot is a text-based, randomized adventure gear generated and stored on-chain, created by social media network Vine co-founder Dom Hofmann.", + "explorer": "https://etherscan.io/token/0x32353a6c91143bfd6c7d363b546e62a9a2489a20", + "status": "active", + "id": "0x32353A6C91143bfd6C7d363B546e62a9A2489A20", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/lootproject" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/adventure-gold/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/adventure-gold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/logo.png b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/logo.png new file mode 100644 index 0000000000000..7651d7bba1d6a Binary files /dev/null and b/blockchains/ethereum/assets/0x32353A6C91143bfd6C7d363B546e62a9A2489A20/logo.png differ diff --git a/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/info.json b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/info.json new file mode 100644 index 0000000000000..d1a683d1eb409 --- /dev/null +++ b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/info.json @@ -0,0 +1,47 @@ +{ + "name": "Bad Idea AI", + "type": "ERC20", + "symbol": "BAD", + "decimals": 18, + "website": "https://www.badidea.ai", + "description": "$BAD is a decentralized experiment combining Blockchain, AI, and DAOs. Aiming to ensure AI works for humanity, it's a risky yet innovative approach. Created for education, entertainment, and experimentation, it represents a unique response to AI's growing influence.", + "explorer": "https://etherscan.io/token/0x32b86b99441480a7e5bd3a26c124ec2373e3f015", + "status": "active", + "id": "0x32b86b99441480a7E5BD3A26c124ec2373e3F015", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/badideaai" + }, + { + "name": "source_code", + "url": "https://gitlab.com/badideacoin/badideai/-/blob/main/Badideai" + }, + { + "name": "discord", + "url": "https://discord.com/invite/badideaai" + }, + { + "name": "whitepaper", + "url": "https://static1.squarespace.com/static/64568e2523471d05956228f1/t/64570517d89163351580ef5c/1683424539459/BAD+IDEA+AI+WHITEPAPER+v1.0.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bad-idea-ai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bad-idea-ai/" + }, + { + "name": "telegram", + "url": "https://t.me/badideaai" + } + ], + "tags": [ + "governance", + "memes", + "deflationary", + "staking" + ] +} diff --git a/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/logo.png b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/logo.png new file mode 100644 index 0000000000000..afcd7c796124d Binary files /dev/null and b/blockchains/ethereum/assets/0x32b86b99441480a7E5BD3A26c124ec2373e3F015/logo.png differ diff --git a/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json b/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/info.json index c384d0616b9bb..ba94351537cad 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 f029ab771e021..43dbc8d7b3050 100644 Binary files a/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/logo.png and b/blockchains/ethereum/assets/0x3301Ee63Fb29F863f2333Bd4466acb46CD8323E6/logo.png differ diff --git a/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/info.json b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/info.json new file mode 100644 index 0000000000000..c8470458c8132 --- /dev/null +++ b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/info.json @@ -0,0 +1,32 @@ +{ + "name": "ElmoERC", + "symbol": "ELMO", + "type": "ERC20", + "decimals": 18, + "description": "ELMOERC is all about the things we love about meme, burn and earn! We reward our long-term diamond holders through massive burns paid by the sellers through tax. we have a combined experience of over 15 years in the Memespace.", + "website": "https://www.elmoerc.io/", + "explorer": "https://etherscan.io/token/0x335f4e66b9b61cee5ceade4e727fcec20156b2f0", + "status": "active", + "id": "0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/RealElmoERC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elmoerc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/elmoerc" + }, + { + "name": "telegram", + "url": "https://t.me/RealElmoERC" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/logo.png b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/logo.png new file mode 100644 index 0000000000000..a8a733267a8d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x335F4e66B9B61CEE5CeaDE4e727FCEC20156B2F0/logo.png differ diff --git a/blockchains/ethereum/assets/0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE/info.json b/blockchains/ethereum/assets/0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE/info.json new file mode 100644 index 0000000000000..cbfc93fd7b088 --- /dev/null +++ b/blockchains/ethereum/assets/0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE/info.json @@ -0,0 +1,21 @@ +{ + "name": "Landwolf", + "website": "https://landwolfeth.io/", + "description": "#Landwolf is Pepe’s best friend.", + "explorer": "https://etherscan.io/token/0x33abe795f9c1b6136608c36db211bd7590f5fdae", + "type": "ERC20", + "symbol": "WOLF", + "decimals": 18, + "status": "active", + "id": "0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ogLandwolf0x33" + }, + { + "name": "twitter", + "url": "https://twitter.com/Landwolfeth" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE/logo.png b/blockchains/ethereum/assets/0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE/logo.png new file mode 100644 index 0000000000000..fe351ef1589a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x33ABE795f9c1b6136608c36dB211bD7590f5FdAE/logo.png differ diff --git a/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/info.json b/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/info.json new file mode 100644 index 0000000000000..1072357d22b81 --- /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 0000000000000..21e38dbc619b5 Binary files /dev/null and b/blockchains/ethereum/assets/0x33C04Bed4533e31f2Afb8AC4a61A48Eda38C4fA0/logo.png differ diff --git a/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/info.json b/blockchains/ethereum/assets/0x3429d03c6F7521AeC737a0BBF2E5ddcef2C3Ae31/info.json new file mode 100644 index 0000000000000..b3bc9a2996d55 --- /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 0000000000000..1b74f8438e143 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 d3b8c57fc2446..6a081b77a73fe 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", @@ -30,5 +30,8 @@ "name": "coingecko", "url": "https://coingecko.com/en/coins/mantra-dao/" } + ], + "tags": [ + "governance" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png b/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png index 2a061ac5484a6..2c15abc9469bc 100644 Binary files a/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png and b/blockchains/ethereum/assets/0x3593D125a4f7849a1B059E64F4517A86Dd60c95d/logo.png differ diff --git a/blockchains/ethereum/assets/0x3595e426A7808E2482667eE4E453ef280fbB9cF4/info.json b/blockchains/ethereum/assets/0x3595e426A7808E2482667eE4E453ef280fbB9cF4/info.json new file mode 100644 index 0000000000000..b69f0061f75e7 --- /dev/null +++ b/blockchains/ethereum/assets/0x3595e426A7808E2482667eE4E453ef280fbB9cF4/info.json @@ -0,0 +1,17 @@ +{ + "name": "Nose Candy", + "type": "ERC20", + "symbol": "COCAINE", + "decimals": 9, + "website": "https://nosecandy.io/", + "description": "Nose Candy - The worlds first DeFi project that runs on Snortonomics.", + "explorer": "https://etherscan.io/token/0x3595e426a7808e2482667ee4e453ef280fbb9cf4", + "status": "active", + "id": "0x3595e426A7808E2482667eE4E453ef280fbB9cF4", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/nosecandytoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3595e426A7808E2482667eE4E453ef280fbB9cF4/logo.png b/blockchains/ethereum/assets/0x3595e426A7808E2482667eE4E453ef280fbB9cF4/logo.png new file mode 100644 index 0000000000000..e23c036fd7e5d Binary files /dev/null and b/blockchains/ethereum/assets/0x3595e426A7808E2482667eE4E453ef280fbB9cF4/logo.png differ diff --git a/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/info.json b/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/info.json new file mode 100644 index 0000000000000..c197b953323bd --- /dev/null +++ b/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/info.json @@ -0,0 +1,21 @@ +{ + "name": "pepe in a memes world", + "type": "ERC20", + "symbol": "PEW", + "decimals": 18, + "website": "https://www.pepeinamemesworld.com/", + "description": "Pepe in a Memes World 'Pepe in a Memes World' is a vibrant and humorous meme project that celebrates the iconic Pepe the Frog as he navigates through the whimsical and unpredictable universe of internet memes.", + "explorer": "https://etherscan.io/token/0x382ea807a61a418479318efd96f1efbc5c1f2c21", + "status": "active", + "id": "0x382ea807A61a418479318Efd96F1EFbC5c1F2C21", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/pewoneth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepe-in-a-memes-world/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/logo.png b/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/logo.png new file mode 100644 index 0000000000000..633d498658230 Binary files /dev/null and b/blockchains/ethereum/assets/0x382ea807A61a418479318Efd96F1EFbC5c1F2C21/logo.png differ diff --git a/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json b/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json index c9aecb96a527c..37197745e61ba 100644 --- a/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json +++ b/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/info.json @@ -3,9 +3,9 @@ "type": "ERC20", "symbol": "THETA", "decimals": 18, - "website": "", - "description": "-", + "website": "https://www.thetatoken.org/", + "description": "--", "explorer": "https://etherscan.io/token/0x3883f5e181fccaf8410fa61e12b59bad963fb645", - "status": "active", + "status": "abandoned", "id": "0x3883f5e181fccaF8410FA61e12b59BAd963fb645" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/logo.png b/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/logo.png deleted file mode 100644 index 4c6687735e296..0000000000000 Binary files a/blockchains/ethereum/assets/0x3883f5e181fccaF8410FA61e12b59BAd963fb645/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x38C2a4a7330b22788374B8Ff70BBa513C8D848cA/info.json b/blockchains/ethereum/assets/0x38C2a4a7330b22788374B8Ff70BBa513C8D848cA/info.json new file mode 100644 index 0000000000000..0ec6187208665 --- /dev/null +++ b/blockchains/ethereum/assets/0x38C2a4a7330b22788374B8Ff70BBa513C8D848cA/info.json @@ -0,0 +1,17 @@ +{ + "name": "Truflation", + "website": "https://truflation.com/", + "description": "Truflation leverages real-time, transparent financial data of over 13 million items to enhance the tokenization of real-world assets and support DeFi applications. It is a data infrastructure for diverse markets, facilitated by the Truflation Stream Network (TSN) and governed by the TRUF token.", + "explorer": "https://etherscan.io/token/0x38c2a4a7330b22788374b8ff70bba513c8d848ca", + "type": "ERC20", + "symbol": "TRUF", + "decimals": 18, + "status": "active", + "id": "0x38C2a4a7330b22788374B8Ff70BBa513C8D848cA", + "links": [ + { + "name": "telegram", + "url": "https://t.me/truflation" + } + ] +} diff --git a/blockchains/ethereum/assets/0x38C2a4a7330b22788374B8Ff70BBa513C8D848cA/logo.png b/blockchains/ethereum/assets/0x38C2a4a7330b22788374B8Ff70BBa513C8D848cA/logo.png new file mode 100644 index 0000000000000..facce785523b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x38C2a4a7330b22788374B8Ff70BBa513C8D848cA/logo.png differ diff --git a/blockchains/ethereum/assets/0x38E68A37E401F7271568CecaAc63c6B1e19130B4/info.json b/blockchains/ethereum/assets/0x38E68A37E401F7271568CecaAc63c6B1e19130B4/info.json new file mode 100644 index 0000000000000..6c47d18c00271 --- /dev/null +++ b/blockchains/ethereum/assets/0x38E68A37E401F7271568CecaAc63c6B1e19130B4/info.json @@ -0,0 +1,25 @@ +{ + "name": "Banana", + "symbol": "BANANA", + "type": "ERC20", + "decimals": 18, + "description": "Banana Gun is a Telegram DEX Trading Bot, featuring: Auto Sniper, MEV-resistant swaps, Anti Rug & Re-org Protection.", + "website": "https://bananagun.io/", + "explorer": "https://etherscan.io/token/0x38e68a37e401f7271568cecaac63c6b1e19130b4", + "status": "active", + "id": "0x38E68A37E401F7271568CecaAc63c6B1e19130B4", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Banana_Gun_Portal" + }, + { + "name": "twitter", + "url": "https://twitter.com/BananaGunBot" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/banana-gun/" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x38E68A37E401F7271568CecaAc63c6B1e19130B4/logo.png b/blockchains/ethereum/assets/0x38E68A37E401F7271568CecaAc63c6B1e19130B4/logo.png new file mode 100644 index 0000000000000..f76637d764678 Binary files /dev/null and b/blockchains/ethereum/assets/0x38E68A37E401F7271568CecaAc63c6B1e19130B4/logo.png differ diff --git a/blockchains/ethereum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/ethereum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 0000000000000..e1fce97a331f1 --- /dev/null +++ b/blockchains/ethereum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nya", + "type": "ERC20", + "symbol": "NYA", + "decimals": 18, + "website": "https://www.nya.vip", + "description": "Explore the cultural phenomenon of Nya - the playful cat sound that's become a symbol of joy and connection. Discover how this simple word unites fans worldwide.", + "explorer": "https://etherscan.io/token/0x38f9bf9dce51833ec7f03c9dc218197999999999", + "status": "active", + "id": "0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/NyaOnEarth" + }, + { + "name": "telegram", + "url": "https://t.me/NyaOnEarth" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "docs", + "url": "https://wiki.nya.vip" + } + ], + "tags": [ + "memes", + "nft" + ] +} diff --git a/blockchains/ethereum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png b/blockchains/ethereum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png new file mode 100644 index 0000000000000..c34f31c6b2335 Binary files /dev/null and b/blockchains/ethereum/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json b/blockchains/ethereum/assets/0x38e382F74dfb84608F3C1F10187f6bEf5951DE93/info.json new file mode 100644 index 0000000000000..024d168f7c538 --- /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 0000000000000..9fa7dad0ee02f 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 0000000000000..66015b98175a6 --- /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 0000000000000..b86b0fca332ad Binary files /dev/null and b/blockchains/ethereum/assets/0x39b46B212bDF15b42B166779b9d1787A68b9D0c3/logo.png differ diff --git a/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/info.json b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/info.json new file mode 100644 index 0000000000000..c384b47971867 --- /dev/null +++ b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/info.json @@ -0,0 +1,25 @@ +{ + "name": "WAGMI GAMES", + "type": "ERC20", + "symbol": "WAGMIGAMES", + "decimals": 18, + "website": "https://www.wagmigame.io/", + "description": "WAGMI Defense is being developed as the Clash Royale of crypto with a futuristic twist. This epic aliens versus humans game is being built on unity as a browser based, mobile responsive game with plans to launch on IOS and Apple Store when it becomes crypto accepted.", + "explorer": "https://etherscan.io/token/0x3b604747ad1720c01ded0455728b62c0d2f100f0", + "status": "active", + "id": "0x3B604747ad1720C01ded0455728b62c0d2F100F0", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WAGMIOfficialGroup" + }, + { + "name": "twitter", + "url": "https://twitter.com/wagmigameco" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wagmi-game-2/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/logo.png b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/logo.png new file mode 100644 index 0000000000000..53ef7ec341eec Binary files /dev/null and b/blockchains/ethereum/assets/0x3B604747ad1720C01ded0455728b62c0d2F100F0/logo.png differ diff --git a/blockchains/ethereum/assets/0x3E5A19c91266aD8cE2477B91585d1856B84062dF/info.json b/blockchains/ethereum/assets/0x3E5A19c91266aD8cE2477B91585d1856B84062dF/info.json new file mode 100644 index 0000000000000..2046514d3f548 --- /dev/null +++ b/blockchains/ethereum/assets/0x3E5A19c91266aD8cE2477B91585d1856B84062dF/info.json @@ -0,0 +1,25 @@ +{ + "name": "Ancient8", + "website": "https://ancient8.gg/", + "description": "Ancient8 builds Ethereum L2 for Gaming on OP Stack with Celestia Underneath, offering a suite of Web3 gaming infrastructure tools that serve as the distribution and marketing channel for games globally.", + "explorer": "https://etherscan.io/token/0x3E5A19c91266aD8cE2477B91585d1856B84062dF", + "type": "ERC20", + "symbol": "A8", + "decimals": 18, + "status": "active", + "id": "0x3E5A19c91266aD8cE2477B91585d1856B84062dF", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Ancient8_gg" + }, + { + "name": "telegram", + "url": "https://t.me/ancient8_gg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ancient8/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3E5A19c91266aD8cE2477B91585d1856B84062dF/logo.png b/blockchains/ethereum/assets/0x3E5A19c91266aD8cE2477B91585d1856B84062dF/logo.png new file mode 100644 index 0000000000000..236cc31f374c3 Binary files /dev/null and b/blockchains/ethereum/assets/0x3E5A19c91266aD8cE2477B91585d1856B84062dF/logo.png differ diff --git a/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/info.json b/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/info.json new file mode 100644 index 0000000000000..86e1da63948b0 --- /dev/null +++ b/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cryptify AI", + "type": "ERC20", + "symbol": "CRAI", + "decimals": 18, + "website": "https://www.cryptify.ai/", + "description": "Cryptify AI is a platform designed to optimize influencer marketing by using AI and Big Data analytics.", + "explorer": "https://etherscan.io/token/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7", + "status": "active", + "id": "0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Cryptifyai" + }, + { + "name": "telegram", + "url": "https://t.me/cryptifyai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/logo.png b/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/logo.png new file mode 100644 index 0000000000000..1e727e0d538d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x3F66aE0c8E9Fb57f661aF4Ba8C8445D36ec5d7F7/logo.png differ diff --git a/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/info.json b/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/info.json new file mode 100644 index 0000000000000..21f55a20f2ee5 --- /dev/null +++ b/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/info.json @@ -0,0 +1,25 @@ +{ + "name": "5ire", + "website": "https://www.5ire.org/", + "description": "5ire is an EVM-compatible sustainability-oriented smart contract platform that focuses on developing a sustainable and for-benefit ecosystem based on the UN SDGs. To enable this, our goal is to build a computing platform that promotes and advocates these activities to achieve the goals.", + "explorer": "https://etherscan.io/token/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F", + "type": "ERC20", + "symbol": "5IRE", + "decimals": 18, + "status": "active", + "id": "0x3bd7d4F524D09F4e331577247A048D56e4b67a7F", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/5ireChain" + }, + { + "name": "telegram", + "url": "https://t.me/OfficialFireChain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/5ire/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/logo.png b/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/logo.png new file mode 100644 index 0000000000000..e8d41c63ccbe8 Binary files /dev/null and b/blockchains/ethereum/assets/0x3bd7d4F524D09F4e331577247A048D56e4b67a7F/logo.png differ diff --git a/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/info.json b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/info.json new file mode 100644 index 0000000000000..45fa8b91ba311 --- /dev/null +++ b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mantle", + "type": "ERC20", + "symbol": "MNT", + "decimals": 18, + "website": "https://www.mantle.xyz/", + "description": "Mantle is a DAO-led web3 ecosystem whose goal is the mass adoption of decentralized and token-governed technologies. It comprises Mantle products such as Mantle Network, Mantle Governance (DAO), and Mantle Treasury. Mantle token ($MNT) is the unified product and governance token of the ecosystem.", + "explorer": "https://etherscan.io/token/0x3c3a81e81dc49a522a592e7622a7e711c06bf354", + "status": "active", + "id": "0x3c3a81e81dc49A522A592e7622A7E711c06bf354", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/0xMantle" + }, + { + "name": "telegram", + "url": "https://t.me/mantlenetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/logo.png b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/logo.png new file mode 100644 index 0000000000000..d9721da402f65 Binary files /dev/null and b/blockchains/ethereum/assets/0x3c3a81e81dc49A522A592e7622A7E711c06bf354/logo.png differ diff --git a/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/info.json b/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/info.json new file mode 100644 index 0000000000000..692bc489d7b44 --- /dev/null +++ b/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/info.json @@ -0,0 +1,28 @@ +{ + "name": "PeiPei", + "type": "ERC20", + "symbol": "PEIPEI", + "decimals": 18, + "website": "https://peipeicoin.vip", + "description": "PEIPEI Token combines the iconic Pepe meme with the enchanting essence of Asian culture, offering a refreshing and captivating digital experience.", + "explorer": "https://etherscan.io/token/0x3ffeea07a27fab7ad1df5297fa75e77a43cb5790", + "status": "active", + "id": "0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790", + "links": [ + { + "name": "telegram", + "url": "https://t.me/peipeicoinerc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/peipei-coin/#Markets" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/peipeicoin-vip" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/logo.png b/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/logo.png new file mode 100644 index 0000000000000..5dcfe7964a7b6 Binary files /dev/null and b/blockchains/ethereum/assets/0x3fFEea07a27Fab7ad1df5297fa75e77a43CB5790/logo.png differ diff --git a/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/info.json b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/info.json new file mode 100644 index 0000000000000..992bb23a5f91a --- /dev/null +++ b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Gho", + "website": "https://gho.xyz/", + "description": "GHO is a native decentralized, overcollateralized digital asset pegged to USD.", + "explorer": "https://etherscan.io/token/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f", + "type": "ERC20", + "symbol": "GHO", + "decimals": 18, + "status": "active", + "id": "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GHOAave" + }, + { + "name": "github", + "url": "https://github.com/aave/gho-core/" + } + ] +} diff --git a/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/logo.png b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/logo.png new file mode 100644 index 0000000000000..ff0877b424ba7 Binary files /dev/null and b/blockchains/ethereum/assets/0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f/logo.png differ diff --git a/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/info.json b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/info.json new file mode 100644 index 0000000000000..369c60409f8ba --- /dev/null +++ b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/info.json @@ -0,0 +1,52 @@ +{ + "name": "HELLO", + "type": "ERC20", + "symbol": "HELLO", + "decimals": 18, + "website": "https://www.hello.one/", + "description": "HELLO Labs is the future of crypto and entertainment creating TV shows, games, NFTs and much more. The ecosystem is built on the HELLO Token allowing exclusive access to watch our shows, play our games and own our NFTs.", + "explorer": "https://etherscan.io/token/0x411099C0b413f4fedDb10Edf6a8be63BD321311C", + "status": "active", + "id": "0x411099C0b413f4fedDb10Edf6a8be63BD321311C", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/thehellolabs" + }, + { + "name": "github", + "url": "https://github.com/Hello1Official" + }, + { + "name": "telegram", + "url": "https://t.me/HELLOLabs" + }, + { + "name": "blog", + "url": "https://www.hello.one/news" + }, + { + "name": "discord", + "url": "https://discord.com/hellolabs" + }, + { + "name": "medium", + "url": "https://helloclub.medium.com" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/HELLOLabs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hello-labs/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hello" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/logo.png b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/logo.png new file mode 100644 index 0000000000000..fedfcf6cb0277 Binary files /dev/null and b/blockchains/ethereum/assets/0x411099C0b413f4fedDb10Edf6a8be63BD321311C/logo.png differ diff --git a/blockchains/ethereum/assets/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9/info.json b/blockchains/ethereum/assets/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9/info.json new file mode 100644 index 0000000000000..056a7850c7630 --- /dev/null +++ b/blockchains/ethereum/assets/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9/info.json @@ -0,0 +1,48 @@ +{ + "name": "dotmoovs", + "type": "ERC20", + "symbol": "MOOV", + "website": "https://www.dotmoovs.com/", + "description": "dotmoovs is leading the way in AI Human Biomechanics, pioneering advancements in critical areas such sports, smart cities, and healthcare sectors. Our platform capitalizes on the importance of Human Movement. With a B2B API and a user friendly mobile app, our project is designed to attract all audiences, both users and companies.", + "explorer": "https://etherscan.io/token/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9", + "decimals": 18, + "status": "active", + "id": "0x4116f14b6d462B32a1C10F98049E4B1765e34FA9", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dotmoovs" + }, + { + "name": "twitter", + "url": "https://twitter.com/dotmoovs" + }, + { + "name": "telegram", + "url": "https://t.me/dotmoovs" + }, + { + "name": "telegram_news", + "url": "https://t.me/dotmoovs_announcements" + }, + { + "name": "medium", + "url": "https://dotmoovs.medium.com" + }, + { + "name": "github", + "url": "https://github.com/dotmoovss" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/dotmoovs" + } + ], + "tags":[ + "nft", + "governance", + "defi", + "staking", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9/logo.png b/blockchains/ethereum/assets/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9/logo.png new file mode 100644 index 0000000000000..e0fb5c3e196bd Binary files /dev/null and b/blockchains/ethereum/assets/0x4116f14b6d462B32a1C10F98049E4B1765e34FA9/logo.png differ diff --git a/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/info.json b/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/info.json index 9274bd6ef4585..eec0c19faa62b 100644 --- a/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/info.json +++ b/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/info.json @@ -1,33 +1,33 @@ { - "name": "Qredo", + "name": "Open Custody Protocol", "type": "ERC20", - "symbol": "QRDO", + "symbol": "OPEN", "decimals": 8, - "website": "https://qredo.com/", - "description": "Qredo is a blockchain infrastructure that delivers interoperability, fast settlement, and decentralized custody.", + "website": "https://opencustody.org/", + "description": "Open Custody Protocol brings an omnichain primitive for modular custody.", "explorer": "https://etherscan.io/token/0x4123a133ae3c521fd134d7b13a2dec35b56c2463", "status": "active", "id": "0x4123a133ae3c521FD134D7b13A2dEC35b56c2463", "links": [ { "name": "twitter", - "url": "https://twitter.com/QredoNetwork" + "url": "https://twitter.com/opencustody" }, { "name": "telegram", - "url": "https://t.me/QredoNetwork" + "url": "https://t.me/OpenCustody" }, { "name": "telegram_news", - "url": "https://t.me/qredoannouncements" + "url": "https://t.me/OpenCustody_News" }, { "name": "whitepaper", - "url": "https://qredo.com/qredo-white-paper" + "url": "https://docs.opencustody.org/" }, { "name": "youtube", - "url": "https://youtube.com/c/qredonetwork" + "url": "https://youtube.com/channel/UCyMjpYXfzkam99yuPDiaqmQ" }, { "name": "coingecko", @@ -39,7 +39,7 @@ }, { "name": "blog", - "url": "https://qredo.com/media-center" + "url": "https://opencustody.org/blog" }, { "name": "discord", @@ -47,7 +47,10 @@ }, { "name": "docs", - "url": "https://support.qredo.com/" + "url": "https://docs.opencustody.org/" } - ] + ], + "tags": [ + "defi" + ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/logo.png b/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/logo.png index fac9b363cfd8b..40886038fdc7d 100644 Binary files a/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/logo.png and b/blockchains/ethereum/assets/0x4123a133ae3c521FD134D7b13A2dEC35b56c2463/logo.png differ diff --git a/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/info.json b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/info.json new file mode 100644 index 0000000000000..7045ac6bfd1ec --- /dev/null +++ b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/info.json @@ -0,0 +1,25 @@ +{ + "name": "Refund", + "website": "https://refundcoin.fund/", + "description": "Refund is an exciting new crypto project that has recently made its debut on the Ethereum blockchain, poised to ignite another explosion in the ever-evolving world of cryptocurrencies.", + "explorer": "https://etherscan.io/token/0x415ff1afc201EeC50BeFF210a2F456674046920b", + "type": "ERC20", + "symbol": "REFUND", + "decimals": 18, + "status": "active", + "id": "0x415ff1afc201EeC50BeFF210a2F456674046920b", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/refundcoin/" + }, + { + "name": "twitter", + "url": "https://twitter.com/RefundCoinErc20" + }, + { + "name": "telegram", + "url": "https://t.me/RefundErc20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/logo.png b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/logo.png new file mode 100644 index 0000000000000..037c1f4fba98f Binary files /dev/null and b/blockchains/ethereum/assets/0x415ff1afc201EeC50BeFF210a2F456674046920b/logo.png differ diff --git a/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json new file mode 100644 index 0000000000000..c2dcf43681c53 --- /dev/null +++ b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json @@ -0,0 +1,21 @@ +{ + "name": "FantasyGold", + "website": "https://fantasygold.co/cgi-sys/suspendedpage.cgi", + "description": "FantasyGold was built to become a multi-purpose platform offering Ethereum Virtual Machine based smart contracts and lightning fast transactions.", + "explorer": "https://etherscan.io/token/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "type": "ERC20", + "symbol": "FGC", + "decimals": 18, + "status": "active", + "id": "0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/fantasygoldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantasygold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png new file mode 100644 index 0000000000000..6876a666683e6 Binary files /dev/null and b/blockchains/ethereum/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png differ diff --git a/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json b/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json index 465d4f98cdc59..e1a1b619765a0 100644 --- a/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json +++ b/blockchains/ethereum/assets/0x42476F744292107e34519F9c357927074Ea3F75D/info.json @@ -7,5 +7,19 @@ "symbol": "LOOM", "decimals": 18, "status": "active", - "id": "0x42476F744292107e34519F9c357927074Ea3F75D" + "id": "0x42476F744292107e34519F9c357927074Ea3F75D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/loomnetwork" + }, + { + "name": "twitter", + "url": "https://twitter.com/loomnetwork" + }, + { + "name": "github", + "url": "https://github.com/loomnetwork" + } + ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/info.json b/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/info.json new file mode 100644 index 0000000000000..c7dc86e47d54f --- /dev/null +++ b/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/info.json @@ -0,0 +1,21 @@ +{ + "name": "AMC", + "type": "ERC20", + "symbol": "AMC", + "decimals": 18, + "website": "https://www.americasmemecoin.com/", + "description": "America's Meme Coin (AMC) is a meme coin - representing USA and ETH.", + "explorer": "https://etherscan.io/token/0x426a688eE72811773eB64F5717A32981B56F10c1", + "status": "active", + "id": "0x426a688eE72811773eB64F5717A32981B56F10c1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/eth_amc" + }, + { + "name": "telegram", + "url": "https://t.me/TheSocietyPortal" + } + ] +} diff --git a/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/logo.png b/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/logo.png new file mode 100644 index 0000000000000..4fcaf446307e8 Binary files /dev/null and b/blockchains/ethereum/assets/0x426a688eE72811773eB64F5717A32981B56F10c1/logo.png differ diff --git a/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/info.json b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/info.json new file mode 100644 index 0000000000000..c17fb3110e63a --- /dev/null +++ b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/info.json @@ -0,0 +1,25 @@ +{ + "name": "Shiba Saga", + "type": "ERC20", + "symbol": "SHIA", + "decimals": 18, + "website": "https://www.shibasaga.com/", + "description": "Unveil Shiba Saga: Where gaming meets blockchain magic. Earn SHIA tokens while playing, redeem for rewards, trade on exchanges, and participate in social impact initiatives. Level up your gaming experience with us!", + "explorer": "https://etherscan.io/token/0x43d7e65b8ff49698d9550a7f315c87e67344fb59", + "status": "active", + "id": "0x43D7E65B8fF49698D9550a7F315c87E67344FB59", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ShibaSaga" + }, + { + "name": "twitter", + "url": "https://twitter.com/shibasagaio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shiba-saga/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/logo.png b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/logo.png new file mode 100644 index 0000000000000..337b74854f208 Binary files /dev/null and b/blockchains/ethereum/assets/0x43D7E65B8fF49698D9550a7F315c87E67344FB59/logo.png differ diff --git a/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/logo.png b/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/logo.png deleted file mode 100644 index 52a97499126e8..0000000000000 Binary files a/blockchains/ethereum/assets/0x43f11c02439e2736800433b4594994Bd43Cd066D/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/info.json b/blockchains/ethereum/assets/0x442B153F6F61C0c99A33Aa4170DCb31e1ABDa1D0/info.json new file mode 100644 index 0000000000000..aaf6119588b63 --- /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/0x443459D45c30A03f90037d011CbE22e2183d3b12/info.json b/blockchains/ethereum/assets/0x443459D45c30A03f90037d011CbE22e2183d3b12/info.json new file mode 100644 index 0000000000000..327dcebc56d19 --- /dev/null +++ b/blockchains/ethereum/assets/0x443459D45c30A03f90037d011CbE22e2183d3b12/info.json @@ -0,0 +1,21 @@ +{ + "name": "TypeAI", + "type": "ERC20", + "symbol": "TYPE", + "decimals": 18, + "website": "https://www.typeai.live/", + "description": "Personalized AI crypto companion.", + "explorer": "https://etherscan.io/token/0x443459d45c30a03f90037d011cbe22e2183d3b12", + "status": "active", + "id": "0x443459D45c30A03f90037d011CbE22e2183d3b12", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Typeaieth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/typeai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x443459D45c30A03f90037d011CbE22e2183d3b12/logo.png b/blockchains/ethereum/assets/0x443459D45c30A03f90037d011CbE22e2183d3b12/logo.png new file mode 100644 index 0000000000000..e22dc1662cbd0 Binary files /dev/null and b/blockchains/ethereum/assets/0x443459D45c30A03f90037d011CbE22e2183d3b12/logo.png differ diff --git a/blockchains/ethereum/assets/0x44ff8620b8cA30902395A7bD3F2407e1A091BF73/info.json b/blockchains/ethereum/assets/0x44ff8620b8cA30902395A7bD3F2407e1A091BF73/info.json new file mode 100644 index 0000000000000..723da1663d77c --- /dev/null +++ b/blockchains/ethereum/assets/0x44ff8620b8cA30902395A7bD3F2407e1A091BF73/info.json @@ -0,0 +1,21 @@ +{ + "name": "Virtual Protocol", + "type": "ERC20", + "symbol": "VIRTUAL", + "decimals": 18, + "website": "https://www.virtuals.io/", + "description": "Virtual is an AI protocol that creates co-owned, human-curated, plug-and-play gaming AIs.", + "explorer": "https://etherscan.io/token/0x44ff8620b8cA30902395A7bD3F2407e1A091BF73", + "status": "active", + "id": "0x44ff8620b8cA30902395A7bD3F2407e1A091BF73", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/virtuals_io" + }, + { + "name": "telegram", + "url": "https://t.me/virtuals" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x44ff8620b8cA30902395A7bD3F2407e1A091BF73/logo.png b/blockchains/ethereum/assets/0x44ff8620b8cA30902395A7bD3F2407e1A091BF73/logo.png new file mode 100644 index 0000000000000..87328b253d6ac Binary files /dev/null and b/blockchains/ethereum/assets/0x44ff8620b8cA30902395A7bD3F2407e1A091BF73/logo.png differ diff --git a/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/info.json b/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/info.json new file mode 100644 index 0000000000000..06df8d5c41e7f --- /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 0000000000000..69737a2c9591e Binary files /dev/null and b/blockchains/ethereum/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png differ diff --git a/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/info.json b/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/info.json new file mode 100644 index 0000000000000..076b34f91a8d4 --- /dev/null +++ b/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/info.json @@ -0,0 +1,25 @@ +{ + "name": "Polygon Ecosystem Token", + "type": "ERC20", + "symbol": "POL", + "decimals": 18, + "website": "https://polygon.technology/", + "description": "Polygon is a protocol and a framework for building and connecting Ethereum-compatible blockchain networks. Aggregating scalable solutions on Ethereum supporting a multi-chain Ethereum ecosystem.", + "explorer": "https://etherscan.io/token/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6", + "status": "active", + "id": "0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6", + "links": [ + { + "name": "telegram", + "url": "https://t.me/polygonofficial" + }, + { + "name": "twitter", + "url": "https://twitter.com/0xPolygon" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polygon-ecosystem-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/logo.png b/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/logo.png new file mode 100644 index 0000000000000..fbd01afc251d4 Binary files /dev/null and b/blockchains/ethereum/assets/0x455e53CBB86018Ac2B8092FdCd39d8444aFFC3F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/info.json b/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/info.json new file mode 100644 index 0000000000000..f0b5df7280d32 --- /dev/null +++ b/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZEDXION", + "type": "ERC20", + "symbol": "ZEDX", + "decimals": 9, + "website": "https://zedxion.io", + "description": "Zedxion offers a comprehensive solution to the major problems faced by the traditional, fiat-driven monetary system. Building a crypto powered ecosystem comprising Zedxion Token.", + "explorer": "https://etherscan.io/token/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59", + "status": "active", + "id": "0x469b7AEbA4fbFca20eFC563C49d0c74445179D59" +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/logo.png b/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/logo.png new file mode 100644 index 0000000000000..0a6dc86b993a3 Binary files /dev/null and b/blockchains/ethereum/assets/0x469b7AEbA4fbFca20eFC563C49d0c74445179D59/logo.png differ diff --git a/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/info.json b/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/info.json index 01067ee5e4e8e..4c72b1c68d369 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 7acec2d200f0c..b0d3e287349fe 100644 Binary files a/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/logo.png and b/blockchains/ethereum/assets/0x4730fB1463A6F1F44AEB45F6c5c422427f37F4D0/logo.png differ diff --git a/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json b/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json index 48ec3dd6c9705..37828e16f3237 100644 --- a/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json +++ b/blockchains/ethereum/assets/0x4922a015c4407F87432B179bb209e125432E4a2A/info.json @@ -6,6 +6,6 @@ "website": "https://tether.to/", "description": "Each XAU₮ token represents ownership of one troy fine ounce of physical gold on a specific gold bar. Furthermore, Tether Gold (XAU₮) is the only product among the competition that offers zero custody fees and has direct control over the physical gold storage.", "explorer": "https://etherscan.io/token/0x4922a015c4407F87432B179bb209e125432E4a2A", - "status": "active", + "status": "abandoned", "id": "0x4922a015c4407F87432B179bb209e125432E4a2A" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json index fffdd7e5e2407..47c421d87b162 100644 --- a/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json +++ b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/info.json @@ -1,18 +1,14 @@ { - "name": "DinoLFG", + "name": "DinoLFG (DINO)", "type": "ERC20", "symbol": "DINO", "decimals": 18, - "website": "https://dinolfg.com/", - "description": "$Dino is a Meme Coin.", - "explorer": "https://etherscan.io/token/0x49642110b712c1fd7261bc074105e9e44676c68f", + "website": "https://dinolfg.com", + "description": "$DINO - Building Bridges Between Crypto, Games, and Financial Adventure!", + "explorer": "https://etherscan.io/token/0x49642110B712C1FD7261Bc074105E9E44676c68F", "status": "active", "id": "0x49642110B712C1FD7261Bc074105E9E44676c68F", "links": [ - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/dinolfg/" - }, { "name": "twitter", "url": "https://twitter.com/DinoLFG" @@ -20,9 +16,17 @@ { "name": "telegram", "url": "https://t.me/OfficialDinoLFG" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dinolfg" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/dinolfg" } ], "tags": [ "memes" ] -} \ No newline at end of file +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png index 20ddde9870601..db3c7b86943a9 100644 Binary files a/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png and b/blockchains/ethereum/assets/0x49642110B712C1FD7261Bc074105E9E44676c68F/logo.png differ diff --git a/blockchains/ethereum/assets/0x4A029F7bCf33AcB03547D8fA7be840347973e24e/info.json b/blockchains/ethereum/assets/0x4A029F7bCf33AcB03547D8fA7be840347973e24e/info.json new file mode 100644 index 0000000000000..928c73c74d83f --- /dev/null +++ b/blockchains/ethereum/assets/0x4A029F7bCf33AcB03547D8fA7be840347973e24e/info.json @@ -0,0 +1,25 @@ +{ + "name": "MAZZE", + "website": "https://mazze.io/", + "description": "Mazze is a Layer 1 blockchain that redefines performance through its PoW-based DAG architecture, achieving 40,000 TPS and 1s finality. Experience EVM compatible smart contracts and unparalleled privacy with ZK proofs.", + "explorer": "https://etherscan.io/token/0x4a029f7bcf33acb03547d8fa7be840347973e24e", + "type": "ERC20", + "symbol": "MAZZE", + "decimals": 18, + "status": "active", + "id": "0x4A029F7bCf33AcB03547D8fA7be840347973e24e", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MazzeLabs" + }, + { + "name": "telegram", + "url": "https://t.me/MazzeLabs" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mazze/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x4A029F7bCf33AcB03547D8fA7be840347973e24e/logo.png b/blockchains/ethereum/assets/0x4A029F7bCf33AcB03547D8fA7be840347973e24e/logo.png new file mode 100644 index 0000000000000..bd8eea56be178 Binary files /dev/null and b/blockchains/ethereum/assets/0x4A029F7bCf33AcB03547D8fA7be840347973e24e/logo.png differ diff --git a/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/info.json b/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/info.json new file mode 100644 index 0000000000000..ed9d06e34712b --- /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 0000000000000..e84ba5bf1ff6a Binary files /dev/null and b/blockchains/ethereum/assets/0x4C45bbEc2fF7810ef4a77ad7BD4757C446Fe4155/logo.png differ diff --git a/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/info.json b/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/info.json index 92be17d7b6b8c..57c11cad966a8 100644 --- a/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/info.json +++ b/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/info.json @@ -1,7 +1,7 @@ { "name": "ATOS", "website": "https://atoshi.org/", - "description": "ԭ������ATOSHI���ǻ����������ڵ��̡��罻����Ϸ����֤�����ڵ���ҵ����Ӧ���������ۺϽ����������Ŀ����ͨ����������ֲ�ʽ�˱�����������һ��ȫ��Χ�ڵ���������̬Ӧ����ϵ���������Ի���Ӧ�ó���������������������ʵ���ҵ��", + "description": "ATOSHI is a cryptocurrency created for diverse usage between countries, a new cryptocurrency for ordinary people, which you can “mine” by your phone. ATOS may be the best option to store value, increase value and ease the life for the people of the world.", "explorer": "https://etherscan.io/token/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18", "type": "ERC20", "symbol": "ATOS", @@ -18,4 +18,4 @@ "url": "https://facebook.com/atoshifoundation/" } ] -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/logo.png b/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/logo.png index 801e94cb4d830..b7f02b4b34dda 100644 Binary files a/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/logo.png and b/blockchains/ethereum/assets/0x4D0528598F916Fd1D8dc80e5f54a8fEEDcFd4b18/logo.png differ diff --git a/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/info.json b/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/info.json new file mode 100644 index 0000000000000..651e202ae90b2 --- /dev/null +++ b/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/info.json @@ -0,0 +1,33 @@ +{ + "name": "TRON", + "type": "ERC20", + "symbol": "TRX", + "decimals": 6, + "website": "https://tron.network/", + "description": "TRON is a dedicated to build the infrastructure for a truly decentralized Internet.", + "explorer": "https://etherscan.io/token/0x50327c6c5a14dcade707abad2e27eb517df87ab5", + "status": "active", + "id": "0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Tronfoundation" + }, + { + "name": "telegram", + "url": "https://t.me/tronnetworkEN" + }, + { + "name": "whitepaper", + "url": "https://tron.network/static/doc/white_paper_v_2_0.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tron/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tron/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/logo.png b/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/logo.png new file mode 100644 index 0000000000000..74ec9785f66d5 Binary files /dev/null and b/blockchains/ethereum/assets/0x50327c6c5a14DCaDE707ABad2E27eB517df87AB5/logo.png differ diff --git a/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json b/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/info.json index 8d3adabe6dfbc..c05e86d545372 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 62b8c49184690..0000000000000 Binary files a/blockchains/ethereum/assets/0x51FE2E572e97BFEB1D719809d743Ec2675924EDc/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/info.json b/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/info.json new file mode 100644 index 0000000000000..4753eab9eae53 --- /dev/null +++ b/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/info.json @@ -0,0 +1,21 @@ +{ + "name": "Spooky", + "type": "ERC20", + "symbol": "BOO", + "decimals": 18, + "website": "https://spookyswap.finance/", + "description": "SpookySwap is an automated market-making (AMM) decentralized exchange (DEX) for the Fantom Opera network.", + "explorer": "https://etherscan.io/token/0x55af5865807b196bd0197e0902746f31fbccfa58", + "status": "active", + "id": "0x55aF5865807b196bD0197e0902746F31FBcCFa58", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/spookyswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spookyswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/logo.png b/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/logo.png new file mode 100644 index 0000000000000..ef7cade406b22 Binary files /dev/null and b/blockchains/ethereum/assets/0x55aF5865807b196bD0197e0902746F31FBcCFa58/logo.png differ diff --git a/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json b/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/info.json new file mode 100644 index 0000000000000..db918c385fe8a --- /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 0000000000000..149d2563079dd Binary files /dev/null and b/blockchains/ethereum/assets/0x560363BdA52BC6A44CA6C8c9B4a5FadbDa32fa60/logo.png differ diff --git a/blockchains/ethereum/assets/0x56072C95FAA701256059aa122697B133aDEd9279/info.json b/blockchains/ethereum/assets/0x56072C95FAA701256059aa122697B133aDEd9279/info.json new file mode 100644 index 0000000000000..49a99e0c0c251 --- /dev/null +++ b/blockchains/ethereum/assets/0x56072C95FAA701256059aa122697B133aDEd9279/info.json @@ -0,0 +1,25 @@ +{ + "name": "Sky", + "type": "ERC20", + "symbol": "SKY", + "decimals": 18, + "website": "https://sky.money", + "description": "SKY is an upgraded version of the MKR token. Upgrading is optional. It is an ERC-20 token with permit functionality and EIP-1271 signature validation. The SKY token also enables two-way conversions between MKR and SKY tokens, using the mint and burn functions of both tokens. The conversion rate is 1 MKR to 24,000 SKY.", + "explorer": "https://etherscan.io/token/0x56072C95FAA701256059aa122697B133aDEd9279", + "status": "active", + "id": "0x56072C95FAA701256059aa122697B133aDEd9279", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SkyEcosystem" + }, + { + "name": "github", + "url": "https://github.com/makerdao/" + } + ], + "tags": [ + "stablecoin", + "defi" + ] +} diff --git a/blockchains/ethereum/assets/0x56072C95FAA701256059aa122697B133aDEd9279/logo.png b/blockchains/ethereum/assets/0x56072C95FAA701256059aa122697B133aDEd9279/logo.png new file mode 100644 index 0000000000000..e12458509f6a1 Binary files /dev/null and b/blockchains/ethereum/assets/0x56072C95FAA701256059aa122697B133aDEd9279/logo.png differ diff --git a/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/info.json b/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/info.json new file mode 100644 index 0000000000000..2bf1201c590e8 --- /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 0000000000000..4d1fc39fdc6c4 Binary files /dev/null and b/blockchains/ethereum/assets/0x576e2BeD8F7b46D34016198911Cdf9886f78bea7/logo.png differ diff --git a/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/info.json b/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/info.json new file mode 100644 index 0000000000000..3ccdb2971df2b --- /dev/null +++ b/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/info.json @@ -0,0 +1,21 @@ +{ + "name": "ENA", + "website": "https://www.ethena.fi/", + "description": "Ethena is a synthetic dollar protocol built on Ethereum that will provide a crypto-native solution for money not reliant on traditional banking system infrastructure, alongside a globally accessible dollar-denominated savings instrument - the 'Internet Bond'.", + "explorer": "https://etherscan.io/token/0x57e114B691Db790C35207b2e685D4A43181e6061", + "type": "ERC20", + "symbol": "ENA", + "decimals": 18, + "status": "active", + "id": "0x57e114B691Db790C35207b2e685D4A43181e6061", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ethena_labs" + }, + { + "name": "telegram", + "url": "https://t.me/ethena_labs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/logo.png b/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/logo.png new file mode 100644 index 0000000000000..69ecb3a317648 Binary files /dev/null and b/blockchains/ethereum/assets/0x57e114B691Db790C35207b2e685D4A43181e6061/logo.png differ diff --git a/blockchains/ethereum/assets/0x58aEA10748a00D1781D6651f9d78A414EA32CA46/info.json b/blockchains/ethereum/assets/0x58aEA10748a00D1781D6651f9d78A414EA32CA46/info.json new file mode 100644 index 0000000000000..21626bd4a0234 --- /dev/null +++ b/blockchains/ethereum/assets/0x58aEA10748a00D1781D6651f9d78A414EA32CA46/info.json @@ -0,0 +1,25 @@ +{ + "name": "Vector Smart Gas", + "website": "https://vsgofficial.com/", + "description": "The platform's primary objective is to address scalability issues prevalent in traditional blockchain networks by providing a scalable and efficient environment for decentralized application deployment. Leveraging Layer 2 solutions, VSC enhances transaction throughput and reduces gas fees, making it more accessible and cost-effective for developers and users alike.", + "explorer": "https://etherscan.io/token/0x58aea10748a00d1781d6651f9d78a414ea32ca46", + "type": "ERC20", + "symbol": "VSG", + "decimals": 18, + "status": "active", + "id": "0x58aEA10748a00D1781D6651f9d78A414EA32CA46", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/VECTORCOIN" + }, + { + "name": "telegram", + "url": "https://t.me/vsgportal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vitalik-smart-gas/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58aEA10748a00D1781D6651f9d78A414EA32CA46/logo.png b/blockchains/ethereum/assets/0x58aEA10748a00D1781D6651f9d78A414EA32CA46/logo.png new file mode 100644 index 0000000000000..37a43e40d1dd9 Binary files /dev/null and b/blockchains/ethereum/assets/0x58aEA10748a00D1781D6651f9d78A414EA32CA46/logo.png differ diff --git a/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/info.json b/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/info.json new file mode 100644 index 0000000000000..faaa76bc6a197 --- /dev/null +++ b/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/info.json @@ -0,0 +1,17 @@ +{ + "name": "ZynCoin", + "website": "https://www.zyncoin.xyz/", + "description": "ZynCoin is a community-led memecoin project focused on the proliferaiton of ZYN.", + "explorer": "https://etherscan.io/token/0x58cb30368ceb2d194740b144eab4c2da8a917dcb", + "type": "ERC20", + "symbol": "ZYN", + "decimals": 18, + "status": "active", + "id": "0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ZynCoinERC20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/logo.png b/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/logo.png new file mode 100644 index 0000000000000..27795b4dd0a4c Binary files /dev/null and b/blockchains/ethereum/assets/0x58cB30368ceB2d194740b144EAB4c2da8a917Dcb/logo.png differ diff --git a/blockchains/ethereum/assets/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3/info.json b/blockchains/ethereum/assets/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3/info.json new file mode 100644 index 0000000000000..16737cbff2a61 --- /dev/null +++ b/blockchains/ethereum/assets/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3/info.json @@ -0,0 +1,21 @@ +{ + "name": "SCAM", + "website": "http://scamcoin.io", + "description": "SCAM is a revolutionary much needed movement in the blockchain industry. We aim to expose fraudulent behavior and raise awareness of scamming activities.", + "explorer": "https://etherscan.io/token/0x590f00eDc668D5af987c6076c7302C42B6FE9DD3", + "type": "ERC20", + "symbol": "SCAM", + "decimals": 18, + "status": "abandoned", + "id": "0x590f00eDc668D5af987c6076c7302C42B6FE9DD3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/scamcoin_eth" + }, + { + "name": "telegram", + "url": "https://t.me/SCAMCOIN_ETH" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/info.json b/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/info.json new file mode 100644 index 0000000000000..f9d9eb201e5af --- /dev/null +++ b/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/info.json @@ -0,0 +1,21 @@ +{ + "name": "Apu Apustaja", + "website": "https://apu.club/", + "description": "Apu, also known as Peepo or Helper, is a pepe-variant that is used to represent a much younger, kinder and more naive anthropomorphic frog.", + "explorer": "https://etherscan.io/token/0x594daad7d77592a2b97b725a7ad59d7e188b5bfa", + "type": "ERC20", + "symbol": "APU", + "decimals": 18, + "status": "active", + "id": "0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apu-apustaja/" + }, + { + "name": "twitter", + "url": "https://twitter.com/apuscoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/logo.png b/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/logo.png new file mode 100644 index 0000000000000..9b86cd55d93ca Binary files /dev/null and b/blockchains/ethereum/assets/0x594DaaD7D77592a2b97b725A7AD59D7E188b5bFa/logo.png differ diff --git a/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/info.json b/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/info.json new file mode 100644 index 0000000000000..e703cdfcbd1ea --- /dev/null +++ b/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/info.json @@ -0,0 +1,21 @@ +{ + "name": "RivusDAO", + "website": "https://www.rivusdao.xyz/", + "description": "Seamlessly integrate staking rewards while maintaining liquidity and flexibility for your digital assets.", + "explorer": "https://etherscan.io/token/0x60e254e35dd712394b3aba7a1d19114732e143dd", + "type": "ERC20", + "symbol": "RIVUS", + "decimals": 18, + "status": "active", + "id": "0x60e254E35Dd712394b3AbA7A1D19114732e143dD", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rivusdao/" + }, + { + "name": "twitter", + "url": "https://twitter.com/RivusDAO" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/logo.png b/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/logo.png new file mode 100644 index 0000000000000..6a716613f04f2 Binary files /dev/null and b/blockchains/ethereum/assets/0x60e254E35Dd712394b3AbA7A1D19114732e143dD/logo.png differ diff --git a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json index d6ce3e0ebdb29..d6a82c33aeded 100644 --- a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json +++ b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/info.json @@ -1,25 +1,28 @@ { - "name": "NONbeta", - "symbol": "SOON", + "name": "Ethereans", + "symbol": "OS", "type": "ERC20", "decimals": 18, - "description": "Governance Token of the NONgov BETA. After the NONnation release the NON token, will be distributed 1:1 to OS holders", - "website": "https://nonnation.xyz", + "description": "Governance Token of EthereansOS (EthOS) protocol. More info: https://ethos.eth", + "website": "https://ethereans.app", "explorer": "https://etherscan.io/token/0x6100dd79fCAA88420750DceE3F735d168aBcB771", "status": "active", "id": "0x6100dd79fCAA88420750DceE3F735d168aBcB771", + "tags": [ + "governance" + ], "links": [ { "name": "twitter", - "url": "https://twitter.com/nonlabshq" + "url": "https://twitter.com/ethereansOS" }, { "name": "discord", - "url": "https://discord.com/nonlabs" + "url": "https://discord.com/invite/ncbK6nYdFU" }, { "name": "youtube", - "url": "https://youtube.com/@nonlabs" + "url": "https://youtube.com/@EthereansOS" } ] -} +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png index 98342ec40dd8b..86ffb8db7a513 100644 Binary files a/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png and b/blockchains/ethereum/assets/0x6100dd79fCAA88420750DceE3F735d168aBcB771/logo.png differ diff --git a/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/info.json b/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/info.json new file mode 100644 index 0000000000000..2fb4df0fee1b7 --- /dev/null +++ b/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ribbon", + "type": "ERC20", + "symbol": "RBN", + "decimals": 18, + "website": "https://www.ribbon.finance/", + "description": "Ribbon uses financial engineering to create structured products that aim to deliver sustainable yield. Ribbon's first product focuses on yield through automated options strategies. The protocol also allows developers to create arbitrary structured products by combining various DeFi derivatives.", + "explorer": "https://etherscan.io/token/0x6123b0049f904d730db3c36a31167d9d4121fa6b", + "status": "active", + "id": "0x6123B0049F904d730dB3C36a31167D9d4121fA6B", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ribbonfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ribbon-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/logo.png b/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/logo.png new file mode 100644 index 0000000000000..d4cdccc8491b4 Binary files /dev/null and b/blockchains/ethereum/assets/0x6123B0049F904d730dB3C36a31167D9d4121fA6B/logo.png differ diff --git a/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/info.json b/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/info.json new file mode 100644 index 0000000000000..2ef78a54b0c45 --- /dev/null +++ b/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/info.json @@ -0,0 +1,21 @@ +{ + "name": "M2 Global Wealth Limited", + "website": "https://www.m2.com/", + "description": "The New Home Of Crypto. Best-in-class trading and investment platform to grow your wealth in the digital asset space.", + "explorer": "https://etherscan.io/token/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707", + "type": "ERC20", + "symbol": "MMX", + "decimals": 18, + "status": "active", + "id": "0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/m2exchange" + }, + { + "name": "telegram", + "url": "https://t.me/M2Announcements" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/logo.png b/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/logo.png new file mode 100644 index 0000000000000..f2b3d4343a5d3 Binary files /dev/null and b/blockchains/ethereum/assets/0x614Da3b37B6F66F7Ce69B4Bbbcf9a55CE6168707/logo.png differ diff --git a/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/info.json b/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/info.json new file mode 100644 index 0000000000000..15eabc3447290 --- /dev/null +++ b/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/info.json @@ -0,0 +1,21 @@ +{ + "name": "League of Kingdoms Arena", + "website": "http://playersarena.foundation/", + "description": "League of Kingdoms Arena (LOKA) aims at building a decentralized gaming metaverse on the world’s first blockchain MMO strategy game, League of Kingdoms. The LOKA token adds to the existing set of NFTs to enable governance rights and additional utilities to the League of Kingdoms community.", + "explorer": "https://etherscan.io/token/0x61e90a50137e1f645c9ef4a0d3a4f01477738406", + "symbol": "LOKA", + "type": "ERC20", + "decimals": 18, + "status": "active", + "id": "0x61E90A50137E1F645c9eF4a0d3A4f01477738406", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/league-of-kingdoms/" + }, + { + "name": "twitter", + "url": "https://twitter.com/LeagueKingdoms" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/logo.png b/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/logo.png new file mode 100644 index 0000000000000..c62c82fc46eae Binary files /dev/null and b/blockchains/ethereum/assets/0x61E90A50137E1F645c9eF4a0d3A4f01477738406/logo.png differ diff --git a/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json b/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json new file mode 100644 index 0000000000000..b3e88c342ebda --- /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 0000000000000..df55519f7a2dd Binary files /dev/null and b/blockchains/ethereum/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/logo.png differ diff --git a/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/info.json b/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/info.json new file mode 100644 index 0000000000000..a95c8b72dbb0e --- /dev/null +++ b/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wat", + "type": "ERC20", + "symbol": "WAT", + "decimals": 18, + "website": "https://wat0x63.com/", + "description": "To honor Matt Furies love for Rats, Wat, his pet is now reborn on the blockchain alongside other Furie creations taking inspiration from his early Rat illustrations.", + "explorer": "https://etherscan.io/token/0x636bd98fc13908e475f56d8a38a6e03616ec5563", + "status": "active", + "id": "0x636bd98fC13908e475F56d8a38a6e03616Ec5563", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/wat0x63" + }, + { + "name": "telegram", + "url": "https://t.me/Wat0x63" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/logo.png b/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/logo.png new file mode 100644 index 0000000000000..8a9e4d41e6c44 Binary files /dev/null and b/blockchains/ethereum/assets/0x636bd98fC13908e475F56d8a38a6e03616Ec5563/logo.png differ diff --git a/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/info.json b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/info.json new file mode 100644 index 0000000000000..a69822bf89424 --- /dev/null +++ b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/info.json @@ -0,0 +1,25 @@ +{ + "name": "Big Time", + "website": "https://bigtime.gg/", + "description": "The $BIGTIME Token is the main cryptocurrency that drives Big Time’s in-game economy. $BIGTIME randomly drops in-game by playing with at least one charged Hourglass equipped.", + "explorer": "https://etherscan.io/token/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194", + "type": "ERC20", + "symbol": "BIGTIME", + "decimals": 18, + "status": "active", + "id": "0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/big-time/" + }, + { + "name": "twitter", + "url": "https://twitter.com/playbigtime" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/big-time/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/logo.png b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/logo.png new file mode 100644 index 0000000000000..2b3a70086c734 Binary files /dev/null and b/blockchains/ethereum/assets/0x64Bc2cA1Be492bE7185FAA2c8835d9b824c8a194/logo.png differ diff --git a/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/info.json b/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/info.json new file mode 100644 index 0000000000000..4a5c2a8d178a0 --- /dev/null +++ b/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Clearpool", + "website": "https://clearpool.finance", + "description": "Clearpool is a cecentralized capital markets ecosystem, where institutional borrowers can access unsecured loans directly from the DeFi ecosystem. Clearpool introduces a dynamic interest model driven by market supply and demand forces.", + "explorer": "https://etherscan.io/token/0x66761fa41377003622aee3c7675fc7b5c1c2fac5", + "type": "ERC20", + "symbol": "CPOOL", + "decimals": 18, + "status": "active", + "id": "0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ClearpoolFin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/clearpool/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/logo.png b/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/logo.png new file mode 100644 index 0000000000000..61be5c5332022 Binary files /dev/null and b/blockchains/ethereum/assets/0x66761Fa41377003622aEE3c7675Fc7b5c1C2FaC5/logo.png differ diff --git a/blockchains/ethereum/assets/0x67466BE17df832165F8C80a5A120CCc652bD7E69/info.json b/blockchains/ethereum/assets/0x67466BE17df832165F8C80a5A120CCc652bD7E69/info.json new file mode 100644 index 0000000000000..1b5b1f5450bfd --- /dev/null +++ b/blockchains/ethereum/assets/0x67466BE17df832165F8C80a5A120CCc652bD7E69/info.json @@ -0,0 +1,21 @@ +{ + "name": "Landwolf", + "type": "ERC20", + "symbol": "WOLF", + "decimals": 18, + "website": "https://boysclubwolf.com/", + "description": "Wolf is one of the Boy’s Club, best friends with Andy and Pepe", + "explorer": "https://etherscan.io/token/0x67466be17df832165f8c80a5a120ccc652bd7e69", + "status": "active", + "id": "0x67466BE17df832165F8C80a5A120CCc652bD7E69", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Wolf0x67" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/landwolf-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67466BE17df832165F8C80a5A120CCc652bD7E69/logo.png b/blockchains/ethereum/assets/0x67466BE17df832165F8C80a5A120CCc652bD7E69/logo.png new file mode 100644 index 0000000000000..8d92079c53889 Binary files /dev/null and b/blockchains/ethereum/assets/0x67466BE17df832165F8C80a5A120CCc652bD7E69/logo.png differ diff --git a/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/info.json b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/info.json new file mode 100644 index 0000000000000..9654264451a27 --- /dev/null +++ b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/info.json @@ -0,0 +1,28 @@ +{ + "name": "Wrapped Pocket (wPOKT)", + "type": "ERC20", + "symbol": "wPOKT", + "decimals": 6, + "website": "https://www.pokt.network", + "description": "Reliable, performant, and cost-effective RPC infrastructure that is owned and governed by its users. Unstoppable Open Data, powered by decentralization.", + "explorer": "https://etherscan.io/token/0x67F4C72a50f8Df6487720261E188F2abE83F57D7", + "status": "active", + "id": "0x67F4C72a50f8Df6487720261E188F2abE83F57D7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/POKTnetwork" + }, + { + "name": "github", + "url": "https://github.com/pokt-network" + }, + { + "name": "forum", + "url": "https://forum.pokt.network/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/logo.png b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/logo.png new file mode 100644 index 0000000000000..5c1ecf3df85be Binary files /dev/null and b/blockchains/ethereum/assets/0x67F4C72a50f8Df6487720261E188F2abE83F57D7/logo.png differ diff --git a/blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/info.json b/blockchains/ethereum/assets/0x68749665FF8D2d112Fa859AA293F07A622782F38/info.json new file mode 100644 index 0000000000000..f1518b7f3a2c2 --- /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 0000000000000..75823d452be39 --- /dev/null +++ b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/info.json @@ -0,0 +1,25 @@ +{ + "name": "Tectum Emission Token", + "website": "https://softnote.com/", + "description": "Tectum is the Worlds Fastest Layer 1 Blockchain functioning at 1.3 million tps with instant immutability. The Softnote is its Layer 2 solution that makes Bitcoin and other cryptocurrencies instant, free and boundless.", + "explorer": "https://etherscan.io/token/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a", + "type": "ERC20", + "symbol": "TET", + "decimals": 8, + "status": "active", + "id": "0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/tectumsocial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tectum/" + }, + { + "name": "telegram", + "url": "https://t.me/tectumglobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/logo.png b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/logo.png new file mode 100644 index 0000000000000..b58cc8e660fc8 Binary files /dev/null and b/blockchains/ethereum/assets/0x68A47Fe1CF42eBa4a030a10CD4D6a1031Ca3CA0a/logo.png differ diff --git a/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/info.json b/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/info.json new file mode 100644 index 0000000000000..612fb64cf28b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/info.json @@ -0,0 +1,40 @@ +{ + "name": "ANDY", + "type": "ERC20", + "symbol": "ANDY", + "decimals": 18, + "website": "https://boysclubandy.com", + "description": "Andy is Pepe's lifelong best friend.", + "explorer": "https://etherscan.io/token/0x68bbed6a47194eff1cf514b50ea91895597fc91e", + "status": "active", + "id": "0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/andycoinonerc" + }, + { + "name": "github", + "url": "https://github.com/boysclubandy" + }, + { + "name": "telegram", + "url": "https://t.me/TheOnlyAndyLeft" + }, + { + "name": "source_code", + "url": "https://github.com/boysclubandy/SmartContract" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/andy-the-wisguy" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/boysclubandy" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/logo.png b/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/logo.png new file mode 100644 index 0000000000000..d5be27ad11c81 Binary files /dev/null and b/blockchains/ethereum/assets/0x68BbEd6A47194EFf1CF514B50Ea91895597fc91E/logo.png differ diff --git a/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/info.json b/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/info.json new file mode 100644 index 0000000000000..421814a85bdd6 --- /dev/null +++ b/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/info.json @@ -0,0 +1,17 @@ +{ + "name": "Groyper", + "website": "https://groypereth.vip/", + "description": "Groyper is a toad who is friend with Pepe, he originated on 4chans/r9k/board. Generally depicted as smug, more so than Pepe. $GROYPER", + "explorer": "https://etherscan.io/token/0x6942806d1b2d5886d95ce2f04314ece8eb825833", + "type": "ERC20", + "symbol": "Groyper", + "decimals": 18, + "status": "active", + "id": "0x6942806D1B2d5886D95cE2f04314ece8eb825833", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/groyper/" + } + ] +} diff --git a/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/logo.png b/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/logo.png new file mode 100644 index 0000000000000..6f2ee6d47f04d Binary files /dev/null and b/blockchains/ethereum/assets/0x6942806D1B2d5886D95cE2f04314ece8eb825833/logo.png differ diff --git a/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/info.json b/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/info.json new file mode 100644 index 0000000000000..a644d6edf6136 --- /dev/null +++ b/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/info.json @@ -0,0 +1,21 @@ +{ + "name": "MEME AI", + "type": "ERC20", + "symbol": "MEMEAI", + "decimals": 9, + "website": "https://memeaicoin.io/", + "description": "To Unleash Your MEME Creativity Take Your MEMES to the Next Level 'Explore MEME AI, inspired by Elon Musk's recent tweet recognizing the impact of memes. Our platform offers a AI meme generator and an NFT marketplace, empowering users to have fun...", + "explorer": "https://etherscan.io/token/0x695d38EB4e57E0f137e36df7c1f0f2635981246b", + "status": "active", + "id": "0x695d38EB4e57E0f137e36df7c1f0f2635981246b", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meme-ai-token/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Memeaicoin" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/logo.png b/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/logo.png new file mode 100644 index 0000000000000..ec20be5f3bd42 Binary files /dev/null and b/blockchains/ethereum/assets/0x695d38EB4e57E0f137e36df7c1f0f2635981246b/logo.png differ diff --git a/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 0000000000000..f38a9196222e7 --- /dev/null +++ b/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "LayerZero", + "website": "https://layerzero.network/", + "description": "LayerZero is a technology that enables applications to move data across blockchains, uniquely supporting censorship-resistant messages and permissionless development through immutable smart contracts", + "explorer": "https://etherscan.io/token/0x6985884C4392D348587B19cb9eAAf157F13271cd", + "type": "ERC20", + "symbol": "ZRO", + "decimals": 18, + "status": "active", + "id": "0x6985884C4392D348587B19cb9eAAf157F13271cd", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LayerZero_Labs" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/VcqxYkStIDsyN2Rh" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png b/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png new file mode 100644 index 0000000000000..203a846cfdf6b Binary files /dev/null and b/blockchains/ethereum/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/info.json b/blockchains/ethereum/assets/0x69A95185ee2a045CDC4bCd1b1Df10710395e4e23/info.json index 6396dd4fb7ed2..9232d09307cb2 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 0000000000000..b935f2f480678 --- /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 0000000000000..05b66f4fac54c 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 0000000000000..26e79b9964664 --- /dev/null +++ b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/info.json @@ -0,0 +1,24 @@ +{ + "name": "McPepes", + "website": "https://mcpepes.com/", + "description": "McPepe’s is the infinite Pepe image generator. Generated images are available as NFTs on Ethereum or can be inscribed as Ordinals on Bitcoin. $PEPES incentivizes the generation of the highest quality Pepes possible and manages the resource constraints of generating millions of Pepes per day.", + "explorer": "https://etherscan.io/token/0x6bf765c43030387a983f429c1438e9d2025b7e12", + "type": "ERC20", + "symbol": "PEPES", + "decimals": 18, + "status": "active", + "id": "0x6BF765C43030387a983f429c1438e9D2025B7E12", + "tags": [ + "memes" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/McPepes_AI" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mcpepe-s/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/logo.png b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/logo.png new file mode 100644 index 0000000000000..da782d14c8abe Binary files /dev/null and b/blockchains/ethereum/assets/0x6BF765C43030387a983f429c1438e9D2025B7E12/logo.png differ diff --git a/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/info.json b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/info.json new file mode 100644 index 0000000000000..0d4acbd7e7ce2 --- /dev/null +++ b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/info.json @@ -0,0 +1,25 @@ +{ + "name": "SnailBrook", + "website": "https://www.snailbrook.ai/", + "description": "SnailBrook (SNAIL) is a decentralized utopian cryptocurrency project that aims to unite various meme coin communities under a single, inclusive platform. By fostering equal opportunity and collaborative growth, SNAIL seeks to create a utopia for all meme coin enthusiasts and investors.", + "explorer": "https://etherscan.io/token/0x6bc40d4099f9057b23af309c08d935b890d7adc0", + "type": "ERC20", + "symbol": "SNAIL", + "decimals": 18, + "status": "active", + "id": "0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SnailBrookAI" + }, + { + "name": "telegram", + "url": "https://t.me/Snailbrook_Entry" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/snailbrook/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/logo.png b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/logo.png new file mode 100644 index 0000000000000..bd68303503587 Binary files /dev/null and b/blockchains/ethereum/assets/0x6Bc40d4099f9057b23aF309C08d935b890d7Adc0/logo.png differ diff --git a/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/info.json b/blockchains/ethereum/assets/0x6D7497751656618Fc38CfB5478994a20F7E235df/info.json new file mode 100644 index 0000000000000..463b85154ba74 --- /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 0000000000000..0f7ec388c9b69 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 0000000000000..e3a3e0cb2f693 --- /dev/null +++ b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/info.json @@ -0,0 +1,25 @@ +{ + "name": "Arkham", + "type": "ERC20", + "symbol": "ARKM", + "decimals": 18, + "website": "https://www.arkhamintelligence.com/", + "description": "ARKM is an intel-to-earn and incentive system that help to balance the token economy, with ARKM entering circulation via intel-to-earn payments and ARKM rewards, and cycling out of circulation via pay-in-ARKM platform purchases and exchange fees.", + "explorer": "https://etherscan.io/token/0x6e2a43be0b1d33b726f0ca3b8de60b3482b8b050", + "status": "active", + "id": "0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/arkhamintel" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/arkham/" + }, + { + "name": "telegram", + "url": "https://t.me/arkhamintelligence" + } + ] +} diff --git a/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/logo.png b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/logo.png new file mode 100644 index 0000000000000..0abe387bb7fee Binary files /dev/null and b/blockchains/ethereum/assets/0x6E2a43be0B1d33b726f0CA3b8de60b3482b8b050/logo.png differ diff --git a/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/info.json b/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/info.json new file mode 100644 index 0000000000000..0382190b0eaba --- /dev/null +++ b/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/info.json @@ -0,0 +1,32 @@ +{ + "name": "Hoppy", + "type": "ERC20", + "symbol": "HOPPY", + "decimals": 9, + "website": "https://hoppycoinerc20.com", + "description": "Hoppy is an anthropomorphic frog character based on the famous comic book «The Night Riders», published in 2012 by artist and illustrator Matt Furie. Today, this is one of the few characters of Matt Furie that can truly be considered unique. Hoppy began his memetic revolution through countless iterations of memes cementing his iconic status, mastering every form with his unparalleled power. With its roots in internet culture, Hoppy infuses humor and meme magic into the world, fostering a movement that unites and makes everyone happy.", + "explorer": "https://etherscan.io/token/0x6E79B51959CF968d87826592f46f819F92466615", + "status": "active", + "id": "0x6E79B51959CF968d87826592f46f819F92466615", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com//hoppycoinERC20" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hoppy-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hoppy-meme" + }, + { + "name": "telegram", + "url": "https://t.me/hoppycoinERC20" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/logo.png b/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/logo.png new file mode 100644 index 0000000000000..0814fa80789c5 Binary files /dev/null and b/blockchains/ethereum/assets/0x6E79B51959CF968d87826592f46f819F92466615/logo.png differ diff --git a/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/info.json b/blockchains/ethereum/assets/0x6c28AeF8977c9B773996d0e8376d2EE379446F2f/info.json index 95bb74c7bbb7f..95e16240fe769 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/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/info.json b/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/info.json index 1ecf98c2dcfd5..538058a8a3524 100644 --- a/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/info.json +++ b/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/info.json @@ -3,9 +3,47 @@ "symbol": "PHA", "type": "ERC20", "decimals": 18, - "description": "Phala Network is a privacy-preserving cloud computing service, which offers computing power comparable to existing cloud services and protects the privacy of managed programs.", + "description": "Phala Network is the most decentralized protocol to run AI Agents as coprocessors for blockchains.", "website": "https://phala.network/", "explorer": "https://etherscan.io/token/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E", + "research": "https://www.binance.com/en/research/projects/phalanetwork", + "tags": [ + "staking" + ], "status": "active", - "id": "0x6c5bA91642F10282b576d91922Ae6448C9d52f4E" + "id": "0x6c5bA91642F10282b576d91922Ae6448C9d52f4E", + "links": [ + { + "name": "github", + "url": "https://github.com/Phala-Network" + }, + { + "name": "twitter", + "url": "https://twitter.com/PhalaNetwork" + }, + { + "name": "discord", + "url": "https://discord.com/invite/phala" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/PhalaNetwork" + }, + { + "name": "blog", + "url": "https://phala.network/blog" + }, + { + "name": "docs", + "url": "https://docs.phala.network/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/phala-network/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/phala-network" + } + ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/logo.png b/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/logo.png index a390339631565..237d1a3bdbf1d 100644 Binary files a/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/logo.png and b/blockchains/ethereum/assets/0x6c5bA91642F10282b576d91922Ae6448C9d52f4E/logo.png differ diff --git a/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/info.json b/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/info.json new file mode 100644 index 0000000000000..b12c1fed351d0 --- /dev/null +++ b/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/info.json @@ -0,0 +1,21 @@ +{ + "name": "Super Trump", + "type": "ERC20", + "symbol": "STRUMP", + "decimals": 9, + "website": "https://supertrumpcoin.io/", + "description": "Super Trump Coin is a pioneering cryptocurrency leveraging blockchain technology to pay homage to the political legacy of Donald Trump", + "explorer": "https://etherscan.io/token/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65", + "status": "active", + "id": "0x7039cd6D7966672F194E8139074C3D5c4e6DCf65", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/super-trump-io/" + }, + { + "name": "twitter", + "url": "https://twitter.com/SuperTrumpCoin" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/logo.png b/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/logo.png new file mode 100644 index 0000000000000..7b70b24f184e5 Binary files /dev/null and b/blockchains/ethereum/assets/0x7039cd6D7966672F194E8139074C3D5c4e6DCf65/logo.png differ diff --git a/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/info.json b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/info.json new file mode 100644 index 0000000000000..94c48aef5139e --- /dev/null +++ b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/info.json @@ -0,0 +1,29 @@ +{ + "name": "Shido", + "symbol": "SHIDO", + "type": "ERC20", + "decimals": 18, + "description": "Shido is an infinitely scalable Layer 1 in the interoperable Cosmos, powered by Tendermint Consensus, EVM and WebAssembly.", + "website": "https://shido.io/", + "explorer": "https://etherscan.io/token/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed", + "status": "active", + "id": "0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ShidoGlobal" + }, + { + "name": "github", + "url": "https://github.com/ShidoGlobal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shido-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shido-2/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/logo.png b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/logo.png new file mode 100644 index 0000000000000..c01f437dcf42c Binary files /dev/null and b/blockchains/ethereum/assets/0x72c60bFffEF18dCa51db32b52b819A951b6Ddbed/logo.png differ diff --git a/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/info.json b/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/info.json new file mode 100644 index 0000000000000..002e20c14a77e --- /dev/null +++ b/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/info.json @@ -0,0 +1,17 @@ +{ + "name":"Nettensor", + "type":"ERC20", + "symbol":"NAO", + "decimals": 18, + "website":"https://nettensor.com/", + "description":"Nettensor aims to provide and enables AI Infrastructure on blockchain.", + "explorer":"https://etherscan.io/token/0x72f713D11480DCF08b37E1898670e736688D218d", + "status":"active", + "id":"0x72f713D11480DCF08b37E1898670e736688D218d", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/nettensor" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/logo.png b/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/logo.png new file mode 100644 index 0000000000000..72336c1fbd9c9 Binary files /dev/null and b/blockchains/ethereum/assets/0x72f713D11480DCF08b37E1898670e736688D218d/logo.png differ diff --git a/blockchains/ethereum/assets/0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4/info.json b/blockchains/ethereum/assets/0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4/info.json new file mode 100644 index 0000000000000..473af98fe28e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ixs", + "website": "https://ixswap.io/", + "description": "IX Swap is the “Uniswap” for security tokens (STO) and tokenized stocks (TSO). IX Swap will be the FIRST platform to provide liquidity pools and automated market making functions for the security token (STO) & tokenized stock industry (TSO).", + "explorer": "https://etherscan.io/token/0x73d7c860998ca3c01ce8c808f5577d94d545d1b4", + "type": "ERC20", + "symbol": "IXS", + "decimals": 18, + "status": "active", + "id": "0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4", + "links": [ + { + "name": "github", + "url": "https://github.com/IX-Swap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ix-swap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4/logo.png b/blockchains/ethereum/assets/0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4/logo.png new file mode 100644 index 0000000000000..cd5ca43626308 Binary files /dev/null and b/blockchains/ethereum/assets/0x73d7c860998CA3c01Ce8c808F5577d94d545d1b4/logo.png differ diff --git a/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/info.json b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/info.json new file mode 100644 index 0000000000000..1e50554b5e4b1 --- /dev/null +++ b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Maverick Token", + "website": "https://www.mav.xyz/", + "description": "Maverick Protocol offers a new infrastructure for decentralized finance, built to facilitate the most liquid markets for traders, liquidity providers, DAO treasuries, and developers, powered by a revolutionary Dynamic Distribution Automated Market Maker (AMM).", + "explorer": "https://etherscan.io/token/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD", + "type": "ERC20", + "symbol": "MAV", + "decimals": 18, + "status": "active", + "id": "0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/mavprotocol" + }, + { + "name": "telegram", + "url": "https://t.me/maverickprotocolofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maverick-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/logo.png b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/logo.png new file mode 100644 index 0000000000000..f21e40bef2273 Binary files /dev/null and b/blockchains/ethereum/assets/0x7448c7456a97769F6cD04F1E83A4a23cCdC46aBD/logo.png differ diff --git a/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json b/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json new file mode 100644 index 0000000000000..b4731ac614add --- /dev/null +++ b/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/info.json @@ -0,0 +1,25 @@ +{ + "name": "Nabox Token", + "symbol": "NABOX", + "type": "ERC20", + "decimals": 18, + "description": "Nabox aims to allow users to utilize their digital assets across chains at the click of a button.", + "website": "https://nabox.io/", + "explorer": "https://etherscan.io/token/0x755f34709E369D37C6Fa52808aE84A32007d1155", + "status": "active", + "id": "0x755f34709E369D37C6Fa52808aE84A32007d1155", + "links": [ + { + "name": "telegram", + "url": "https://t.me/naboxcommunity" + }, + { + "name": "twitter", + "url": "https://twitter.com/naboxwallet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nabox/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/logo.png b/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/logo.png new file mode 100644 index 0000000000000..ee3475dce8027 Binary files /dev/null and b/blockchains/ethereum/assets/0x755f34709E369D37C6Fa52808aE84A32007d1155/logo.png differ diff --git a/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/info.json b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/info.json new file mode 100644 index 0000000000000..ca5d9e1ff6f7f --- /dev/null +++ b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/info.json @@ -0,0 +1,21 @@ +{ + "name": "SCAM", + "website": "http://scamcoin.io", + "description": "SCAM is a revolutionary much needed movement in the blockchain industry. We aim to expose fraudulent behavior and raise awareness of scamming activities.", + "explorer": "https://etherscan.io/token/0x766a824314BD1D9FA27C8461754C276772BC666A", + "type": "ERC20", + "symbol": "SCAM", + "decimals": 18, + "status": "active", + "id": "0x766a824314BD1D9FA27C8461754C276772BC666A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/scamcoin_eth" + }, + { + "name": "telegram", + "url": "https://t.me/SCAMCOIN_ETH" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/logo.png b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/logo.png new file mode 100644 index 0000000000000..3599f8faa7e43 Binary files /dev/null and b/blockchains/ethereum/assets/0x766a824314BD1D9FA27C8461754C276772BC666A/logo.png differ diff --git a/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/info.json b/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/info.json new file mode 100644 index 0000000000000..e091cef590fcc --- /dev/null +++ b/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Joe Coin", + "website": "https://www.thejoecoin.com/", + "description": "Joe Coin is a meme coin.", + "explorer": "https://etherscan.io/token/0x76e222b07c53d28b89b0bac18602810fc22b49a8", + "type": "ERC20", + "symbol": "JOE", + "decimals": 18, + "status": "active", + "id": "0x76e222b07C53D28b89b0bAc18602810Fc22B49A8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/joecoin_" + }, + { + "name": "telegram", + "url": "https://t.me/joecoinportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/logo.png b/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/logo.png new file mode 100644 index 0000000000000..078390225ed38 Binary files /dev/null and b/blockchains/ethereum/assets/0x76e222b07C53D28b89b0bAc18602810Fc22B49A8/logo.png differ diff --git a/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/info.json b/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/info.json new file mode 100644 index 0000000000000..14d0951d73a71 --- /dev/null +++ b/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/info.json @@ -0,0 +1,35 @@ +{ + "name": "ICE Token", + "website": "https://ice.io", + "description": "Ice represents the next generation of digital currency, mineable on any mobile device. At its core, Ice Network fosters a trusted community, proliferating the belief that digital currencies can maintain value across diverse use cases. Membership is initiated through invitations, enabling new users to earn and build micro-communities immediately.", + "explorer": "https://etherscan.io/token/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c", + "type": "ERC20", + "symbol": "ICE", + "decimals": 18, + "status": "active", + "id": "0x79F05c263055BA20EE0e814ACD117C20CAA10e0c", + "links": [ + { + "name": "github", + "url": "https://github.com/ice-blockchain" + }, + { + "name": "twitter", + "url": "https://twitter.com/ice_blockchain" + }, + { + "name": "telegram", + "url": "https://t.me/iceblockchain" + }, + { + "name": "whitepaper", + "url": "https://ice.io/whitepaper" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/iceblockchain" + } + ], + "tags": [ + ] +} diff --git a/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/logo.png b/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/logo.png new file mode 100644 index 0000000000000..985650b0545c0 Binary files /dev/null and b/blockchains/ethereum/assets/0x79F05c263055BA20EE0e814ACD117C20CAA10e0c/logo.png differ diff --git a/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/info.json b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/info.json new file mode 100644 index 0000000000000..69ea69c16b1a8 --- /dev/null +++ b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/info.json @@ -0,0 +1,25 @@ +{ + "name": "Golem", + "website": "https://golem.network", + "description": "Golem (GNT) is a peer-to-peer decentralized marketplace for computing power. The project aims to be an alternative to centralized cloud service providers with its lower price point and open-source community of developers.", + "explorer": "https://etherscan.io/token/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429", + "type": "ERC20", + "symbol": "GNT", + "decimals": 18, + "status": "active", + "id": "0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/golemproject" + }, + { + "name": "github", + "url": "https://github.com/golemfactory/golem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/golem-network-tokens/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/logo.png b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/logo.png new file mode 100644 index 0000000000000..644070628b3d6 Binary files /dev/null and b/blockchains/ethereum/assets/0x7DD9c5Cba05E151C895FDe1CF355C9A1D5DA6429/logo.png differ diff --git a/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json b/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json index 5ca0f8da51875..447b29bc1214b 100644 --- a/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json +++ b/blockchains/ethereum/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json @@ -1,10 +1,10 @@ { - "name": "Gomining", + "name": "GoMining", "website": "https://gomining.com/", "description": "Gomining is an exchange token backed by a Top 10 global bitcoin mining project.", "explorer": "https://etherscan.io/token/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989", "type": "ERC20", - "symbol": "GMT", + "symbol": "GOMINING", "decimals": 18, "status": "active", "id": "0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989", @@ -57,4 +57,4 @@ "tags": [ "defi" ] -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/info.json b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/info.json new file mode 100644 index 0000000000000..319e8534b9fcf --- /dev/null +++ b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/info.json @@ -0,0 +1,25 @@ +{ + "name": "El Hippo", + "website": "https://hipptoken.com/", + "description": "El Hippo is a transparent meme coin project that focuses first and foremost on building a happy, long-term community. $HIPP is BIG, Watch out - here comes El Hippo!", + "explorer": "https://etherscan.io/token/0x7b744eea1deca2f1b7b31f15ba036fa1759452d7", + "type": "ERC20", + "symbol": "HIPP", + "decimals": 18, + "status": "active", + "id": "0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/elhippomeme" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/el-hippo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/el-hippo/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/logo.png b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/logo.png new file mode 100644 index 0000000000000..1536e72253a01 Binary files /dev/null and b/blockchains/ethereum/assets/0x7b744eEa1dECa2f1B7b31F15Ba036Fa1759452d7/logo.png differ diff --git a/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json b/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json index c52485305b095..0818ca82fe826 100644 --- a/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json +++ b/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json @@ -6,7 +6,7 @@ "website": "https://voltinu.in", "description": "Volt Inu ($VOLT) is a hyper-deflationary token whose aim is to invest in multiple asset classes such as NFTs, nodes, altcoins, staking & farming of stablecoins. This investment diversity allows to mitigate the risk while taking advantage of the possible non-correlated growth of the trending assets.", "explorer": "https://etherscan.io/token/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", - "status": "active", + "status": "abandoned", "id": "0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", "links": [ { diff --git a/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/info.json b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/info.json new file mode 100644 index 0000000000000..1576add7018aa --- /dev/null +++ b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/info.json @@ -0,0 +1,25 @@ +{ + "name": "Oggy Inu (ETH)", + "website": "https://oggyinu.com/", + "description": "OggyInu is a token derived from the impromptu meme market. Not affiliated with any broadcast or production agency.", + "explorer": "https://etherscan.io/token/0x7e877b99897D514da01bD1d177E693EC639961Af", + "type": "ERC20", + "symbol": "OGGY", + "decimals": 9, + "status": "active", + "id": "0x7e877b99897D514da01bD1d177E693EC639961Af", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oggy-inu-eth/" + }, + { + "name": "twitter", + "url": "https://twitter.com/OggyInuLTD" + }, + { + "name": "telegram", + "url": "https://t.me/oggy_inu" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/logo.png b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/logo.png new file mode 100644 index 0000000000000..1b0f2381e7041 Binary files /dev/null and b/blockchains/ethereum/assets/0x7e877b99897D514da01bD1d177E693EC639961Af/logo.png differ diff --git a/blockchains/ethereum/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json b/blockchains/ethereum/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json new file mode 100644 index 0000000000000..ffd48f0635b43 --- /dev/null +++ b/blockchains/ethereum/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json @@ -0,0 +1,48 @@ +{ + "name": "Volt Inu", + "type": "ERC20", + "symbol": "VOLT", + "decimals": 9, + "website": "https://voltinu.in", + "description": "Volt Inu ($VOLT) is a hyper-deflationary token whose aim is to invest in multiple asset classes such as NFTs, nodes, altcoins, staking & farming of stablecoins. This investment diversity allows to mitigate the risk while taking advantage of the possible non-correlated growth of the trending assets.", + "explorer": "https://etherscan.io/token/0x7f792db54b0e580cdc755178443f0430cf799aca", + "status": "active", + "id": "0x7f792db54B0e580Cdc755178443f0430Cf799aCa", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/VoltInuOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/VoltInuOfficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Volt_Inu/" + }, + { + "name": "whitepaper", + "url": "https://voltinu.in/Whitepaper_v1.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCDLlAleEEmhc7pVdB5pZWFg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/volt-inu-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/volt-inu" + }, + { + "name": "medium", + "url": "https://medium.com/@VoltInu" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/logo.png b/blockchains/ethereum/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/logo.png similarity index 100% rename from blockchains/ethereum/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/logo.png rename to blockchains/ethereum/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/logo.png diff --git a/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json b/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json index 1acd8e509c332..e05e149f30101 100644 --- a/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json +++ b/blockchains/ethereum/assets/0x80C62FE4487E1351b47Ba49809EBD60ED085bf52/info.json @@ -8,9 +8,6 @@ "decimals": 18, "status": "active", "id": "0x80C62FE4487E1351b47Ba49809EBD60ED085bf52", - "tags": [ - "staking-native" - ], "links": [ { "name": "github", @@ -25,4 +22,4 @@ "url": "https://medium.com/@clv_org" } ] -} +} diff --git a/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/info.json b/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/info.json new file mode 100644 index 0000000000000..bc0fb1bfe289f --- /dev/null +++ b/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/info.json @@ -0,0 +1,21 @@ +{ + "name": "Opulous", + "type": "ERC20", + "symbol": "OPUL", + "website": "https://opulous.org/", + "decimals": 18, + "description": "Opulous Token believe in a future where musicians keep control of the music they create and forge even deeper connections with their fans.", + "explorer": "https://etherscan.io/token/0x80d55c03180349fff4a229102f62328220a96444", + "status": "active", + "id": "0x80D55c03180349Fff4a229102F62328220A96444", + "links": [ + { + "name": "telegram", + "url": "https://t.me/opulousapp" + }, + { + "name": "twitter", + "url": "https://twitter.com/opulousapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/logo.png b/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/logo.png new file mode 100644 index 0000000000000..afa7fedd2bd39 Binary files /dev/null and b/blockchains/ethereum/assets/0x80D55c03180349Fff4a229102F62328220A96444/logo.png differ diff --git a/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/info.json b/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/info.json new file mode 100644 index 0000000000000..bc6dba70a14fb --- /dev/null +++ b/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/info.json @@ -0,0 +1,28 @@ +{ + "name": "Neiro", + "website": "https://neiroeth.io", + "description": "The 1st $Neiro on Ethereum,community-managed.The heir aoparent to @dogecoin.", + "explorer": "https://etherscan.io/token/0x812ba41e071c7b7fa4ebcfb62df5f45f6fa853ee", + "type": "ERC20", + "symbol": "Neiro", + "decimals": 9, + "status": "active", + "id": "0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/neiroethcto" + }, + { + "name": "telegram", + "url": "https://t.me/ETHNEIROCTO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/first-neiro-on-ethereum/" + } + ], + "tags":[ + "memes" + ] + } diff --git a/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/logo.png b/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/logo.png new file mode 100644 index 0000000000000..32a2e6ef10675 Binary files /dev/null and b/blockchains/ethereum/assets/0x812Ba41e071C7b7fA4EBcFB62dF5F45f6fA853Ee/logo.png differ diff --git a/blockchains/ethereum/assets/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35/info.json b/blockchains/ethereum/assets/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35/info.json new file mode 100644 index 0000000000000..87c2153326190 --- /dev/null +++ b/blockchains/ethereum/assets/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35/info.json @@ -0,0 +1,25 @@ +{ + "name": "Cudos", + "website": "https://www.cudos.org/", + "description": "CUDOS is a decentralised blockchain-based network that provides access to sustainable and highly scalable distributed cloud computing resources for Web3 natives and enterprises requiring GPU-optimised and general computing virtual machines to power their dApps and AI workloads.", + "explorer": "https://etherscan.io/token/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35", + "type": "ERC20", + "symbol": "CUDOS", + "decimals": 18, + "status": "active", + "id": "0x817bbDbC3e8A1204f3691d14bB44992841e3dB35", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CUDOS_" + }, + { + "name": "telegram", + "url": "https://t.me/cudostelegram" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cudos/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35/logo.png b/blockchains/ethereum/assets/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35/logo.png new file mode 100644 index 0000000000000..c2434e2e887aa Binary files /dev/null and b/blockchains/ethereum/assets/0x817bbDbC3e8A1204f3691d14bB44992841e3dB35/logo.png differ diff --git a/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/info.json b/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/info.json new file mode 100644 index 0000000000000..204538bd75674 --- /dev/null +++ b/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/info.json @@ -0,0 +1,21 @@ +{ + "name": "DevvE", + "website": "https://www.devve.io", + "description": "DevvE is a next-gen cryptocurrency that is 1/3bn energy use of Bitcoin, 1/10M cost of Ethereum, 8M tps with patents around fraud, theft, loss, privacy and regulatory compliance.", + "explorer": "https://etherscan.io/token/0x8248270620aa532e4d64316017be5e873e37cc09", + "type": "ERC20", + "symbol": "DEVVE", + "decimals": 18, + "status": "active", + "id": "0x8248270620Aa532E4d64316017bE5E873E37cc09", + "links": [ + { + "name": "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 0000000000000..dd84efefc1dec Binary files /dev/null and b/blockchains/ethereum/assets/0x8248270620Aa532E4d64316017bE5E873E37cc09/logo.png differ diff --git a/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json b/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json new file mode 100644 index 0000000000000..3b50bc62ca608 --- /dev/null +++ b/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/info.json @@ -0,0 +1,37 @@ +{ + "name": "TravelCare", + "website": "https://travelcare.io/", + "description": "TRAVEL is the reward token of the Travel Care platform.", + "explorer": "https://etherscan.io/token/0x826e5ec70dbc5607ff9218011fbb97f9a8d97953", + "type": "ERC20", + "symbol": "TRAVEL", + "decimals": 18, + "status": "active", + "id": "0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953", + "tags": [ + "defi", + "staking" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/TokenTravelCare" + }, + { + "name": "twitter", + "url": "https://twitter.com/travelcareio" + }, + { + "name": "telegram", + "url": "https://t.me/travelcareio" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cyNhzfPMyT" + }, + { + "name": "whitepaper", + "url": "https://content.travelcare.io/whitepaper/whitepaperENG.pdf" + } + ] +} diff --git a/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/logo.png b/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/logo.png new file mode 100644 index 0000000000000..6eaf751e1bbd2 Binary files /dev/null and b/blockchains/ethereum/assets/0x826e5Ec70DbC5607fF9218011FBb97F9a8D97953/logo.png differ diff --git a/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/info.json b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/info.json new file mode 100644 index 0000000000000..97792c37e334a --- /dev/null +++ b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/info.json @@ -0,0 +1,40 @@ +{ + "name": "ELF wallet (ELF)", + "type": "ERC20", + "symbol": "ELF", + "decimals": 18, + "website": "https://www.elfwallets.com/", + "description": "Multi-chain Wallet in WEB3.Multi-chain Wallet, Security First, Full Control by User.", + "explorer": "https://etherscan.io/token/0x831be1970511c069ddedc452ffbbee55eeb70170", + "status": "active", + "id": "0x831bE1970511C069ddEdc452fFbbEE55eEB70170", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ElfWallet" + }, + { + "name": "github", + "url": "https://github.com/ELF-Wallet" + }, + { + "name": "telegram", + "url": "https://t.me/ElfWallet_Global" + }, + { + "name": "whitepaper", + "url": "https://www.elfwallets.com/ELF.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elf-wallet/" + }, + { + "name": "medium", + "url": "https://medium.com/@elfwallet" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/logo.png b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/logo.png new file mode 100644 index 0000000000000..2f9cdfc5cb30c Binary files /dev/null and b/blockchains/ethereum/assets/0x831bE1970511C069ddEdc452fFbbEE55eEB70170/logo.png differ diff --git a/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/info.json b/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/info.json new file mode 100644 index 0000000000000..8337187305c25 --- /dev/null +++ b/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Savings Dai", + "website": "https://app.sparkprotocol.io/", + "description": "Savings Dai (sDAI) is an ERC-4626 representation/wrapper of DAI in the Dai Savings Rate (DSR) module.", + "explorer": "https://etherscan.io/token/0x83f20f44975d03b1b09e64809b757c47f942beea", + "type": "ERC20", + "symbol": "sDAI", + "decimals": 18, + "status": "active", + "id": "0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/savings-dai/" + }, + { + "name": "twitter", + "url": "https://twitter.com/MakerDAO" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/logo.png b/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/logo.png new file mode 100644 index 0000000000000..656812ea77fc5 Binary files /dev/null and b/blockchains/ethereum/assets/0x83F20F44975D03b1b09e64809B757c47f942BEeA/logo.png differ diff --git a/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/info.json b/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/info.json new file mode 100644 index 0000000000000..f853ebd98c1cf --- /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 0000000000000..55ecb67cfcb68 Binary files /dev/null and b/blockchains/ethereum/assets/0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB/logo.png differ diff --git a/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/info.json b/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/info.json new file mode 100644 index 0000000000000..a75cf3a667422 --- /dev/null +++ b/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/info.json @@ -0,0 +1,28 @@ +{ + "name": "YAWN", + "type": "ERC20", + "symbol": "YAWN", + "decimals": 18, + "website": "https://yawnsworld.com", + "description": "Welcome to Yawn’s World!", + "explorer": "https://etherscan.io/token/0x881d4C8618D68872fA404518B2460eA839A02a6a", + "status": "active", + "id": "0x881d4C8618D68872fA404518B2460eA839A02a6a", + "links": [ + { + "name": "telegram", + "url": "https://t.me/yawnsworld" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/yawn/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/yawn" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/logo.png b/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/logo.png new file mode 100644 index 0000000000000..ba2d9537e05fd Binary files /dev/null and b/blockchains/ethereum/assets/0x881d4C8618D68872fA404518B2460eA839A02a6a/logo.png differ diff --git a/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/info.json b/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/info.json index e60f7a7ec0897..6c146e976e47a 100644 --- a/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/info.json +++ b/blockchains/ethereum/assets/0x88800092fF476844f74dC2FC427974BBee2794Ae/info.json @@ -22,10 +22,6 @@ "name": "twitter", "url": "https://twitter.com/AmbireWallet" }, - { - "name": "reddit", - "url": "https://reddit.com/r/AdEx" - }, { "name": "blog", "url": "https://ambire.medium.com" @@ -34,17 +30,13 @@ "name": "telegram", "url": "https://t.me/AmbireOfficial" }, - { - "name": "discord", - "url": "https://discord.com/invite/nMBGJsb" - }, { "name": "facebook", "url": "https://facebook.com/AmbireAdEx" }, { "name": "whitepaper", - "url": "https://ambire.notion.site/ambire/Ambire-Wallet-Whitepaper-d502e54caf584fe7a67f9b0a018cd10f" + "url": "https://ambire.com/whitepaper" }, { "name": "coinmarketcap", diff --git a/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/info.json b/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/info.json new file mode 100644 index 0000000000000..3004756be6cad --- /dev/null +++ b/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/info.json @@ -0,0 +1,17 @@ +{ + "name": "Yawn's World", + "website": "https://yawnsworld.com/", + "description": "He slept through his chance to join the Boys' Club, a regret he's carried ever since. Now, Yawn is launching $YAWN, the first meme token letting holders benefit from Yawn-branded ventures", + "explorer": "https://etherscan.io/token/0x88Ce174C655B6d11210A069B2c106632DaBDB068", + "type": "ERC20", + "symbol": "YAWN", + "decimals": 18, + "status": "active", + "id": "0x88Ce174C655B6d11210A069B2c106632DaBDB068", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/yawnsworld" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/logo.png b/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/logo.png new file mode 100644 index 0000000000000..8a4c7022f5607 Binary files /dev/null and b/blockchains/ethereum/assets/0x88Ce174C655B6d11210A069B2c106632DaBDB068/logo.png differ diff --git a/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/info.json b/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/info.json new file mode 100644 index 0000000000000..88dfcc84b7e3d --- /dev/null +++ b/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/info.json @@ -0,0 +1,48 @@ +{ + "name": "Dione (DIONE)", + "type": "ERC20", + "symbol": "DIONE", + "decimals": 9, + "website": "https://www.dioneprotocol.com", + "description": "Dione Protocol is spearheading a groundbreaking initiative to revolutionize the energy industry through an incentivized energy trading ecosystem on an EVM-compatible L1 blockchain.", + "explorer": "https://etherscan.io/token/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697", + "status": "active", + "id": "0x89B69F2d1adffA9A253d40840B6Baa7fC903D697", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DioneProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/DioneProtocol" + }, + { + "name": "whitepaper", + "url": "https://dioneprotocol.com/whitepaper.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/DioneProtocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dione" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dione-protocol/" + }, + { + "name": "medium", + "url": "https://medium.com/@dioneprotocol" + }, + { + "name": "github", + "url": "https://github.com/DioneProtocol" + } + ], + "tags": [ + "staking-native" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/logo.png b/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/logo.png new file mode 100644 index 0000000000000..40be38ed056ce Binary files /dev/null and b/blockchains/ethereum/assets/0x89B69F2d1adffA9A253d40840B6Baa7fC903D697/logo.png differ diff --git a/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/info.json b/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/info.json new file mode 100644 index 0000000000000..f6a5b6e1ab64c --- /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 0000000000000..6003c9af77b82 Binary files /dev/null and b/blockchains/ethereum/assets/0x8AB2ff0116A279a99950C66A12298962D152B83c/logo.png differ diff --git a/blockchains/ethereum/assets/0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852/info.json b/blockchains/ethereum/assets/0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852/info.json new file mode 100644 index 0000000000000..e0306621fd12d --- /dev/null +++ b/blockchains/ethereum/assets/0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852/info.json @@ -0,0 +1,21 @@ +{ + "name": "Arbius", + "website": "https://arbius.ai/", + "description": "Arbius is a decentralized network for machine learning and a token with a fixed supply like Bitcoin.", + "explorer": "https://etherscan.io/token/0x8afe4055ebc86bd2afb3940c0095c9aca511d852", + "type": "ERC20", + "symbol": "AIUS", + "decimals": 18, + "status": "active", + "id": "0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/arbius_ai" + }, + { + "name": "telegram", + "url": "https://t.me/arbius_ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852/logo.png b/blockchains/ethereum/assets/0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852/logo.png new file mode 100644 index 0000000000000..bfc1ab0e5f586 Binary files /dev/null and b/blockchains/ethereum/assets/0x8AFE4055Ebc86Bd2AFB3940c0095C9aca511d852/logo.png differ diff --git a/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/info.json b/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/info.json new file mode 100644 index 0000000000000..6cdefca88fcef --- /dev/null +++ b/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/info.json @@ -0,0 +1,21 @@ +{ + "name": "pepe", + "type": "ERC20", + "symbol": "PEPEBOMB", + "decimals": 18, + "website": "https://pepebomb.org/", + "description": "PepeBomb is an innovative digital currency project issued on the Ethereum blockchain as an ERC-20 standard token.", + "explorer": "https://etherscan.io/token/0x8dba4bc68126bd186fbb62c976539d1558c9fe73", + "status": "active", + "id": "0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/pepebombeth" + }, + { + "name": "telegram", + "url": "https://t.me/PEPE_Bomb" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/logo.png b/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/logo.png new file mode 100644 index 0000000000000..343c6e1f94c91 Binary files /dev/null and b/blockchains/ethereum/assets/0x8DBa4bC68126Bd186Fbb62C976539D1558c9Fe73/logo.png differ diff --git a/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json b/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/info.json new file mode 100644 index 0000000000000..53f895ff93742 --- /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 0000000000000..3bc1cf77897db Binary files /dev/null and b/blockchains/ethereum/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/logo.png differ diff --git a/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/info.json b/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/info.json new file mode 100644 index 0000000000000..e5f9fce97a456 --- /dev/null +++ b/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/info.json @@ -0,0 +1,21 @@ +{ + "name": "Architex", + "website": "https://architex.ai", + "description": "Architex leverages decentralized ASIC & GPU hardware to enhance blockchain and AI networks, including Bitcoin, Bittensor, and Morpheus.", + "explorer": "https://etherscan.io/token/0x8e4d27d772099e18900caf5dcc36cb612dcee886", + "type": "ERC20", + "symbol": "ARCX", + "decimals": 18, + "status": "active", + "id": "0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Architex_ai" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/architex" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/logo.png b/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/logo.png new file mode 100644 index 0000000000000..ec37396be217e Binary files /dev/null and b/blockchains/ethereum/assets/0x8E4d27d772099e18900CAF5Dcc36Cb612DcEE886/logo.png differ diff --git a/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/info.json b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/info.json new file mode 100644 index 0000000000000..e73c91f542d13 --- /dev/null +++ b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/info.json @@ -0,0 +1,24 @@ +{ + "name": "Okage Inu", + "symbol": "OKAGE", + "type": "ERC20", + "decimals": 18, + "description": "Okage Inu is a project seeking to change the way the world interacts with memecoins by creating an infinitely scalable, future-proof, and highly secure ecosystem that is engineered around positive feedback loops between DEX, Chain, and Swap.", + "website": "https://okageinu.com/", + "explorer": "https://etherscan.io/token/0x8dfc8cc3201425669fae803e1eb125cddd4189ec", + "status": "active", + "id": "0x8dfc8cc3201425669FaE803e1eB125cddd4189eC", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/okageerc" + }, + { + "name": "telegram", + "url": "https://t.me/OkageInu" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/logo.png b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/logo.png new file mode 100644 index 0000000000000..c5a86e41753d2 Binary files /dev/null and b/blockchains/ethereum/assets/0x8dfc8cc3201425669FaE803e1eB125cddd4189eC/logo.png differ diff --git a/blockchains/ethereum/assets/0x8eD97a637A790Be1feff5e888d43629dc05408F6/info.json b/blockchains/ethereum/assets/0x8eD97a637A790Be1feff5e888d43629dc05408F6/info.json new file mode 100644 index 0000000000000..a6158707c7c74 --- /dev/null +++ b/blockchains/ethereum/assets/0x8eD97a637A790Be1feff5e888d43629dc05408F6/info.json @@ -0,0 +1,17 @@ +{ + "name":"Non-Playable Coin", + "type":"ERC20", + "symbol":"NPC", + "decimals": 18, + "website":"https://nonplayablecoin.io/", + "description":"A hive mind of unique and special individuals. $NPC is a meme fungible token (MFT) tradable on both Uniswap and NFT exchanges.", + "explorer":"https://etherscan.io/token/0x8ed97a637a790be1feff5e888d43629dc05408f6", + "status":"active", + "id":"0x8eD97a637A790Be1feff5e888d43629dc05408F6", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/NonPlayableCoin" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x8eD97a637A790Be1feff5e888d43629dc05408F6/logo.png b/blockchains/ethereum/assets/0x8eD97a637A790Be1feff5e888d43629dc05408F6/logo.png new file mode 100644 index 0000000000000..4f52059c17609 Binary files /dev/null and b/blockchains/ethereum/assets/0x8eD97a637A790Be1feff5e888d43629dc05408F6/logo.png differ diff --git a/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/info.json b/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/info.json new file mode 100644 index 0000000000000..a3d377d2cbfaf --- /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 0000000000000..c43b83973316f Binary files /dev/null and b/blockchains/ethereum/assets/0x92CfbEC26C206C90aeE3b7C66A9AE673754FaB7e/logo.png differ diff --git a/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/info.json b/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/info.json new file mode 100644 index 0000000000000..9dfbe7a2f9a97 --- /dev/null +++ b/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/info.json @@ -0,0 +1,21 @@ +{ + "name": "Media Licensing Token", + "type": "ERC20", + "symbol": "MLT", + "decimals": 18, + "website": "https://www.milc.global/", + "description": "MILC - Media Industry Licensing Content. Global decentralized marketplace for professional content trading, licensing and production.", + "explorer": "https://etherscan.io/token/0x9506d37f70eB4C3d79C398d326C871aBBf10521d", + "status": "active", + "id": "0x9506d37f70eB4C3d79C398d326C871aBBf10521d", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/milc-platform/" + }, + { + "name": "twitter", + "url": "https://twitter.com/MILCplatform" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/logo.png b/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/logo.png new file mode 100644 index 0000000000000..a92c4598cf4fc Binary files /dev/null and b/blockchains/ethereum/assets/0x9506d37f70eB4C3d79C398d326C871aBBf10521d/logo.png differ diff --git a/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json b/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json index 9b99e9e5be214..01d68cc4010de 100644 --- a/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json +++ b/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json @@ -6,7 +6,7 @@ "website": "https://www.dypius.com/", "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", "explorer": "https://etherscan.io/token/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "status": "active", + "status": "abandoned", "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", "links": [ { @@ -41,7 +41,6 @@ "tags": [ "governance", "nft", - "defi", - "staking-native" + "defi" ] } diff --git a/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png b/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png deleted file mode 100644 index 129342cfae435..0000000000000 Binary files a/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/info.json b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/info.json new file mode 100644 index 0000000000000..027f530aab4e2 --- /dev/null +++ b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/info.json @@ -0,0 +1,21 @@ +{ + "name": "Flipped Pepe", + "website": "https://epep.gg", + "description": "Flipped Pepe $EPEP. The most memeable memecoin in existence, FLIPPED.", + "explorer": "https://etherscan.io/token/0x97e3c21f27182498382f81e32fbe0ea3a0e3d79b", + "type": "ERC20", + "symbol": "EPEP", + "decimals": 9, + "status": "active", + "id": "0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b", + "links": [ + { + "name": "telegram", + "url": "https://t.me/hteniocepeP" + }, + { + "name": "twitter", + "url": "https://twitter.com/FlippedPepe" + } + ] +} diff --git a/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/logo.png b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/logo.png new file mode 100644 index 0000000000000..2f1a0dafec665 Binary files /dev/null and b/blockchains/ethereum/assets/0x97e3C21f27182498382f81e32fbe0ea3A0e3D79b/logo.png differ diff --git a/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/info.json b/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/info.json new file mode 100644 index 0000000000000..b483ac6344966 --- /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 0000000000000..1035dc9aac237 Binary files /dev/null and b/blockchains/ethereum/assets/0x9B3A8159e119eb09822115AE08Ee1526849e1116/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D39A5DE30e57443BfF2A8307A4256c8797A3497/info.json b/blockchains/ethereum/assets/0x9D39A5DE30e57443BfF2A8307A4256c8797A3497/info.json new file mode 100644 index 0000000000000..87e9b258d7379 --- /dev/null +++ b/blockchains/ethereum/assets/0x9D39A5DE30e57443BfF2A8307A4256c8797A3497/info.json @@ -0,0 +1,21 @@ +{ + "name": "Staked USDe", + "type": "ERC20", + "symbol": "sUSDe", + "decimals": 18, + "website": "https://www.ethena.fi/", + "description": "vEthena is a synthetic dollar protocol built on Ethereum that will provide a crypto-native solution for money not reliant on traditional banking system infrastructure, alongside a globally accessible dollar denominated savings instrument - the 'Internet Bond'.", + "explorer": "https://etherscan.io/token/0x9d39a5de30e57443bff2a8307a4256c8797a3497", + "status": "active", + "id": "0x9D39A5DE30e57443BfF2A8307A4256c8797A3497", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ethena_labs" + }, + { + "name": "telegram", + "url": "https://t.me/ethena_labs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D39A5DE30e57443BfF2A8307A4256c8797A3497/logo.png b/blockchains/ethereum/assets/0x9D39A5DE30e57443BfF2A8307A4256c8797A3497/logo.png new file mode 100644 index 0000000000000..e1b7f5c1764ac Binary files /dev/null and b/blockchains/ethereum/assets/0x9D39A5DE30e57443BfF2A8307A4256c8797A3497/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/info.json b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/info.json new file mode 100644 index 0000000000000..c59ff05685f7b --- /dev/null +++ b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/info.json @@ -0,0 +1,29 @@ +{ + "name": "SSV", + "website": "https://ssv.network/", + "description": "ssv. the network is a decentralized staking infrastructure that enables the distributed operation of an Ethereum validator. An open-source protocol for simple and scalable access to decentralized ETH staking for all.", + "explorer": "https://etherscan.io/token/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54", + "type": "ERC20", + "symbol": "SSV", + "decimals": 18, + "status": "active", + "id": "0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54", + "links": [ + { + "name": "github", + "url": "https://github.com/bloxapp/ssv" + }, + { + "name": "twitter", + "url": "https://twitter.com/ssv_network" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ssv-network/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ssv-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/logo.png b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/logo.png new file mode 100644 index 0000000000000..429bf6b6fec32 Binary files /dev/null and b/blockchains/ethereum/assets/0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54/logo.png differ diff --git a/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/info.json b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/info.json new file mode 100644 index 0000000000000..3b4499d0259a5 --- /dev/null +++ b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/info.json @@ -0,0 +1,25 @@ +{ + "name": "BORED PEPE VIP CLUB", + "website": "https://boredpepevipclub.com", + "description": "BPVC is a Coin named $BPVC and a collection of 10,000 Bored Pepe NFTs unique digital collectibles living on the Ethereum blockchain.", + "explorer": "https://etherscan.io/token/0x9d95486e1b0e0ea8a5361e853901f731b7f8e403", + "type": "ERC20", + "symbol": "BPVC", + "decimals": 18, + "status": "active", + "id": "0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BoredPepeVC" + }, + { + "name": "telegram", + "url": "https://t.me/BoredPepeVC" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bored-pepe-vip-club/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/logo.png b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/logo.png new file mode 100644 index 0000000000000..ffba09e350c7f Binary files /dev/null and b/blockchains/ethereum/assets/0x9D95486E1B0E0Ea8A5361e853901F731B7f8e403/logo.png differ diff --git a/blockchains/ethereum/assets/0x9DCAF532dBa85E565bF6B425f07377eC2bb6F46A/info.json b/blockchains/ethereum/assets/0x9DCAF532dBa85E565bF6B425f07377eC2bb6F46A/info.json new file mode 100644 index 0000000000000..40a1e889ddb3b --- /dev/null +++ b/blockchains/ethereum/assets/0x9DCAF532dBa85E565bF6B425f07377eC2bb6F46A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dragonball Z Tribu", + "type": "ERC20", + "symbol": "DBZ", + "decimals": 8, + "website": "http://dragonballztribute.com", + "description": "$DBZ A tribute to the legend, the mastermind behind the record-breaking Dragon Ball Franchise.", + "explorer": "https://etherscan.io/token/0x9dcaf532dba85e565bf6b425f07377ec2bb6f46a", + "status": "active", + "id": "0x9DCAF532dBa85E565bF6B425f07377eC2bb6F46A", + "links": [ + { + "name": "telegram", + "url": "https://t.me/dragonballztribute" + }, + { + "name": "twitter", + "url": "https://twitter.com/DBZ_tribute" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9DCAF532dBa85E565bF6B425f07377eC2bb6F46A/logo.png b/blockchains/ethereum/assets/0x9DCAF532dBa85E565bF6B425f07377eC2bb6F46A/logo.png new file mode 100644 index 0000000000000..f786e048c9412 Binary files /dev/null and b/blockchains/ethereum/assets/0x9DCAF532dBa85E565bF6B425f07377eC2bb6F46A/logo.png differ diff --git a/blockchains/ethereum/assets/0x9E9FbDE7C7a83c43913BddC8779158F1368F0413/info.json b/blockchains/ethereum/assets/0x9E9FbDE7C7a83c43913BddC8779158F1368F0413/info.json new file mode 100644 index 0000000000000..cb2d75b2d0d20 --- /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/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/info.json b/blockchains/ethereum/assets/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/info.json new file mode 100644 index 0000000000000..be364fa216dcf --- /dev/null +++ b/blockchains/ethereum/assets/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/info.json @@ -0,0 +1,21 @@ +{ + "name": "Biaoqing", + "website": "https://biaoqing.live/", + "description": "Biaoqing ($BIAO) is a memecoin on the Ethereum blockchain, inspired by the famous Chinese meme representing facial expressions.", + "explorer": "https://etherscan.io/token/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08", + "type": "ERC20", + "symbol": "BIAO", + "decimals": 9, + "status": "active", + "id": "0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/biaoerc20" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/biaoqing/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/logo.png b/blockchains/ethereum/assets/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/logo.png new file mode 100644 index 0000000000000..96147ad932f12 Binary files /dev/null and b/blockchains/ethereum/assets/0x9Fd9278f04f01c6a39a9d1c1CD79f7782C6ADe08/logo.png differ diff --git a/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json index b7a147c90ae35..9118a603e8d7f 100644 --- a/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json +++ b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/info.json @@ -3,20 +3,24 @@ "type": "ERC20", "symbol": "BEN", "decimals": 18, - "website": "https://bencoineth.com/", - "description": "Ben token aims to be another meme coin... or is it?", + "website": "https://joinbencoin.com/", + "description": "Empowering Retail Investors through Crypto Advocacy, Education, Transparency and Representation.", "explorer": "https://etherscan.io/token/0x9bf1d7d63dd7a4ce167cf4866388226eeefa702e", "status": "active", "id": "0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E", "links": [ { "name": "twitter", - "url": "https://twitter.com/bencoin_eth" + "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/" @@ -27,6 +31,7 @@ } ], "tags": [ - "memes" + "governance", + "defi" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/logo.png b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/logo.png index 612926c50e78e..665e296697e89 100644 Binary files a/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/logo.png and b/blockchains/ethereum/assets/0x9bf1D7D63dD7a4ce167CF4866388226EEefa702E/logo.png differ diff --git a/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/logo.png b/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/logo.png index fce6b5ea004e8..e428af9216608 100644 Binary files a/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/logo.png and b/blockchains/ethereum/assets/0x9fa69536d1cda4A04cFB50688294de75B505a9aE/logo.png differ diff --git a/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/info.json b/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/info.json new file mode 100644 index 0000000000000..3a08cf72698ae --- /dev/null +++ b/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cirus", + "type": "ERC20", + "symbol": "CIRUS", + "decimals": 18, + "website": "https://cirusfoundation.com/", + "description": "The fluctuating protocol token that plays a role in stabilizing RSV and confers the cryptographic right to purchase excess Reserve tokens as the network grows.", + "explorer": "https://etherscan.io/token/0xa01199c61841fce3b3dafb83fefc1899715c8756", + "status": "active", + "id": "0xA01199c61841Fce3b3daFB83FeFC1899715c8756", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CirusFoundation" + }, + { + "name": "telegram", + "url": "https://t.me/cirusfoundation" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/logo.png b/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/logo.png new file mode 100644 index 0000000000000..c471fa52c208e Binary files /dev/null and b/blockchains/ethereum/assets/0xA01199c61841Fce3b3daFB83FeFC1899715c8756/logo.png differ diff --git a/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/info.json b/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/info.json new file mode 100644 index 0000000000000..0c7104fcbba79 --- /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 0000000000000..f668e19d090b7 Binary files /dev/null and b/blockchains/ethereum/assets/0xA3cB87080e68AD54D00573983D935Fa85d168FDE/logo.png differ diff --git a/blockchains/ethereum/assets/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24/info.json b/blockchains/ethereum/assets/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24/info.json new file mode 100644 index 0000000000000..235ca4302b44d --- /dev/null +++ b/blockchains/ethereum/assets/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24/info.json @@ -0,0 +1,29 @@ +{ + "name": "NeyroAI", + "type": "ERC20", + "symbol": "NAI", + "decimals": 18, + "website": "https://neyroai.org", + "description": "NeyroAI offers a unique opportunity to invest in cutting-edge blockchain technology. Our platform ensures transparency, security, and high profitability. By investing in NeyroAI, you are not only supporting innovations in digital technology but also gaining a chance for significant financial growth.", + "explorer": "https://etherscan.io/token/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24", + "status": "spam", + "id": "0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24", + "links": [ + { + "name": "telegram", + "url": "https://t.me/neyroai_community" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neyroai/" + }, + { + "name": "docs", + "url": "https://neyrowhitepaper.com/" + } + ], + "tags": [ + "defi", + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24/logo.png b/blockchains/ethereum/assets/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24/logo.png new file mode 100644 index 0000000000000..9cb9dacceb90a Binary files /dev/null and b/blockchains/ethereum/assets/0xA74FD910a6dcC844bA42839108A7A72AA2EE2c24/logo.png differ diff --git a/blockchains/ethereum/assets/0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a/info.json b/blockchains/ethereum/assets/0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a/info.json new file mode 100644 index 0000000000000..d06d505cf1697 --- /dev/null +++ b/blockchains/ethereum/assets/0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a/info.json @@ -0,0 +1,21 @@ +{ + "name": "meow", + "type": "ERC20", + "symbol": "MEOW", + "decimals": 18, + "website": "https://www.meowcoinerc.com/", + "description": "There was a time when cats ruled the Interweb. In recent times, dog coins have taken over, leaving us a near extinct species", + "explorer": "https://etherscan.io/token/0xa75ad62a1b6b78eea6c54c22eb697ca0b125f97a", + "status": "active", + "id": "0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/meowerc20" + }, + { + "name": "telegram", + "url": "https://t.me/meowerc20portal" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a/logo.png b/blockchains/ethereum/assets/0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a/logo.png new file mode 100644 index 0000000000000..402acb7f942a8 Binary files /dev/null and b/blockchains/ethereum/assets/0xA75AD62a1b6b78eEA6c54C22Eb697Ca0b125f97a/logo.png differ diff --git a/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json new file mode 100644 index 0000000000000..0b0a9a32f3afe --- /dev/null +++ b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/info.json @@ -0,0 +1,25 @@ +{ + "name": "Bounce Token", + "website": "https://bounce.finance/", + "description": "Bounce is a decentralized auction platform, incorporating liquidity mining, decentralized governance and staking mechanisms. The first principle of Bounce is scarcity of resources, which creates a competitive swap environment.", + "explorer": "https://etherscan.io/token/0xa9b1eb5908cfc3cdf91f9b8b3a74108598009096", + "type": "ERC20", + "symbol": "Auction", + "decimals": 18, + "status": "active", + "id": "0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bounce_finance" + }, + { + "name": "telegram", + "url": "https://t.me/bounce_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bounce-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png new file mode 100644 index 0000000000000..c05d45d42e9c1 Binary files /dev/null and b/blockchains/ethereum/assets/0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096/logo.png differ diff --git a/blockchains/ethereum/assets/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A/info.json b/blockchains/ethereum/assets/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A/info.json new file mode 100644 index 0000000000000..566bee4de2ba7 --- /dev/null +++ b/blockchains/ethereum/assets/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A/info.json @@ -0,0 +1,25 @@ +{ + "name": "pepeCoin", + "website": "pepecoin.io", + "description": "$PEPECOIN Est. 2016, is building the first decentralized social wrapper for DeFi. Creating Open Source tooling for DeFi's very own decentralized town square.", + "explorer": "https://etherscan.io/token/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A", + "type": "ERC20", + "symbol": "pepecoin", + "decimals": 18, + "status": "active", + "id": "0xA9E8aCf069C58aEc8825542845Fd754e41a9489A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/pepecoins" + }, + { + "name": "telegram", + "url": "https://t.me/pepecoins" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pepecoin-/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A/logo.png b/blockchains/ethereum/assets/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A/logo.png new file mode 100644 index 0000000000000..61184c3ac1af8 Binary files /dev/null and b/blockchains/ethereum/assets/0xA9E8aCf069C58aEc8825542845Fd754e41a9489A/logo.png differ diff --git a/blockchains/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json b/blockchains/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json index 0b719980f1deb..d5a6c7078c0a3 100644 --- a/blockchains/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json +++ b/blockchains/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "QANX", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa", "links": [ { diff --git a/blockchains/ethereum/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json b/blockchains/ethereum/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json new file mode 100644 index 0000000000000..e4f8c9b3eb7a0 --- /dev/null +++ b/blockchains/ethereum/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json @@ -0,0 +1,57 @@ +{ + "name": "QANX Token", + "website": "https://qanplatform.com", + "description": "QANX is the utility token of QAN Platform.", + "explorer": "https://etherscan.io/token/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA", + "type": "ERC20", + "symbol": "QANX", + "decimals": 18, + "status": "active", + "id": "0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA", + "links": [ + { + "name": "telegram", + "url": "https://t.me/QANplatform" + }, + { + "name": "telegram_news", + "url": "https://t.me/QANplatform_ANN" + }, + { + "name": "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/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/logo.png b/blockchains/ethereum/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png similarity index 100% rename from blockchains/ethereum/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/logo.png rename to blockchains/ethereum/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png diff --git a/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/info.json b/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/info.json new file mode 100644 index 0000000000000..8357ef42af00b --- /dev/null +++ b/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/info.json @@ -0,0 +1,40 @@ +{ + "name": "Baby Doge Coin", + "type": "ERC20", + "symbol": "BabyDoge", + "decimals": 9, + "website": "https://babydoge.com/", + "description": "Baby Doge Coin has learned a few tricks and lessons from his meme father, Doge. A new crypto birthed by fans of the Doge Meme online community. He is Hyper-deflationary with static reflection that rewards holders, so more baby doge coins are being automatically added to your wallet each transaction. Simply Love, pet, and hold as 5% from each transaction is automatically redistributed to baby doge holders via smart contract.", + "explorer": "https://etherscan.io/token/0xac57de9c1a09fec648e93eb98875b212db0d460b", + "status": "active", + "id": "0xAC57De9C1A09FeC648E93EB98875B212DB0d460B", + "tags": [ + "deflationary" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/babydogecoin" + }, + { + "name": "telegram", + "url": "https://t.me/babydogecoin" + }, + { + "name": "discord", + "url": "https://discord.com/invite/babydogecoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/babydogecoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/Baby_doge_coin" + }, + { + "name": "whitepaper", + "url": "https://cdn.filestackcontent.com/FNtpWVlfRGyCGhth5FMA" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/logo.png b/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/logo.png new file mode 100644 index 0000000000000..138b6528aad65 Binary files /dev/null and b/blockchains/ethereum/assets/0xAC57De9C1A09FeC648E93EB98875B212DB0d460B/logo.png differ diff --git a/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/info.json b/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/info.json new file mode 100644 index 0000000000000..e920600bab041 --- /dev/null +++ b/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/info.json @@ -0,0 +1,75 @@ +{ + "name": "Vita Inu", + "type": "ERC20", + "symbol": "VINU", + "decimals": 18, + "website": "https://vitainu.org", + "description": "Vita Inu is the world’s first fast and feeless dog coin with high TPS and native smart contracts. VINU is the powerful multi-chain currency and governance token of the Vinuverse. The VINU community believes cryptocurrencies should be moved around freely, securely, and efficiently.", + "explorer": "https://etherscan.io/token/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9", + "status": "active", + "id": "0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/vitainucoin" + }, + { + "name": "github", + "url": "https://github.com/vita-inu" + }, + { + "name": "telegram", + "url": "https://t.me/vitainu" + }, + { + "name": "telegram_news", + "url": "https://t.me/vinu_news" + }, + { + "name": "medium", + "url": "https://medium.com/vitainu" + }, + { + "name": "discord", + "url": "https://discord.com/invite/vinu" + }, + { + "name": "whitepaper", + "url": "https://vitainu.org/whitepaper" + }, + { + "name": "facebook", + "url": "https://facebook.com/vitainucoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/vitainucoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/vitainu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vita-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vita-inu" + }, + { + "name": "source_code", + "url": "https://etherscan.io/address/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9#code" + } + ], + "tags": [ + "memes", + "defi", + "deflationary", + "gamefi", + "staking", + "nft", + "governance", + "wrapped" + ] +} diff --git a/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/logo.png b/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/logo.png new file mode 100644 index 0000000000000..281119d19c3d9 Binary files /dev/null and b/blockchains/ethereum/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/logo.png differ diff --git a/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/info.json b/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/info.json new file mode 100644 index 0000000000000..fab2bcc3353dd --- /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 0000000000000..21df1e53ca4fe Binary files /dev/null and b/blockchains/ethereum/assets/0xAaAAAA20D9E0e2461697782ef11675f668207961/logo.png differ diff --git a/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/info.json b/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/info.json new file mode 100644 index 0000000000000..e213ee409715d --- /dev/null +++ b/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/info.json @@ -0,0 +1,17 @@ +{ + "name": "Swarm Markets", + "website": "https://swarm.com/", + "description": "Swarm Markets is a licensed DeFi platform a unified exchange for securities and crypto. Swarm Markets makes it possible for institutional and retail investors to trade tokens based on all kinds of real-world assets, such as commodities and traditional market securities.", + "explorer": "https://etherscan.io/token/0xb17548c7b510427baac4e267bea62e800b247173", + "type": "ERC20", + "symbol": "SMT", + "decimals": 18, + "status": "active", + "id": "0xB17548c7B510427baAc4e267BEa62e800b247173", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SwarmMarkets" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/logo.png b/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/logo.png new file mode 100644 index 0000000000000..dbe784745b117 Binary files /dev/null and b/blockchains/ethereum/assets/0xB17548c7B510427baAc4e267BEa62e800b247173/logo.png differ diff --git a/blockchains/ethereum/assets/0xB528edBef013aff855ac3c50b381f253aF13b997/info.json b/blockchains/ethereum/assets/0xB528edBef013aff855ac3c50b381f253aF13b997/info.json new file mode 100644 index 0000000000000..9d852635929bb --- /dev/null +++ b/blockchains/ethereum/assets/0xB528edBef013aff855ac3c50b381f253aF13b997/info.json @@ -0,0 +1,21 @@ +{ + "name": "Aevo", + "type": "ERC20", + "symbol": "AEVO", + "decimals": 18, + "website": "https://www.aevo.xyz/", + "description": "Aevo is a next-generation options exchange.", + "explorer": "https://etherscan.io/token/0xB528edBef013aff855ac3c50b381f253aF13b997", + "status": "active", + "id": "0xB528edBef013aff855ac3c50b381f253aF13b997", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/aevoxyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/aevo/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB528edBef013aff855ac3c50b381f253aF13b997/logo.png b/blockchains/ethereum/assets/0xB528edBef013aff855ac3c50b381f253aF13b997/logo.png new file mode 100644 index 0000000000000..9fc4efab5bda5 Binary files /dev/null and b/blockchains/ethereum/assets/0xB528edBef013aff855ac3c50b381f253aF13b997/logo.png differ diff --git a/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/info.json b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/info.json new file mode 100644 index 0000000000000..515049ad539cd --- /dev/null +++ b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/info.json @@ -0,0 +1,40 @@ +{ + "name": "Wall Street Memes", + "type": "ERC20", + "symbol": "WSM", + "decimals": 18, + "website": "https://wallstmemes.com", + "description": "Wall Street Memes is born out of the infamous GameStop fiasco of 2021, and the legacy of those brave Wall Street Bets heroes still endures today. It is the ultimate expression of the internet’s triumph over rampant capitalism. The token raised over $25m USD in the presale and recorded over $55m trading volume in the first 24hrs with listings on multiple tier 1 exchanges. Whilst the project initially started as a meme coin with meme only utility, there are big things coming, with announcements due on project updates very soon. ", + "explorer": "https://etherscan.io/token/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf", + "status": "active", + "id": "0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/wallstmemes" + }, + { + "name": "discord", + "url": "https://discord.com/invite/4E538pzeGX" + }, + { + "name": "telegram", + "url": "https://t.me/wallst_memes" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wall-street-memes/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCi-M8QFGjDbBQRY5lnl3x-g" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wall-street-memes" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/logo.png b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/logo.png new file mode 100644 index 0000000000000..f9069e357e65d Binary files /dev/null and b/blockchains/ethereum/assets/0xB62E45c3Df611dcE236A6Ddc7A493d79F9DFadEf/logo.png differ diff --git a/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/info.json b/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/info.json new file mode 100644 index 0000000000000..1048f2ea71423 --- /dev/null +++ b/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/info.json @@ -0,0 +1,21 @@ +{ + "name": "BOBO", + "website": "https://bobothebear.io/", + "description": "Bobo the Bear is a meme character associated with bear markets, and is often posted on 4chan's /biz/ board. It originated in 2018, and is commonly shared alongside Apu Apustaja and Pepe the Frog.", + "explorer": "https://etherscan.io/token/0xb90b2a35c65dbc466b04240097ca756ad2005295", + "type": "ERC20", + "symbol": "BOBO", + "decimals": 18, + "status": "active", + "id": "0xB90B2A35C65dBC466b04240097Ca756ad2005295", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bobo-coin/" + }, + { + "name": "twitter", + "url": "https://twitter.com/bobocoineth" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/logo.png b/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/logo.png new file mode 100644 index 0000000000000..25f2ffac7d746 Binary files /dev/null and b/blockchains/ethereum/assets/0xB90B2A35C65dBC466b04240097Ca756ad2005295/logo.png differ diff --git a/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json b/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json index 3032d99ad23a3..e1b68e704fe33 100644 --- a/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json +++ b/blockchains/ethereum/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json @@ -40,8 +40,7 @@ ], "tags": [ "governance", - "defi", - "staking-native" + "defi" ] } diff --git a/blockchains/ethereum/assets/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/logo.png b/blockchains/ethereum/assets/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/logo.png index 461f447864c2f..ac9e70af82146 100644 Binary files a/blockchains/ethereum/assets/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/logo.png and b/blockchains/ethereum/assets/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/logo.png differ diff --git a/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png index f04a7ed2bc073..b4ea83b05d468 100644 Binary files a/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png and b/blockchains/ethereum/assets/0xC18c07a18198A6340cf4d94855fE5eb6DD33b46E/logo.png differ diff --git a/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/info.json b/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/info.json index 3366bb921796f..e01ca2198a8eb 100644 --- a/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/info.json +++ b/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/info.json @@ -1,11 +1,44 @@ { "name": "Hokkaidu Inu", - "website": "https://hokk.finance/", - "description": "Leveraging community to build an inclusive financial ecosystem. We are Meme Utility", + "website": "https://hokkaiduinu.com/", + "description": "Hokkaidu Inu memecoin revival. Emerging from the abyss, forged by the community.", "explorer": "https://etherscan.io/token/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E", "type": "ERC20", "symbol": "HOKK", "decimals": 9, - "status": "abandoned", - "id": "0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E" -} \ No newline at end of file + "status": "active", + "id": "0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E", + "tags": [ + "memes" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/HokkaInuEth" + }, + { + "name": "telegram", + "url": "https://t.me/HokkaiduInuOfficial" + }, + { + "name": "whitepaper", + "url": "https://hokkaidoinu.biz/HOKK_whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hokkaidu-inu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hokkaidu-inu/" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/HokkaiduInutoken/" + }, + { + "name": "discord", + "url": "https://discord.com/x4G55weEME" + } + ] +} diff --git a/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/logo.png b/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/logo.png new file mode 100644 index 0000000000000..c19ac5ed8a740 Binary files /dev/null and b/blockchains/ethereum/assets/0xC40AF1E4fEcFA05Ce6BAb79DcD8B373d2E436c4E/logo.png differ diff --git a/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/info.json b/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/info.json index d0c7b9b6551ea..44f0326b0630c 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 b5a17306b591b..2d4eebd8e09c7 100644 Binary files a/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png and b/blockchains/ethereum/assets/0xC4C2614E694cF534D407Ee49F8E44D125E4681c4/logo.png differ diff --git a/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/info.json b/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/info.json index 7ff931315b8d7..d2e322fe3bf44 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 c7a1369fb2712..4077cfed07720 100755 Binary files a/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png and b/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png differ diff --git a/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json b/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json index 9c238bd8b41ec..49b38c5b6e078 100644 --- a/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json +++ b/blockchains/ethereum/assets/0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d/info.json @@ -6,6 +6,6 @@ "website": "", "description": "-", "explorer": "https://etherscan.io/token/0xc66ea802717bfb9833400264dd12c2bceaa34a6d", - "status": "active", + "status": "abandoned", "id": "0xC66eA802717bFb9833400264Dd12c2bCeAa34a6d" -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/info.json b/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/info.json new file mode 100644 index 0000000000000..046c64b4014bd --- /dev/null +++ b/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/info.json @@ -0,0 +1,17 @@ +{ + "name":"Inu Inu", + "type":"ERC20", + "symbol":"INUINU", + "decimals": 18, + "website":"https://inuinu.co/", + "description":"$INUINU is a zero-tax meme token that was stealth-launched with anti-bot protection. INU INU is a memecoin with lifestyle.", + "explorer":"https://etherscan.io/token/0xc6bdb96e29c38dc43f014eed44de4106a6a8eb5f", + "status":"active", + "id":"0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f", + "links":[ + { + "name":"twitter", + "url":"https://inuinu.net/" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/logo.png b/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/logo.png new file mode 100644 index 0000000000000..b72c4e79b8fa6 Binary files /dev/null and b/blockchains/ethereum/assets/0xC6bDb96E29c38DC43f014Eed44dE4106A6A8eB5f/logo.png differ diff --git a/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/info.json b/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/info.json new file mode 100644 index 0000000000000..1749a9d96bfd9 --- /dev/null +++ b/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/info.json @@ -0,0 +1,17 @@ +{ + "name": "Ethervista", + "website": "https://ethervista.app/", + "description": "Ethervista is a value-compounding deflationary token, the native currency for the EthervistaDEX", + "explorer": "https://etherscan.io/token/0xc9bca88b04581699fab5aa276ccaff7df957cbbf", + "type": "ERC20", + "symbol": "VISTA", + "decimals": 18, + "status": "active", + "id": "0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ethervista" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/logo.png b/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/logo.png new file mode 100644 index 0000000000000..57553ee81c6c8 Binary files /dev/null and b/blockchains/ethereum/assets/0xC9bCa88B04581699fAb5aa276CCafF7Df957cbbf/logo.png differ diff --git a/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json b/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/info.json index f9c146eddfa7e..9941d60f290c0 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 c9674e2f10734..0000000000000 Binary files a/blockchains/ethereum/assets/0xCE3f08e664693ca792caCE4af1364D5e220827B2/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/info.json b/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/info.json new file mode 100644 index 0000000000000..f33063860dd5e --- /dev/null +++ b/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/info.json @@ -0,0 +1,17 @@ +{ + "name":"I love puppies", + "type":"ERC20", + "symbol":"PUPPIES", + "decimals": 9, + "website":"https://www.ilovepuppies.cc/", + "description":"In a world where dogs once ruled,a new era dawns- the Age of PUPPIES.Endorsed by Elon,Let the dogs rest. The $PUPPIES are taking over.", + "explorer":"https://etherscan.io/token/0xcf91b70017eabde82c9671e30e5502d312ea6eb2", + "status":"active", + "id":"0xCF91b70017eABDE82c9671E30e5502D312eA6eb2", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/puppies_cc" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/logo.png b/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/logo.png new file mode 100644 index 0000000000000..71c27883b981f Binary files /dev/null and b/blockchains/ethereum/assets/0xCF91b70017eABDE82c9671E30e5502D312eA6eb2/logo.png differ diff --git a/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/info.json b/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/info.json new file mode 100644 index 0000000000000..6000e9b29d81f --- /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 0000000000000..9817ae9b94349 Binary files /dev/null and b/blockchains/ethereum/assets/0xCa14007Eff0dB1f8135f4C25B34De49AB0d42766/logo.png differ diff --git a/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/info.json b/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/info.json new file mode 100644 index 0000000000000..6a9e8b5b8e4d1 --- /dev/null +++ b/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/info.json @@ -0,0 +1,17 @@ +{ + "name":"Wrapped eETH", + "type":"ERC20", + "symbol":"weETH", + "decimals": 18, + "website":"https://www.ether.fi/", + "description":"ether.fi's weETH is a decentralized, non-custodial liquid staking token that earns staking rewards while maintaining full liquidity and control over their assets. weETH offers users a flexible and secure way to contribute to network validation and participate in the DeFi space.", + "explorer":"https://etherscan.io/token/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee", + "status":"active", + "id":"0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/ether_fi" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/logo.png b/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/logo.png new file mode 100644 index 0000000000000..4cf7b8f153203 Binary files /dev/null and b/blockchains/ethereum/assets/0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee/logo.png differ diff --git a/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/info.json b/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/info.json index 0c774f8642f88..e0480d113beb0 100644 --- a/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/info.json +++ b/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/info.json @@ -12,17 +12,45 @@ "defi" ], "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CoWSwap" + }, { "name": "github", - "url": "https://github.com/gnosis/cowswap" + "url": "https://github.com/cowprotocol" }, { - "name": "twitter", - "url": "https://twitter.com/MEVprotection" + "name": "github", + "url": "https://github.com/cowprotocol/token" }, { "name": "blog", - "url": "https://cow.fi" + "url": "https://blog.cow.fi" + }, + { + "name": "docs", + "url": "https://docs.cow.fi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cowprotocol" + }, + { + "name": "forum", + "url": "https://forum.cow.fi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cow-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cow-protocol" + }, + { + "name": "youtube", + "url": "https://youtube.com/@CoWSwap" } ] -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png b/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png index 1dd63e79b0669..b9ef84f3b7923 100644 Binary files a/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png and b/blockchains/ethereum/assets/0xD057B63f5E69CF1B929b356b579Cba08D7688048/logo.png differ diff --git a/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/info.json b/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/info.json new file mode 100644 index 0000000000000..669961eac9252 --- /dev/null +++ b/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/info.json @@ -0,0 +1,32 @@ +{ + "name": "MAGA", + "website": "https://maga-hat.vip/", + "description": "MAGA - TRUMP'S HAT. SUPPORT TRUMP SUPPORT MAGA", + "explorer": "https://etherscan.io/token/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5", + "type": "ERC20", + "symbol": "MAGA", + "decimals": 9, + "status": "active", + "id": "0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5", + "tags": [ + "memes" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/maga-ethereum/" + }, + { + "name": "twitter", + "url": "https://twitter.com/MagaHAT_ETH" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/maga-hat" + }, + { + "name": "telegram", + "url": "https://t.me/MAGA_HAT" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/logo.png b/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/logo.png new file mode 100644 index 0000000000000..b6707618443b5 Binary files /dev/null and b/blockchains/ethereum/assets/0xD29DA236dd4AAc627346e1bBa06A619E8c22d7C5/logo.png differ diff --git a/blockchains/ethereum/assets/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04/info.json b/blockchains/ethereum/assets/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04/info.json new file mode 100644 index 0000000000000..16d4924a95e21 --- /dev/null +++ b/blockchains/ethereum/assets/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04/info.json @@ -0,0 +1,25 @@ +{ + "name": "LinqAI", + "type": "ERC20", + "symbol": "LNQ", + "decimals": 18, + "website": "https://www.linqai.com/", + "description": "LinqAI is at the forefront of blending innovative technology with practical business solutions.", + "explorer": "https://etherscan.io/token/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04", + "status": "active", + "id": "0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/linq_ai" + }, + { + "name": "telegram", + "url": "https://t.me/LinqAI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/linqai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04/logo.png b/blockchains/ethereum/assets/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04/logo.png new file mode 100644 index 0000000000000..fa376eda9a98f Binary files /dev/null and b/blockchains/ethereum/assets/0xD4F4D0a10BcaE123bB6655E8Fe93a30d01eEbD04/logo.png differ diff --git a/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/info.json b/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/info.json new file mode 100644 index 0000000000000..7fc8a63d6b91e --- /dev/null +++ b/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/info.json @@ -0,0 +1,32 @@ +{ + "name": "Chickencoin", + "type": "ERC20", + "symbol": "CHKN", + "decimals": 18, + "website": "https://www.chickencoin.com/", + "description": "Chickencoin is a meme coin launched on the Ethereum blockchain as a ERC-20 token and forked from the PEPE smart contract.", + "explorer": "https://etherscan.io/token/0xd55210bb6898c021a19de1f58d27b71f095921ee", + "status": "active", + "id": "0xD55210Bb6898C021a19de1F58d27b71f095921Ee", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/chickencoin_eth" + }, + { + "name": "github", + "url": "https://github.com/0xMeow404/Chickencoin" + }, + { + "name": "telegram", + "url": "https://t.me/chickencoin_eth" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chickencoin/" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/logo.png b/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/logo.png new file mode 100644 index 0000000000000..17085576031ee Binary files /dev/null and b/blockchains/ethereum/assets/0xD55210Bb6898C021a19de1F58d27b71f095921Ee/logo.png differ diff --git a/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/info.json b/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/info.json new file mode 100644 index 0000000000000..9ac23e1c39089 --- /dev/null +++ b/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/info.json @@ -0,0 +1,21 @@ +{ + "name": "pufETH", + "type": "ERC20", + "symbol": "pufETH", + "decimals": 18, + "website": "https://www.puffer.fi/", + "description": "Puffer is a decentralized native liquid restaking protocol (nLRP) built on Eigenlayer. It makes native restaking on Eigenlayer more accessible, allowing anyone to run an Ethereum Proof of Stake (PoS) validator earning extra revenue through EigenLayer AVSs.", + "explorer": "https://etherscan.io/token/0xd9a442856c234a39a81a089c06451ebaa4306a72", + "status": "active", + "id": "0xD9A442856C234a39a81a089C06451EBAa4306a72", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/puffer_finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pufeth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/logo.png b/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/logo.png new file mode 100644 index 0000000000000..66647a41873f8 Binary files /dev/null and b/blockchains/ethereum/assets/0xD9A442856C234a39a81a089C06451EBAa4306a72/logo.png differ diff --git a/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/info.json b/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/info.json new file mode 100644 index 0000000000000..70357d7cf808c --- /dev/null +++ b/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/info.json @@ -0,0 +1,21 @@ +{ + "name": "HeyFlork", + "type": "ERC20", + "symbol": "Flork", + "decimals": 18, + "website": "https://flork.io/", + "description": "FLORK - Bringing Webcomic Whimsy to Ethereum's Memecoin Realm.", + "explorer": "https://etherscan.io/token/0xdb0238975ce84f89212ffa56c64c0f2b47f8f153", + "status": "active", + "id": "0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/HeyFlork" + }, + { + "name": "telegram", + "url": "https://t.me/HeyFlork" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/logo.png b/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/logo.png new file mode 100644 index 0000000000000..ad2cf064c4a1d Binary files /dev/null and b/blockchains/ethereum/assets/0xDB0238975Ce84f89212FFA56C64C0f2b47F8f153/logo.png differ diff --git a/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/info.json b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/info.json index 9b78d035165a7..bdc3b37266b3b 100644 --- a/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/info.json +++ b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/info.json @@ -1,5 +1,5 @@ { - "name": "COW", + "name": "CoW Protocol Token", "type": "ERC20", "symbol": "COW", "decimals": 18, @@ -11,15 +11,23 @@ "links": [ { "name": "twitter", - "url": "https://twitter.com/MEVprotection" + "url": "https://twitter.com/CoWSwap" }, { "name": "github", - "url": "https://github.com/gnosis/cow-token/" + "url": "https://github.com/cowprotocol" + }, + { + "name": "source_code", + "url": "https://github.com/cowprotocol/token" }, { "name": "blog", - "url": "https://medium.com/@cow-protocol" + "url": "https://blog.cow.fi" + }, + { + "name": "docs", + "url": "https://docs.cow.fi" }, { "name": "discord", @@ -28,6 +36,18 @@ { "name": "forum", "url": "https://forum.cow.fi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cow-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cow-protocol" + }, + { + "name": "youtube", + "url": "https://youtube.com/@CoWSwap" } ], "tags": [ diff --git a/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png index 21fa17ac3330c..8df3f5b49a612 100644 Binary files a/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png and b/blockchains/ethereum/assets/0xDEf1CA1fb7FBcDC777520aa7f396b4E015F497aB/logo.png differ diff --git a/blockchains/ethereum/assets/0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3/info.json b/blockchains/ethereum/assets/0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3/info.json new file mode 100644 index 0000000000000..b9ffd5024a8b6 --- /dev/null +++ b/blockchains/ethereum/assets/0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Monkas", + "website": "https://monkas.top/", + "description": "In the vast and ever-expanding realm of cryptocurrencies, where innovation dances with imagination, emerges a unique digital asset - MonkaS Coin.", + "explorer": "https://etherscan.io/token/0xdc7ac5d5d4a9c3b5d8f3183058a92776dc12f4f3", + "type": "ERC20", + "symbol": "MONKAS", + "decimals": 9, + "status": "active", + "id": "0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monkas/" + }, + { + "name": "twitter", + "url": "https://twitter.com/monkaserc20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3/logo.png b/blockchains/ethereum/assets/0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3/logo.png new file mode 100644 index 0000000000000..ed67a2c54678f Binary files /dev/null and b/blockchains/ethereum/assets/0xDc7AC5d5d4a9C3B5d8F3183058A92776Dc12f4f3/logo.png differ diff --git a/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/info.json b/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/info.json new file mode 100644 index 0000000000000..1cd0bf538cd42 --- /dev/null +++ b/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/info.json @@ -0,0 +1,21 @@ +{ + "name": "SPX6900", + "website": "https://www.spx6900.com/", + "description": "SPX6900 is an advanced blockchain cryptography token with limitless possibilities and scientific utilization.", + "explorer": "https://etherscan.io/token/0xe0f63a424a4439cbe457d80e4f4b51ad25b2c56c", + "type": "ERC20", + "symbol": "SPX", + "decimals": 8, + "status": "active", + "id": "0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spx6900/" + }, + { + "name": "twitter", + "url": "https://twitter.com/spx6900" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/logo.png b/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/logo.png new file mode 100644 index 0000000000000..21b50fe934d46 Binary files /dev/null and b/blockchains/ethereum/assets/0xE0f63A424a4439cBE457D80E4f4b51aD25b2c56C/logo.png differ diff --git a/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/info.json b/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/info.json new file mode 100644 index 0000000000000..127f7fe6a11f8 --- /dev/null +++ b/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/info.json @@ -0,0 +1,17 @@ +{ + "name": "DGI Game", + "website": "https://www.dgi.game/", + "description": "DGI - Decentralized Gaming Income Token, represents a pioneering venture within the realm of gaming guilds, offering you the most effective way to generate passive income from gaming.", + "explorer": "https://etherscan.io/token/0xe453c3409f8ad2b1fe1ed08e189634d359705a5b", + "type": "ERC20", + "symbol": "DGI", + "decimals": 18, + "status": "active", + "id": "0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DgiGame" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/logo.png b/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/logo.png new file mode 100644 index 0000000000000..f7903bedd73fd Binary files /dev/null and b/blockchains/ethereum/assets/0xE453C3409f8Ad2B1FE1ED08E189634d359705A5B/logo.png differ diff --git a/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/info.json b/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/info.json new file mode 100644 index 0000000000000..3aed2ce6030b7 --- /dev/null +++ b/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/info.json @@ -0,0 +1,26 @@ +{ + "name": "Neiro", + "type": "ERC20", + "symbol": "NEIRO", + "decimals": 9, + "website": "https://www.neirocoin.xyz", + "description": "$NEIRO is a new cryptocurrency with a total supply of 1 billion tokens, offering zero buy/sell tax and no team tokens, which suggests a community-driven approach. It promotes itself as the next big opportunity in the crypto space, drawing comparisons to Dogecoin's rise.", + "explorer": "https://etherscan.io/token/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637", + "status": "active", + "id": "0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/neiro_ethereum?mx=2" + }, + { + "name": "telegram", + "url": "https://t.me/neiro_ethereum" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neiro-eth/" + } + ], + "tags": [] +} diff --git a/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/logo.png b/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/logo.png new file mode 100644 index 0000000000000..e12e7e999cad2 Binary files /dev/null and b/blockchains/ethereum/assets/0xEE2a03Aa6Dacf51C18679C516ad5283d8E7C2637/logo.png differ diff --git a/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/info.json b/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/info.json new file mode 100644 index 0000000000000..71e095d552ca3 --- /dev/null +++ b/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/info.json @@ -0,0 +1,21 @@ +{ + "name": "TITAN X", + "website": "https://app.titanx.win/mine", + "description": "TITAN X has first-of-its-kind tokenomics with 62%+ buy & burn, 28%+ ETH yield and is an application layer crypto that others can build on.", + "explorer": "https://etherscan.io/token/0xf19308f923582a6f7c465e5ce7a9dc1bec6665b1", + "type": "ERC20", + "symbol": "TITANX", + "decimals": 18, + "status": "active", + "id": "0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/TitanXCrypto" + }, + { + "name": "telegram", + "url": "https://t.me/TitanXCrypto" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/logo.png b/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/logo.png new file mode 100644 index 0000000000000..2cfc6ce01c6c0 Binary files /dev/null and b/blockchains/ethereum/assets/0xF19308F923582A6f7c465e5CE7a9Dc1BEC6665B1/logo.png differ diff --git a/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/info.json b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/info.json new file mode 100644 index 0000000000000..d8181de402932 --- /dev/null +++ b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bitgert", + "type": "ERC20", + "symbol": "BRISE", + "decimals": 9, + "website": "https://bitgert.com/", + "description": "Bitgert is a revolutionary crypto engineering organization that aims to revolutionize the way people interact with digital assets. Through their numerous projects, Bitgert has created a comprehensive ecosystem of products that cover all aspects of digital asset ownership.", + "explorer": "https://etherscan.io/token/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A", + "status": "active", + "id": "0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bitgertbrise" + }, + { + "name": "telegram", + "url": "https://t.me/bitgertbrise" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/logo.png b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/logo.png new file mode 100644 index 0000000000000..4f1ec8dede0d1 Binary files /dev/null and b/blockchains/ethereum/assets/0xF2B2f7b47715256Ce4eA43363a867fdce9353e3A/logo.png differ diff --git a/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json b/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json index 65d342e8410d4..1ab550b439c97 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 d7ce5e9cec876..0000000000000 Binary files a/blockchains/ethereum/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/info.json b/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/info.json new file mode 100644 index 0000000000000..99e132e8efba5 --- /dev/null +++ b/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/info.json @@ -0,0 +1,21 @@ +{ + "name": "Janet", + "type": "ERC20", + "symbol": "JANET", + "decimals": 8, + "website": "https://janeteth.ai/", + "description": "Neural Janet ($JANET) is an Ethereum-based meme token that channels the charm of an AI NPC sharing random, witty thoughts online.", + "explorer": "https://etherscan.io/token/0xF63E309818E4EA13782678CE6C31C1234fa61809", + "status": "active", + "id": "0xF63E309818E4EA13782678CE6C31C1234fa61809", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/NeuralJanet" + }, + { + "name": "telegram", + "url": "https://t.me/janetethereum" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/logo.png b/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/logo.png new file mode 100644 index 0000000000000..a954175a779b7 Binary files /dev/null and b/blockchains/ethereum/assets/0xF63E309818E4EA13782678CE6C31C1234fa61809/logo.png differ diff --git a/blockchains/ethereum/assets/0xF6Ce4BE313EaD51511215F1874c898239A331E37/info.json b/blockchains/ethereum/assets/0xF6Ce4BE313EaD51511215F1874c898239A331E37/info.json new file mode 100644 index 0000000000000..7f3a2ee83ffd4 --- /dev/null +++ b/blockchains/ethereum/assets/0xF6Ce4BE313EaD51511215F1874c898239A331E37/info.json @@ -0,0 +1,17 @@ +{ + "name":"Bird Dog", + "type":"ERC20", + "symbol":"BIRDDOG", + "decimals": 9, + "website":"https://birddogonerc.com", + "description":"BirdDog is going to usher a new wave of memetoken to last till the end of times", + "explorer":"https://etherscan.io/token/0xF6Ce4BE313EaD51511215F1874c898239A331E37", + "status":"active", + "id":"0xF6Ce4BE313EaD51511215F1874c898239A331E37", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/Birddog_base" + } + ] + } diff --git a/blockchains/ethereum/assets/0xF6Ce4BE313EaD51511215F1874c898239A331E37/logo.png b/blockchains/ethereum/assets/0xF6Ce4BE313EaD51511215F1874c898239A331E37/logo.png new file mode 100644 index 0000000000000..07935d0e4a077 Binary files /dev/null and b/blockchains/ethereum/assets/0xF6Ce4BE313EaD51511215F1874c898239A331E37/logo.png differ diff --git a/blockchains/ethereum/assets/0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0/info.json b/blockchains/ethereum/assets/0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0/info.json new file mode 100644 index 0000000000000..1d4a51c8bff71 --- /dev/null +++ b/blockchains/ethereum/assets/0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0/info.json @@ -0,0 +1,21 @@ +{ + "name": "rswETH", + "type": "ERC20", + "symbol": "rswETH", + "decimals": 18, + "website": "https://www.swellnetwork.io/", + "description": "Restaked Swell ETH (rswETH) is a LRT that unlocks liquidity for restaked LSTs", + "explorer": "https://etherscan.io/token/0xfae103dc9cf190ed75350761e95403b7b8afa6c0", + "status": "active", + "id": "0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/swellnetworkio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/restaked-swell-ethereum/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0/logo.png b/blockchains/ethereum/assets/0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0/logo.png new file mode 100644 index 0000000000000..36082c9b9f48b Binary files /dev/null and b/blockchains/ethereum/assets/0xFAe103DC9cf190eD75350761e95403b7b8aFa6c0/logo.png differ diff --git a/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/info.json b/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/info.json index 93946fea60c7f..541921ec66f78 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 a997d8b7341c0..0000000000000 Binary files a/blockchains/ethereum/assets/0xFD957F21bd95E723645C07C48a2d8ACB8Ffb3794/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/info.json b/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/info.json new file mode 100644 index 0000000000000..07513ad6662a8 --- /dev/null +++ b/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/info.json @@ -0,0 +1,21 @@ +{ + "name": "ether.fi", + "type": "ERC20", + "symbol": "ETHFI", + "decimals": 18, + "website": "https://www.ether.fi/", + "description": "ether.fi is a liquid restaking protocol on ethereum. Their liquid restaking token, eETH, is the first native liquid restaking token on Ethereum.", + "explorer": "https://etherscan.io/token/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB", + "status": "active", + "id": "0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ether_fi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ether-fi-ethfi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/logo.png b/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/logo.png new file mode 100644 index 0000000000000..febeacece3533 Binary files /dev/null and b/blockchains/ethereum/assets/0xFe0c30065B384F05761f15d0CC899D4F9F9Cc0eB/logo.png differ diff --git a/blockchains/ethereum/assets/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8/info.json b/blockchains/ethereum/assets/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8/info.json new file mode 100644 index 0000000000000..91de47093a711 --- /dev/null +++ b/blockchains/ethereum/assets/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cate", + "website": "https://cateoneth.com/", + "description": "Claims to be part of the Dogeverse, born from @ownthedoge tweet. Based on Ethereum.", + "explorer": "https://etherscan.io/token/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8", + "symbol": "CATE", + "type": "ERC20", + "decimals": 9, + "status": "active", + "id": "0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cate/" + }, + { + "name": "twitter", + "url": "https://twitter.com/cateonethereum" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8/logo.png b/blockchains/ethereum/assets/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8/logo.png new file mode 100644 index 0000000000000..519c930209fc7 Binary files /dev/null and b/blockchains/ethereum/assets/0xa00453052A36D43A99Ac1ca145DFe4A952cA33B8/logo.png differ diff --git a/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/info.json b/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/info.json new file mode 100644 index 0000000000000..b2ff2ff86b785 --- /dev/null +++ b/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ape", + "type": "ERC20", + "symbol": "APE", + "decimals": 18, + "website": "https://www.apetoken.lol/", + "description": "Pur Ape Meme.", + "explorer": "https://etherscan.io/token/0xa0385E7283C83e2871E9aF49EEC0966088421ddD", + "status": "active", + "id": "0xa0385E7283C83e2871E9aF49EEC0966088421ddD", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Ape_Coin_Erc20" + }, + { + "name": "telegram", + "url": "https://t.me/apecoinportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/logo.png b/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/logo.png new file mode 100644 index 0000000000000..3e031aebd0e82 Binary files /dev/null and b/blockchains/ethereum/assets/0xa0385E7283C83e2871E9aF49EEC0966088421ddD/logo.png differ diff --git a/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json b/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json index 6da1d94e8d78f..6f68b450b287d 100644 --- a/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json +++ b/blockchains/ethereum/assets/0xa20f77B7ad5A88badC48800C56507B7274c06Fdc/info.json @@ -31,7 +31,6 @@ } ], "tags": [ - "staking-native", "wrapped" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json new file mode 100644 index 0000000000000..da042e1613083 --- /dev/null +++ b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Binance Beacon ETH", + "type": "ERC20", + "symbol": "wBETH", + "decimals": 18, + "website": "https://www.binance.com/en/wbeth", + "description": "wBETH is a reward-bearing ETH liquid staking token offered by Binance. Each wBETH represents 1 BETH (1:1 to staked ETH) plus all of its accrued ETH2.0 staking rewards starting from when wBETH's conversion rate was initialized at 1:1 on Apr 27th 2023 00:00 (UTC+0).", + "explorer": "https://etherscan.io/token/0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "status": "active", + "id": "0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-beacon-eth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-beacon-eth" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png new file mode 100644 index 0000000000000..832596160ae8d Binary files /dev/null and b/blockchains/ethereum/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png differ diff --git a/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/info.json b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/info.json new file mode 100644 index 0000000000000..09ce6e6942a5c --- /dev/null +++ b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/info.json @@ -0,0 +1,21 @@ +{ + "name": "X", + "website": "https://xerc20.pro", + "description": "$X Project is an Elon-inspired crypto, community-driven, X-Factor rewards, and deflationary mechanics. Join the X revolution now!", + "explorer": "https://etherscan.io/token/0xa62894d5196bc44e4c3978400ad07e7b30352372", + "type": "ERC20", + "symbol": "X", + "decimals": 9, + "status": "active", + "id": "0xa62894D5196bC44e4C3978400Ad07E7b30352372", + "links": [ + { + "name": "discord", + "url": "https://discord.com/YEJR2HN4" + }, + { + "name": "telegram", + "url": "https://t.me/Xerc20" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/logo.png b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/logo.png new file mode 100644 index 0000000000000..c3c5fda4622af Binary files /dev/null and b/blockchains/ethereum/assets/0xa62894D5196bC44e4C3978400Ad07E7b30352372/logo.png differ diff --git a/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/info.json b/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/info.json new file mode 100644 index 0000000000000..fab907a83dd52 --- /dev/null +++ b/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/info.json @@ -0,0 +1,25 @@ +{ + "name": "StormX", + "website": "https://stormx.io", + "description": "Earn crypto when you shop online.", + "explorer": "https://etherscan.io/token/0xa62cc35625b0c8dc1faea39d33625bb4c15bd71c", + "type": "ERC20", + "symbol": "STMX", + "decimals": 18, + "status": "active", + "id": "0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Stormxio" + }, + { + "name": "telegram", + "url": "https://t.me/stormxapp" + }, + { + "name": "reddit", + "url": "https://reddit.com/stormxio/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/logo.png b/blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/logo.png similarity index 100% rename from blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/logo.png rename to blockchains/ethereum/assets/0xa62cc35625B0C8dc1fAEA39d33625Bb4C15bD71C/logo.png diff --git a/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/info.json b/blockchains/ethereum/assets/0xa6C0c097741D55ECd9a3A7DeF3A8253fD022ceB9/info.json new file mode 100644 index 0000000000000..20bf899857d63 --- /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 0000000000000..1b8b37e0f5b28 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 8b9a4ef293823..9606cc09bd02c 100644 --- a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json +++ b/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/info.json @@ -6,6 +6,6 @@ "type": "ERC20", "symbol": "GNT", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xa74476443119A942dE498590Fe1f2454d7D4aC0d" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/logo.png b/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/logo.png deleted file mode 100644 index 46d9e24512b0f..0000000000000 Binary files a/blockchains/ethereum/assets/0xa74476443119A942dE498590Fe1f2454d7D4aC0d/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/info.json b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/info.json new file mode 100644 index 0000000000000..053847110ac3d --- /dev/null +++ b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/info.json @@ -0,0 +1,25 @@ +{ + "name": "Moses", + "website": "https://mosescoin.io", + "description": "WELCOME PEOPLE OF MOSES, GOD SENT MOSES BACK TO EGYPT TO DEMAND THE RELEASE OF THE ISRAELITES FROM SLAVERY. ​MOSES WAS BORN IN A TIME WHEN HIS PEOPLE, THE ISRAELITES, AN ENSLAVED MINORITY, WERE INCREASING IN POPULATION AND, AS A RESULT, THE EGYPTIAN PHARAOH WORRIED THAT THEY MIGHT ALLY THEMSELVES WITH EGYPT'S ENEMIES.", + "explorer": "https://etherscan.io/token/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658", + "type": "ERC20", + "symbol": "MOSES", + "decimals": 18, + "status": "active", + "id": "0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/moses_erc20" + }, + { + "name": "telegram", + "url": "https://t.me/mosescoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moses-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/logo.png b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/logo.png new file mode 100644 index 0000000000000..a78954eb8bc53 Binary files /dev/null and b/blockchains/ethereum/assets/0xa81c39d038Ee26D8443Fe6994cc1D51dc13D7658/logo.png differ diff --git a/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/info.json b/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/info.json new file mode 100644 index 0000000000000..7840a1cebb7f5 --- /dev/null +++ b/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/info.json @@ -0,0 +1,21 @@ +{ + "name": "meson.network", + "type": "ERC20", + "symbol": "MSN", + "decimals": 18, + "website": "https://www.meson.network/", + "description": "Meson network aims to offer pioneering AI + DePIN (Decentralized Physical Infrastructure Network) empowered by people.", + "explorer": "https://etherscan.io/token/0xaa247c0d81b83812e1abf8bab078e4540d87e3fb", + "status": "active", + "id": "0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/NetworkMeson" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/meson-network" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/logo.png b/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/logo.png new file mode 100644 index 0000000000000..5fcf20808020d Binary files /dev/null and b/blockchains/ethereum/assets/0xaA247c0D81B83812e1ABf8bAB078E4540D87e3fB/logo.png differ diff --git a/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/info.json b/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/info.json new file mode 100644 index 0000000000000..a6ac911746b1b --- /dev/null +++ b/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/info.json @@ -0,0 +1,21 @@ +{ + "name": "CREDI", + "website": "https://credefi.finance/", + "description": "Credefi connects crypto lenders with SME borrowers from the fiat economy. Their platform enables decentralized and secured lending to portfolios of businesses, protecting lenders while providing them fixed APY that is uncorrelated with crypto markets’ volatility.", + "explorer": "https://etherscan.io/token/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B", + "type": "ERC20", + "symbol": "CREDI", + "decimals": 18, + "status": "active", + "id": "0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/credefi_finance" + }, + { + "name": "telegram", + "url": "https://t.me/credefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/logo.png b/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/logo.png new file mode 100644 index 0000000000000..7054bba0e5bea Binary files /dev/null and b/blockchains/ethereum/assets/0xaE6e307c3Fe9E922E5674DBD7F830Ed49c014c6B/logo.png differ diff --git a/blockchains/ethereum/assets/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18/info.json b/blockchains/ethereum/assets/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18/info.json new file mode 100644 index 0000000000000..04029fa1050c0 --- /dev/null +++ b/blockchains/ethereum/assets/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18/info.json @@ -0,0 +1,36 @@ +{ + "name": "Kendu Inu", + "type": "ERC20", + "symbol": "KENDU", + "decimals": 18, + "website": "https://kenduinu.com", + "description": "Uniting the six native Japanese dog breeds. Kendu is the keeper of peace, the preserver of life, and the protector of unity. Join the pack!", + "explorer": "https://etherscan.io/token/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18", + "status": "active", + "id": "0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/KenduInu" + }, + { + "name": "telegram", + "url": "https://t.me/KenduInu" + }, + { + "name": "reddit", + "url": "https://reddit.com/KenduInu_Ecosystem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kendu-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/kendu-inu" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18/logo.png b/blockchains/ethereum/assets/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18/logo.png new file mode 100644 index 0000000000000..640d73c749b05 Binary files /dev/null and b/blockchains/ethereum/assets/0xaa95f26e30001251fb905d264Aa7b00eE9dF6C18/logo.png differ diff --git a/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/info.json b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/info.json new file mode 100644 index 0000000000000..b630af8659aae --- /dev/null +++ b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/info.json @@ -0,0 +1,24 @@ +{ + "name": "Mog Coin", + "website": "https://mogcoin.xyz/", + "description": "This coin Mogs all other coins.", + "explorer": "https://etherscan.io/token/0xaaee1a9723aadb7afa2810263653a34ba2c21c7a", + "type": "ERC20", + "symbol": "Mog", + "decimals": 18, + "status": "active", + "id": "0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a", + "tags": [ + "memes" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MogCoinEth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mog-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/logo.png b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/logo.png new file mode 100644 index 0000000000000..fb84f1e879624 Binary files /dev/null and b/blockchains/ethereum/assets/0xaaeE1A9723aaDB7afA2810263653A34bA2C21C7a/logo.png differ diff --git a/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/info.json b/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/info.json new file mode 100644 index 0000000000000..41e140557640d --- /dev/null +++ b/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/info.json @@ -0,0 +1,21 @@ +{ + "name": "ChainSwap", + "website": "https://www.chain-swap.org/", + "description": "Transforming cryptocurrency transactions through innovative cross-chain swap and privacy solutions, built upon ground-breaking ChainLink CCIP (Cross Chain Interoperability Protocol) & CCTP (Cross Chain Transfer Protocol) technology", + "explorer": "https://etherscan.io/token/0xae41b275aaaf484b541a5881a2dded9515184cca", + "type": "ERC20", + "symbol": "CSWAP", + "decimals": 18, + "status": "active", + "id": "0xae41b275aaAF484b541A5881a2dDED9515184CCA", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/chainswaperc" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chainswap-3/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/logo.png b/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/logo.png new file mode 100644 index 0000000000000..a2e7afd0203e4 Binary files /dev/null and b/blockchains/ethereum/assets/0xae41b275aaAF484b541A5881a2dDED9515184CCA/logo.png differ diff --git a/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/info.json b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/info.json new file mode 100644 index 0000000000000..c296be632ab9c --- /dev/null +++ b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/info.json @@ -0,0 +1,36 @@ +{ + "name": "Memecoin", + "symbol": "MEME", + "type": "ERC20", + "decimals": 18, + "description": "Memecoin (MEME) is the native ecosystem token of Memeland. Memeland is the web3 venture studio by 9GAG, the globally popular meme platform.", + "website": "https://www.memecoin.org", + "explorer": "https://etherscan.io/token/0xb131f4a55907b10d1f0a50d8ab8fa09ec342cd74", + "status": "active", + "id": "0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74", + "tags": [ + "memes" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/memecoin" + }, + { + "name": "telegram", + "url": "https://t.me/memecoin" + }, + { + "name": "whitepaper", + "url": "https://www.memecoin.org/whitepaper" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/meme" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/memecoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/logo.png b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/logo.png new file mode 100644 index 0000000000000..2db61d5fb9c56 Binary files /dev/null and b/blockchains/ethereum/assets/0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74/logo.png differ diff --git a/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/info.json b/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/info.json new file mode 100644 index 0000000000000..7858350915813 --- /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 0000000000000..1aea1924e8403 Binary files /dev/null and b/blockchains/ethereum/assets/0xb23d80f5FefcDDaa212212F028021B41DEd428CF/logo.png differ diff --git a/blockchains/ethereum/assets/0xb2617246d0c6c0087f18703d576831899ca94f01/info.json b/blockchains/ethereum/assets/0xb2617246d0c6c0087f18703d576831899ca94f01/info.json new file mode 100644 index 0000000000000..8269e7ea13d0c --- /dev/null +++ b/blockchains/ethereum/assets/0xb2617246d0c6c0087f18703d576831899ca94f01/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZigCoin", + "type": "ERC20", + "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://etherscan.io/token/0xb2617246d0c6c0087f18703d576831899ca94f01", + "status": "active", + "id": "0xb2617246d0c6c0087f18703d576831899ca94f01", + "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/ethereum/assets/0xb2617246d0c6c0087f18703d576831899ca94f01/logo.png b/blockchains/ethereum/assets/0xb2617246d0c6c0087f18703d576831899ca94f01/logo.png new file mode 100644 index 0000000000000..e610bbed620f8 Binary files /dev/null and b/blockchains/ethereum/assets/0xb2617246d0c6c0087f18703d576831899ca94f01/logo.png differ diff --git a/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/info.json b/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/info.json new file mode 100644 index 0000000000000..fb02362901ab1 --- /dev/null +++ b/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Klaus", + "type": "ERC20", + "symbol": "KLAUS", + "decimals": 9, + "website": "https://www.klausoneth.com/", + "description": "$KLAUS - little fish, big dream -riding the wave into the next generation of meme tokens.", + "explorer": "https://etherscan.io/token/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2", + "status": "active", + "id": "0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/KlausOnEth" + }, + { + "name": "telegram", + "url": "https://t.me/klausoneth" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/logo.png b/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/logo.png new file mode 100644 index 0000000000000..cfd787a674464 Binary files /dev/null and b/blockchains/ethereum/assets/0xb612bFC5cE2FB1337Bd29F5Af24ca85DbB181cE2/logo.png differ diff --git a/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/info.json b/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/info.json new file mode 100644 index 0000000000000..c484479b0392e --- /dev/null +++ b/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/info.json @@ -0,0 +1,34 @@ +{ + "name": "SquidGrow", + "type": "ERC20", + "symbol": "SQGROW", + "decimals": 9, + "website": "https://www.squidgrow.com/", + "description": "SquidGrow led by Shibtoshi a prominent Shiba Inu whale, is a multifaceted project blending utility and meme elements. Its token, SquidGrow thrives as the core beneficiary gaining from diverse revenue streams.", + "explorer": "https://etherscan.io/token/0xb72E76cCf005313868DB7b48070901a44629da98", + "status": "active", + "id": "0xb72E76cCf005313868DB7b48070901a44629da98", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Squid_Grow" + }, + { + "name": "telegram", + "url": "https://t.me/squidgrowportalentry" + }, + { + "name": "reddit", + "url": "https://reddit.com/SquidGrow/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/HgsgryRpwB" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/squid-grow/" + } + ], + "tags": [] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/logo.png b/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/logo.png new file mode 100644 index 0000000000000..353c4f9fbe1b5 Binary files /dev/null and b/blockchains/ethereum/assets/0xb72E76cCf005313868DB7b48070901a44629da98/logo.png differ diff --git a/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/info.json b/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/info.json new file mode 100644 index 0000000000000..54bf5ffc4c90d --- /dev/null +++ b/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/info.json @@ -0,0 +1,17 @@ +{ + "name":"Sendex AI", + "type":"ERC20", + "symbol":"SENDEX", + "decimals": 9, + "website":"https://sendex.ai/", + "description":"Sendex AI is a complete Cryptocurrency Fintech Ecosystem containing a anonymous tool that can help users to request payments and send cryptocurrencies in a full privacy process without sender's or receiver's wallet being traceable to anyone", + "explorer":"https://etherscan.io/token/0xb93746dc7a8bf5e381ffb278085b1f62bd0a1fc8", + "status":"active", + "id":"0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/sendexai" + } + ] + } diff --git a/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/logo.png b/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/logo.png new file mode 100644 index 0000000000000..5ae86e1630013 Binary files /dev/null and b/blockchains/ethereum/assets/0xb93746dc7A8bf5E381FFB278085B1F62bd0A1fC8/logo.png differ diff --git a/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/info.json b/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/info.json new file mode 100644 index 0000000000000..fb0e1f4969e75 --- /dev/null +++ b/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/info.json @@ -0,0 +1,21 @@ +{ + "name": "PepeFork", + "website": "https://porkcoin.com/", + "description": "$PORK, a pepe-fork created by @Pauly0x.", + "explorer": "https://etherscan.io/token/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E", + "type": "ERC20", + "symbol": "PORK", + "decimals": 18, + "status": "active", + "id": "0xb9f599ce614Feb2e1BBe58F180F370D05b39344E", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Pork0x" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pepefork/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/logo.png b/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/logo.png new file mode 100644 index 0000000000000..0837fd2a40e36 Binary files /dev/null and b/blockchains/ethereum/assets/0xb9f599ce614Feb2e1BBe58F180F370D05b39344E/logo.png differ diff --git a/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json b/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json index a2bf4d1a9f3c0..91985bc1df22a 100644 --- a/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json +++ b/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/info.json @@ -6,6 +6,6 @@ "website": "https://zedxion.io", "description": "Zedxion offers a comprehensive solution to the major problems faced by the traditional, fiat-driven monetary system. Building a crypto powered ecosystem comprising Zedxion Token.", "explorer": "https://etherscan.io/token/0xbafdabadcf19d0cfbbe0ab9c69cf050d86ff888c", - "status": "active", + "status": "abandoned", "id": "0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/logo.png b/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/logo.png deleted file mode 100644 index f8a3cf70f8f50..0000000000000 Binary files a/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json b/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json index e988ffd7c33de..3bbd2d3fa986b 100644 --- a/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json +++ b/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/info.json @@ -6,7 +6,7 @@ "type": "ERC20", "symbol": "STMX", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xbE9375C6a420D2eEB258962efB95551A5b722803", "links": [ { diff --git a/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/info.json b/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/info.json new file mode 100644 index 0000000000000..f3d3fa7d565b0 --- /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 0000000000000..c14967e272dde Binary files /dev/null and b/blockchains/ethereum/assets/0xba386A4Ca26B85FD057ab1Ef86e3DC7BdeB5ce70/logo.png differ diff --git a/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/info.json b/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/info.json new file mode 100644 index 0000000000000..b7d8bacff948d --- /dev/null +++ b/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/info.json @@ -0,0 +1,21 @@ +{ + "name": "Aethir", + "type": "ERC20", + "symbol": "ATH", + "website": "https://www.aethir.com/", + "explorer": "https://etherscan.io/token/0xbe0ed4138121ecfc5c0e56b40517da27e6c5226b", + "decimals": 18, + "description": "Aethir builds distributed GPU-based compute infrastructure for dynamic, enterprise use cases. It aims to make it easier for GPU infrastructure providers to scale, and simpler for buyers to access GPU worldwide.", + "status": "active", + "id": "0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B", + "links": [ + { + "name": "telegram", + "url": "https://t.me/aethir_cloud" + }, + { + "name": "twitter", + "url": "https://twitter.com/AethirCloud" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/logo.png b/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/logo.png new file mode 100644 index 0000000000000..e5efd01ed606f Binary files /dev/null and b/blockchains/ethereum/assets/0xbe0Ed4138121EcFC5c0E56B40517da27E6c5226B/logo.png differ diff --git a/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/info.json b/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/info.json new file mode 100644 index 0000000000000..c1574ecb82c18 --- /dev/null +++ b/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/info.json @@ -0,0 +1,21 @@ +{ + "name": "ezETH", + "website": "https://www.renzoprotocol.com/", + "description": "Renzo is a Liquid Restaking Token (LRT) and Strategy Manager for EigenLayer. It is the interface to the EigenLayer ecosystem securing Actively Validated Services (AVSs).", + "explorer": "https://etherscan.io/token/0xbf5495efe5db9ce00f80364c8b423567e58d2110", + "type": "ERC20", + "symbol": "Renzo Restaked ETH", + "decimals": 18, + "status": "active", + "id": "0xbf5495Efe5DB9ce00f80364C8B423567e58d2110", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/renzo-restaked-eth/" + }, + { + "name": "twitter", + "url": "https://twitter.com/RenzoProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/logo.png b/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/logo.png new file mode 100644 index 0000000000000..48e5c5ace795d Binary files /dev/null and b/blockchains/ethereum/assets/0xbf5495Efe5DB9ce00f80364C8B423567e58d2110/logo.png differ diff --git a/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/info.json b/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/info.json new file mode 100644 index 0000000000000..9b8b34df42d23 --- /dev/null +++ b/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/info.json @@ -0,0 +1,17 @@ +{ + "name": "Scotty AI", + "website": "https://scottytheai.com/en", + "description": "Scotty AI is an innovative crypto project centered around AI. It combines advanced artificial intelligence with a deep understanding of blockchain technology to serve as a guardian and protector of the secrets within the crypto universe.", + "explorer": "https://etherscan.io/token/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a", + "type": "ERC20", + "symbol": "SCOTTY", + "decimals": 18, + "status": "active", + "id": "0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ScottyThe_Ai" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/logo.png b/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/logo.png new file mode 100644 index 0000000000000..5265de65c0d9e Binary files /dev/null and b/blockchains/ethereum/assets/0xc0dB17Bc219C5ca8746C29ee47862ee3Ad742F4a/logo.png differ diff --git a/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/info.json b/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/info.json index 69be58b41709b..8032ce24a2c9c 100644 --- a/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/info.json +++ b/blockchains/ethereum/assets/0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0/info.json @@ -1,10 +1,10 @@ { - "name": "Wrapped Centrifuge", + "name": "Centrifuge", "type": "ERC20", - "symbol": "wCFG", + "symbol": "CFG", "decimals": 18, "website": "https://centrifuge.io/", - "description": "The Centrifuge Token (CFG) guides the development of Centrifuge using an on-chain governance mechanism.", + "description": "The Centrifuge Token (CFG) guides the development of Centrifuge using an onchain governance mechanism. This is an ERC20 wrapped token of CFG deployed on Ethereum and backed 1:1 by CFG on Centrifuge Chain.", "explorer": "https://etherscan.io/token/0xc221b7e65ffc80de234bbb6667abdd46593d34f0", "status": "active", "id": "0xc221b7E65FfC80DE234bbB6667aBDd46593D34F0", @@ -13,20 +13,20 @@ "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/" + "url": "https://coinmarketcap.com/currencies/centrifuge/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/centrifuge" } ], "tags": [ - "wrapped" + "defi" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/info.json b/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/info.json index e480e8f1298c8..8d55d520f222f 100644 --- a/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/info.json +++ b/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/info.json @@ -6,7 +6,7 @@ "description": "ERC20 is an innovative NFT Collectible token and a new kind of DeFi.", "website": "https://erc20.tech", "explorer": "https://etherscan.io/token/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA", - "status": "active", + "status": "abandoned", "id": "0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA", "tags": [ "deflationary" diff --git a/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/logo.png b/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/logo.png deleted file mode 100644 index 452cbe83aebf9..0000000000000 Binary files a/blockchains/ethereum/assets/0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA/logo.png and /dev/null differ diff --git a/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/info.json b/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/info.json new file mode 100644 index 0000000000000..6177c73d59982 --- /dev/null +++ b/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/info.json @@ -0,0 +1,21 @@ +{ + "name": "GameStop", + "website": "https://gamestop-coin.vip/", + "description": "The $GME on Ethereum For The People", + "explorer": "https://etherscan.io/token/0xc56c7a0eaa804f854b536a5f3d5f49d2ec4b12b8", + "type": "ERC20", + "symbol": "GME", + "decimals": 9, + "status": "active", + "id": "0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamestop/" + }, + { + "name": "twitter", + "url": "https://twitter.com/GMEonETH_" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/logo.png b/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/logo.png new file mode 100644 index 0000000000000..4b8ecb0fc9566 Binary files /dev/null and b/blockchains/ethereum/assets/0xc56C7A0eAA804f854B536A5F3D5f49D2EC4B12b8/logo.png differ diff --git a/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json b/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json new file mode 100644 index 0000000000000..8466e2f80dd05 --- /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 0000000000000..5d54b8a4dba01 Binary files /dev/null and b/blockchains/ethereum/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/logo.png differ diff --git a/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/info.json b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/info.json new file mode 100644 index 0000000000000..802a2bc2515a9 --- /dev/null +++ b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/info.json @@ -0,0 +1,48 @@ +{ + "name": "DRAC Network (DRAC)", + "type": "ERC20", + "symbol": "DRAC", + "decimals": 18, + "website": "https://drac.io", + "description": "Decentralized Rewarding Autonomous Chain.", + "explorer": "https://etherscan.io/token/0xc8a34e86c187830922f841985e376f412ee0088a", + "status": "active", + "id": "0xc8A34E86C187830922f841985E376f412eE0088A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DRAC_Network" + }, + { + "name": "github", + "url": "https://github.com/DRAC-Network-Admin" + }, + { + "name": "telegram", + "url": "https://t.me/DRAC_English" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/drac-token" + }, + { + "name": "whitepaper", + "url": "https://drac.io/whitepaper.pdf" + }, + { + "name": "medium", + "url": "https://dracnetwork.medium.com" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCcD7AsRqhU92IfqTh4SY0kQ" + }, + { + "name": "discord", + "url": "https://discord.com/invite/9DyPCHsk" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/logo.png b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/logo.png new file mode 100644 index 0000000000000..e49a73ebb5521 Binary files /dev/null and b/blockchains/ethereum/assets/0xc8A34E86C187830922f841985E376f412eE0088A/logo.png differ diff --git a/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/info.json b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/info.json new file mode 100644 index 0000000000000..fcf0e7be82d3c --- /dev/null +++ b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/info.json @@ -0,0 +1,33 @@ +{ + "name": "Big Eyes", + "type": "ERC20", + "symbol": "$BIG", + "decimals": 18, + "website": "https://bigeyes.space", + "description": "Big Eyes’ is a full-on community token with the express goal of shifting wealth into the defi ecosystem and protecting an important part of the world’s ecosystem. We are creating the BIG Casino and 20+ P2E games all utilizing $BIG to play. This is the beginning of the $BIG-gest ecosystem in Crypto.", + "explorer": "https://etherscan.io/token/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5", + "status": "active", + "id": "0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BigEyesCoin" + }, + { + "name": "telegram", + "url": "https://t.me/BIGEYESOFFICIAL" + }, + { + "name": "whitepaper", + "url": "https://bigeyes.space/documents/Whitepaper.pdf" + }, + { + "name": "docs", + "url": "https://solidity.finance/audits/BigEyes" + } + ], + "tags": [ + "memes", + "nft" + ] +} diff --git a/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/logo.png b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/logo.png new file mode 100644 index 0000000000000..a9db922bc0cd0 Binary files /dev/null and b/blockchains/ethereum/assets/0xc8De43Bfe33FF496Fa14c270D9CB29Bda196B9B5/logo.png differ diff --git a/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/info.json b/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/info.json new file mode 100644 index 0000000000000..d3e1e134ddb55 --- /dev/null +++ b/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/info.json @@ -0,0 +1,21 @@ +{ + "name": "Draggy", + "type": "ERC20", + "symbol": "DRAGGY", + "decimals": 9, + "website": "https://draggy.co/", + "description": "Draggy is an epic dragon character based on `The Night Riders` book, a famous comic book by artist and illustrator Matt Furie.", + "explorer": "https://etherscan.io/token/0xd12a99dbc40036cec6f1b776dccd2d36f5953b94", + "status": "active", + "id": "0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DraggyCTO" + }, + { + "name": "telegram", + "url": "https://t.me/DraggyOfficialCTO" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/logo.png b/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/logo.png new file mode 100644 index 0000000000000..5f93e39cfc423 Binary files /dev/null and b/blockchains/ethereum/assets/0xd12A99dbC40036CEc6f1b776dccd2d36f5953B94/logo.png differ diff --git a/blockchains/ethereum/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/info.json b/blockchains/ethereum/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/info.json new file mode 100644 index 0000000000000..a9a8601385c4d --- /dev/null +++ b/blockchains/ethereum/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/info.json @@ -0,0 +1,32 @@ +{ +"name": "UAHg", +"type": "ERC20", +"symbol": "UAHg", +"decimals": 6, +"website": "https://uahg.io/en", +"description": "A digital asset denominated in hryvnia and backed by a basket of top stablecoins.", +"explorer": "https://etherscan.io/token/0xd1e0e39bd1758abe0865d5289895a9197c6cd549", +"status": "active", +"id": "0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549", +"links": [ + { + "name": "twitter", + "url": "https://twitter.com/uahg_to" + }, + { + "name": "telegram", + "url": "https://t.me/uahg_to" + }, + { + "name": "whitepaper", + "url": "https://api.uahg.io/storage/uploads/file/variables/ca/au/en_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uahg/" + } +], +"tags": [ + "stablecoin" +] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/logo.png b/blockchains/ethereum/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/logo.png new file mode 100644 index 0000000000000..22f0254137a88 Binary files /dev/null and b/blockchains/ethereum/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/info.json b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/info.json new file mode 100644 index 0000000000000..0a95594d84a4e --- /dev/null +++ b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/info.json @@ -0,0 +1,25 @@ +{ + "name": "XDOGE", + "website": "https://x-doge.vip", + "description": "Embracing Financial Freedom through Elon Musk’s X-Factor In the world of cryptocurrencies, where innovation and imagination converge, the $X Project stands out as a promising opportunity for crypto investors seeking to achieve financial freedom.", + "explorer": "https://etherscan.io/token/0xd2b274cfbf9534f56b59ad0fb7e645e0354f4941", + "type": "ERC20", + "symbol": "XDOGE", + "decimals": 8, + "status": "active", + "id": "0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/XDogeErc20" + }, + { + "name": "telegram", + "url": "https://t.me/xdogeerc2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xdoge-vip/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/logo.png b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/logo.png new file mode 100644 index 0000000000000..63be5587cb375 Binary files /dev/null and b/blockchains/ethereum/assets/0xd2b274CfBf9534f56b59aD0FB7e645e0354f4941/logo.png differ diff --git a/blockchains/ethereum/assets/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/info.json b/blockchains/ethereum/assets/0xd2bA23dE8a19316A638dc1e7a9ADdA1d74233368/info.json new file mode 100644 index 0000000000000..ddab86145e65e --- /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/0xd555498a524612c67f286dF0e0a9a64a73a7Cdc7/info.json b/blockchains/ethereum/assets/0xd555498a524612c67f286dF0e0a9a64a73a7Cdc7/info.json new file mode 100644 index 0000000000000..1b51dcd4c715b --- /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/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json b/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json index 77bf380acabde..1ded01fe089a7 100644 --- a/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json +++ b/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json @@ -6,7 +6,7 @@ "website": "https://squidgrow.wtf", "description": "SquidGrow was conceptualized by anonymous crypto billionaire “Shibtoshi” and is pushing boundaries and setting precedents for a growing meme-utility token.", "explorer": "https://etherscan.io/token/0xd8fa690304d2b2824d918c0c7376e2823704557a", - "status": "active", + "status": "abandoned", "id": "0xd8Fa690304D2B2824D918C0c7376e2823704557A", "links": [ { diff --git a/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/info.json b/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/info.json new file mode 100644 index 0000000000000..2291c36c9c58c --- /dev/null +++ b/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/info.json @@ -0,0 +1,21 @@ +{ + "name": "Orbler", + "type": "ERC20", + "symbol": "ORBR", + "decimals": 18, + "website": "https://orbler.io/", + "description": "Orbler is a dynamic Web3 marketing platform bridging Web2 audiences, offering missions, staking, and community-driven growth strategies.", + "explorer": "https://etherscan.io/token/0xdA30f261a962d5AAe94C9ecd170544600d193766", + "status": "active", + "id": "0xdA30f261a962d5AAe94C9ecd170544600d193766", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Orbler1" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/orbler/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/logo.png b/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/logo.png new file mode 100644 index 0000000000000..9e725803a84a8 Binary files /dev/null and b/blockchains/ethereum/assets/0xdA30f261a962d5AAe94C9ecd170544600d193766/logo.png differ diff --git a/blockchains/ethereum/assets/0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa/info.json b/blockchains/ethereum/assets/0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa/info.json new file mode 100644 index 0000000000000..bd1b8d85ba19b --- /dev/null +++ b/blockchains/ethereum/assets/0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zentry", + "website": "https://zentry.com/", + "description": "Zentry, - the Gaming Superlayer that brings the MMORPG experience to real life, ushering the world’s three billion gamers into a unified Play Economy across digital and physical realms.", + "explorer": "https://etherscan.io/token/0xdbb7a34bf10169d6d2d0d02a6cbb436cf4381bfa", + "type": "ERC20", + "symbol": "ZENT", + "decimals": 18, + "status": "active", + "id": "0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zentry/" + }, + { + "name": "twitter", + "url": "https://twitter.com/ZentryHQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa/logo.png b/blockchains/ethereum/assets/0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa/logo.png new file mode 100644 index 0000000000000..69d770fb0f310 Binary files /dev/null and b/blockchains/ethereum/assets/0xdBB7a34Bf10169d6d2D0d02A6cbb436cF4381BFa/logo.png differ diff --git a/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/info.json b/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/info.json new file mode 100644 index 0000000000000..ccc234fa45063 --- /dev/null +++ b/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/info.json @@ -0,0 +1,25 @@ +{ + "name": "USDS", + "type": "ERC20", + "symbol": "USDS", + "decimals": 18, + "website": "https://sky.money", + "description": "USDS is an upgraded version of the DAI token. Upgrading is optional. It is an ERC-20 token with permit functionality and EIP-1271 signature validation. The USDS token also enables two-way conversions between DAI and USDS tokens, using the mint and burn functions of both tokens. The conversion rate of the stablecoin is 1 DAI to 1 USDS.", + "explorer": "https://etherscan.io/token/0xdC035D45d973E3EC169d2276DDab16f1e407384F", + "status": "active", + "id": "0xdC035D45d973E3EC169d2276DDab16f1e407384F", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SkyEcosystem" + }, + { + "name": "github", + "url": "https://github.com/makerdao/" + } + ], + "tags": [ + "stablecoin", + "defi" + ] +} diff --git a/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/logo.png b/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/logo.png new file mode 100644 index 0000000000000..69d96d6685e66 Binary files /dev/null and b/blockchains/ethereum/assets/0xdC035D45d973E3EC169d2276DDab16f1e407384F/logo.png differ diff --git a/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/info.json b/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/info.json new file mode 100644 index 0000000000000..968bdd0d52c97 --- /dev/null +++ b/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wrapped Zano", + "symbol": "WZANO", + "type": "ERC20", + "decimals": 18, + "description": "Wrapped version of Zano native coin. Zano is the development of a scalable and secure coin, designed for use in e-commerce. The technology behind our blockchain provides reliability, security, and flexibility — a perfect option for P2P transactions.", + "website": "https://zano.org/", + "explorer": "https://etherscan.io/token/0xdb85f6685950e285b1e611037bebe5b34e2b7d78", + "status": "active", + "id": "0xdb85f6685950E285b1E611037BEBe5B34e2B7d78", + "links": [ + { + "name": "telegram", + "url": "https://t.me/zanocoin" + }, + { + "name": "twitter", + "url": "https://twitter.com/zano_project" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zano/" + } + ] + } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/logo.png b/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/logo.png new file mode 100644 index 0000000000000..d022e8f2b8ec6 Binary files /dev/null and b/blockchains/ethereum/assets/0xdb85f6685950E285b1E611037BEBe5B34e2B7d78/logo.png differ diff --git a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json index cbe60a42db60e..e3c714a07bc7c 100644 --- a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json +++ b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/info.json @@ -1,5 +1,5 @@ { - "name": "Utrust", + "name": "xMoney", "website": "https://utrust.com", "description": "The Utrust platform allows merchants to accept digital currencies as a means of payment.", "explorer": "https://etherscan.io/token/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c", diff --git a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png old mode 100755 new mode 100644 index 532f258606ffb..c42fa10089b0e Binary files a/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png and b/blockchains/ethereum/assets/0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c/logo.png differ diff --git a/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/info.json b/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/info.json index 7401512a5ff4c..5ca1738350382 100644 --- a/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/info.json +++ b/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/info.json @@ -1,17 +1,37 @@ { - "name": "DEXE", + "name": "DeXe", "type": "ERC20", "symbol": "DEXE", "decimals": 18, "website": "https://dexe.network/", - "description": "Dexe.network or Dexe (Decentralized Social Trading Platform) – an online, decentralized and autonomous cryptocurrency assets portfolio environment which operates via autonomous smart contracts, that includes tools for virtual currency allocation, automatic rebalancing and eliminates the risks of transferring digital wallet details such as private keys and API or any virtual currency data to a third party.", + "description": "DeXe Protocol is a decentralized suite of permissionless tools for managing assets, products, and communities governed by $DEXE holders within DeXe Protocol DAO. It offers a no-code environment on blockchain for launching DAOs, tokens, and fundraises; AI-powered automation for decision-making; on/off-chain in a seamless space; account abstraction acting as a DAO, multi-sig or single party with numerous features for managing assets and payouts, and(or) communities.", "explorer": "https://etherscan.io/token/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6", "id": "0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6", "status": "active", "links": [ { "name": "github", - "url": "https://github.com/dexe-network/dexe" + "url": "https://github.com/dexe-network/DeXe-Protocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/DexeNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dexe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dexe" + }, + { + "name": "telegram", + "url": "https://t.me/dexe_network_official_chat" } + ], + "tags": [ + "governance", + "defi" ] } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/logo.png b/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/logo.png index 0ca575a8134dc..9b717a971bca4 100644 Binary files a/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/logo.png and b/blockchains/ethereum/assets/0xde4EE8057785A7e8e800Db58F9784845A5C2Cbd6/logo.png differ diff --git a/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/info.json b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/info.json new file mode 100644 index 0000000000000..8b283939aa819 --- /dev/null +++ b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/info.json @@ -0,0 +1,25 @@ +{ + "name": "Bitrock", + "type": "ERC20", + "symbol": "BITROCK", + "decimals": 9, + "website": "https://bit-rock.io", + "description": "Bitrock is an Ethereum sidechain IBFT 2.0 Proof of Authority (PoA) blockchain with near-zero native gas fees.", + "explorer": "https://etherscan.io/token/0xde67d97b8770dc98c746a3fc0093c538666eb493", + "status": "active", + "id": "0xde67d97b8770dC98C746A3FC0093c538666eB493", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BitRockChain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitrock/" + }, + { + "name": "telegram", + "url": "https://t.me/Bitrockchain" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/logo.png b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/logo.png new file mode 100644 index 0000000000000..c0d1e5fc04f8e Binary files /dev/null and b/blockchains/ethereum/assets/0xde67d97b8770dC98C746A3FC0093c538666eB493/logo.png differ diff --git a/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/info.json b/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/info.json new file mode 100644 index 0000000000000..62c68b5e80ccf --- /dev/null +++ b/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/info.json @@ -0,0 +1,17 @@ +{ + "name": "Gyro Dollar", + "website": "https://gyro.finance/", + "description": "Revolution in resilience: put stablecoin risk control on autopilot.", + "explorer": "https://etherscan.io/token/0xe07f9d810a48ab5c3c914ba3ca53af14e4491e8a", + "type": "ERC20", + "symbol": "GYD", + "decimals": 18, + "status": "active", + "id": "0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/gyrostable" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/logo.png b/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/logo.png new file mode 100644 index 0000000000000..47291c61f97e4 Binary files /dev/null and b/blockchains/ethereum/assets/0xe07F9D810a48ab5c3c914BA3cA53AF14E4491e8A/logo.png differ diff --git a/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/info.json b/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/info.json new file mode 100644 index 0000000000000..a4e30af9a2018 --- /dev/null +++ b/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/info.json @@ -0,0 +1,21 @@ +{ + "name": "OpenLM RevShare", + "website": "https://www.ora.io/", + "description": "Ethereum's Trustless AI.", + "explorer": "https://etherscan.io/token/0xe5018913f2fdf33971864804ddb5fca25c539032", + "type": "ERC20", + "symbol": "OLM", + "decimals": 18, + "status": "active", + "id": "0xe5018913F2fdf33971864804dDB5fcA25C539032", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/openlm-revshare-token" + }, + { + "name": "twitter", + "url": "https://twitter.com/OraProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/logo.png b/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/logo.png new file mode 100644 index 0000000000000..6a274d6d8f15d Binary files /dev/null and b/blockchains/ethereum/assets/0xe5018913F2fdf33971864804dDB5fcA25C539032/logo.png differ diff --git a/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/info.json b/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/info.json index e001c9d99e92a..6164309e2ac02 100644 --- a/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/info.json +++ b/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/info.json @@ -1,29 +1,30 @@ { - "name": "SuperFarm", - "symbol": "SUPER", - "type": "ERC20", - "decimals": 18, - "description": "SuperFarm is a cross-chain DeFi protocol that allows users to deploy crypto and NFT farms with no code required!", - "website": "https://www.superfarm.io/", - "explorer": "https://etherscan.io/token/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", - "status": "active", - "id": "0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", - "links": [ - { - "name": "telegram", - "url": "https://t.me/SuperFarmDAO" - }, - { - "name": "twitter", - "url": "https://twitter.com/SuperFarmDAO" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/superfarm/" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/superfarm/" - } - ] -} \ No newline at end of file + "name": "SuperVerse", + "symbol": "SUPER", + "type": "ERC20", + "decimals": 18, + "description": "SuperVerse is a cross-chain DeFi protocol that allows users to deploy crypto and NFT farms with no code required!", + "website": "https://www.superverse.co", + "explorer": "https://etherscan.io/token/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", + "status": "active", + "id": "0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SuperVerseDAO" + }, + { + "name": "twitter", + "url": "https://twitter.com/SuperVerseDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/superfarm/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/superfarm/" + } + ], + "tags": ["gamefi", "staking", "governance"] +} diff --git a/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png b/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png index 9aab6fd544730..c154830ec5739 100644 Binary files a/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png and b/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png differ diff --git a/blockchains/ethereum/assets/0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D/info.json b/blockchains/ethereum/assets/0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D/info.json new file mode 100644 index 0000000000000..18b249a16f196 --- /dev/null +++ b/blockchains/ethereum/assets/0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D/info.json @@ -0,0 +1,21 @@ +{ + "name": "Rail", + "website": "https://railgun.ch", + "description": "RAILGUN can generate a verifiable report of actions and balances (for an auditor or compliance officer, for example), with a privacy preserving Zero Knowledge method.", + "explorer": "https://etherscan.io/token/0xe76c6c83af64e4c60245d8c7de953df673a7a33d", + "type": "ERC20", + "symbol": "RAIL", + "decimals": 18, + "status": "active", + "id": "0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/railgun_project" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/railgun/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D/logo.png b/blockchains/ethereum/assets/0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D/logo.png new file mode 100644 index 0000000000000..41b1d4f3f6cdd Binary files /dev/null and b/blockchains/ethereum/assets/0xe76C6c83af64e4C60245D8C7dE953DF673a7A33D/logo.png differ diff --git a/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 0000000000000..411e3796c92ee --- /dev/null +++ b/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wrapped ABBC", + "type": "ERC20", + "symbol": "WABBC", + "decimals": 8, + "website": "https://abbcswap.com/", + "description": "ABBC Swap is a platform that allows users to seamlessly swap their ABBC from the ABBC mainnet using Aladdin Wallet and Aladdin Pro wallet apps into Polygon ABBC pegged.", + "explorer": "https://etherscan.io/token/0xe83ce6bfb580583bd6a62b4be7b34fc25f02910d", + "status": "active", + "id": "0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/abbcfoundation" + }, + { + "name": "twitter", + "url": "https://twitter.com/abbcfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbc-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png b/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png new file mode 100644 index 0000000000000..9259df4c30a91 Binary files /dev/null and b/blockchains/ethereum/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png differ diff --git a/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/info.json b/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/info.json new file mode 100644 index 0000000000000..561d67c156611 --- /dev/null +++ b/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/info.json @@ -0,0 +1,21 @@ +{ + "name": "RunesBridge", + "website": "https://runesbridge.xyz/", + "description": "RunesBridge is at the forefront of blockchain interoperability, pioneering the creation of bridges that connect different networks (EVM) to the Bitcoin network through the innovative Runes Protocol.", + "explorer": "https://etherscan.io/token/0xe91598331a36a78f7fefe277ce7c1915da0afb93", + "type": "ERC20", + "symbol": "RB", + "decimals": 18, + "status": "active", + "id": "0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/runesbridge/" + }, + { + "name": "twitter", + "url": "https://twitter.com/RunesBridge" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/logo.png b/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/logo.png new file mode 100644 index 0000000000000..95859ef3d1673 Binary files /dev/null and b/blockchains/ethereum/assets/0xe91598331A36A78f7fEfe277cE7C1915DA0AfB93/logo.png differ diff --git a/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/info.json b/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/info.json new file mode 100644 index 0000000000000..6c7a2fff8e159 --- /dev/null +++ b/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/info.json @@ -0,0 +1,21 @@ +{ + "name": "Eigen", + "website": "https://www.eigenlayer.xyz/", + "description": "EigenLayer is a protocol built on Ethereum that introduces restaking, a new primitive in cryptoeconomic security. This primitive enables the reuse of ETH on the consensus layer.", + "explorer": "https://etherscan.io/token/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83", + "type": "ERC20", + "symbol": "EIGEN", + "decimals": 18, + "status": "active", + "id": "0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/eigenlayer" + }, + { + "name": "github", + "url": "https://github.com/Layr-Labs/eigenlayer-contracts" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/logo.png b/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/logo.png new file mode 100644 index 0000000000000..cf339719a257e Binary files /dev/null and b/blockchains/ethereum/assets/0xec53bF9167f50cDEB3Ae105f56099aaaB9061F83/logo.png differ diff --git a/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/info.json b/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/info.json new file mode 100644 index 0000000000000..1e605a6e31d25 --- /dev/null +++ b/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/info.json @@ -0,0 +1,37 @@ +{ + "name": "Metacade (MCADE)", + "type": "ERC20", + "symbol": "MCADE", + "decimals": 18, + "website": "https://metacade.co/", + "description": "At Metacade our vision is to become the premier gaming platform that empowers developers and players, providing unparalleled opportunities for growth and collaboration. Through creativity and innovation we aim to create a fun first community that offers a rewarding and enjoyable experience, while delivering a revenue driven platform that gives value to $MCADE token holders.", + "explorer": "https://etherscan.io/token/0xed328e9c1179a30ddc1e7595e036aed8760c22af", + "status": "active", + "id": "0xed328E9C1179a30ddC1E7595E036AEd8760C22aF", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Metacade_" + }, + { + "name": "discord", + "url": "https://discord.com/invite/7XG39NuEKQ" + }, + { + "name": "telegram", + "url": "https://t.me/metacade_official/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@metacade9370" + }, + { + "name": "medium", + "url": "https://medium.com/@metacade" + } + ], + "tags": [ + "gamefi", + "staking" + ] +} diff --git a/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/logo.png b/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/logo.png new file mode 100644 index 0000000000000..c7e167fa35581 Binary files /dev/null and b/blockchains/ethereum/assets/0xed328E9C1179a30ddC1E7595E036AEd8760C22aF/logo.png differ diff --git a/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/info.json b/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/info.json new file mode 100644 index 0000000000000..b96538a579c76 --- /dev/null +++ b/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zeta", + "type": "ERC20", + "symbol": "ZETA", + "decimals": 18, + "website": "https://www.zetachain.com/", + "description": "ZetaChain is a public, decentralized blockchain and smart contract platform that enables message passing and value transfer between any blockchain.", + "explorer": "https://etherscan.io/token/0xf091867EC603A6628eD83D274E835539D82e9cc8", + "status": "active", + "id": "0xf091867EC603A6628eD83D274E835539D82e9cc8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zetablockchain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zetachain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/logo.png b/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/logo.png new file mode 100644 index 0000000000000..b1372629fb38d Binary files /dev/null and b/blockchains/ethereum/assets/0xf091867EC603A6628eD83D274E835539D82e9cc8/logo.png differ diff --git a/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json b/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json index cfa61695b4380..31b53410f24cf 100644 --- a/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json +++ b/blockchains/ethereum/assets/0xf151980E7A781481709e8195744bF2399FB3Cba4/info.json @@ -6,6 +6,6 @@ "description": "Freeway Tokens (FWT) are the native utility tokens for AuBit Freeway — a ground-breaking new asset management platform built for greater total returns on the world’s top investment products with no additional risk.", "website": "https://aubit.io/", "explorer": "https://etherscan.io/token/0xf151980E7A781481709e8195744bF2399FB3Cba4", - "status": "active", + "status": "abandoned", "id": "0xf151980E7A781481709e8195744bF2399FB3Cba4" } \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/info.json b/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/info.json new file mode 100644 index 0000000000000..1d3c3b6436a40 --- /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 0000000000000..49a7f7fb3fe09 Binary files /dev/null and b/blockchains/ethereum/assets/0xf1df7305E4BAB3885caB5B1e4dFC338452a67891/logo.png differ diff --git a/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/info.json b/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/info.json new file mode 100644 index 0000000000000..1cfd80b3041f6 --- /dev/null +++ b/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/info.json @@ -0,0 +1,21 @@ +{ + "name": "Asteroid Shiba", + "website": "https://asteroidshiba-erc.com/", + "description": "$Asteroid is a crypto meme coin that's bringing the adorable spirit of Asteroid, the Shiba Inu floating with the Polaris Dawn crew, into the digital currency realm.", + "explorer": "https://etherscan.io/token/0xf280b16ef293d8e534e370794ef26bf312694126", + "type": "ERC20", + "symbol": "ASTEROID", + "decimals": 9, + "status": "active", + "id": "0xf280B16EF293D8e534e370794ef26bF312694126", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ashiba_eth?s=21" + }, + { + "name": "telegram", + "url": "https://t.me/AsteroidShibaCTO" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/logo.png b/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/logo.png new file mode 100644 index 0000000000000..835ea8a38a782 Binary files /dev/null and b/blockchains/ethereum/assets/0xf280B16EF293D8e534e370794ef26bF312694126/logo.png differ diff --git a/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/info.json b/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/info.json new file mode 100644 index 0000000000000..10e8194ad8ebe --- /dev/null +++ b/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/info.json @@ -0,0 +1,17 @@ +{ + "name":"A Hunters Dream", + "type":"ERC20", + "symbol":"CAW", + "decimals": 18, + "website":"https://caw.is/", + "description":"A Decentralized Social Clearing House ...(AKA) CAW A protocol made up of many on-chain smart contracts for sending messages publically or p2p with a max character limit of 420.", + "explorer":"https://etherscan.io/token/0xf3b9569F82B18aEf890De263B84189bd33EBe452", + "status":"active", + "id":"0xf3b9569F82B18aEf890De263B84189bd33EBe452", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/CommunityCaw" + } + ] + } diff --git a/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/logo.png b/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/logo.png new file mode 100644 index 0000000000000..a292833a41d9b Binary files /dev/null and b/blockchains/ethereum/assets/0xf3b9569F82B18aEf890De263B84189bd33EBe452/logo.png differ diff --git a/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/info.json b/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/info.json new file mode 100644 index 0000000000000..532fa9e82e85d --- /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 0000000000000..a4f85e8cddacd Binary files /dev/null and b/blockchains/ethereum/assets/0xf4CCcfDA0781ae019a9D4e1853DCd3E288Daaa89/logo.png differ diff --git a/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 0000000000000..30407ccc3fecb --- /dev/null +++ b/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lorenzo stBTC", + "type": "ERC20", + "symbol": "stBTC", + "decimals": 18, + "website": "https://www.lorenzo-protocol.xyz/", + "description": "To be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "explorer": "https://etherscan.io/token/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "status": "active", + "id": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LorenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/lorenzoprotocol" + } + ] +} diff --git a/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png b/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png new file mode 100644 index 0000000000000..d0c4e5f85eb2b Binary files /dev/null and b/blockchains/ethereum/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/info.json b/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/info.json new file mode 100644 index 0000000000000..feb7f4ce3d38e --- /dev/null +++ b/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/info.json @@ -0,0 +1,28 @@ +{ + "name": "zkRace", + "website": "https://zkrace.com/", + "description": "zkRace is a complete NFT horse racing ecosystem where you can participate in horse races, breed NFT horses with unique characteristics, build your own NFT hippodrome", + "explorer": "https://etherscan.io/token/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F", + "type": "ERC20", + "symbol": "ZERC", + "decimals": 18, + "status": "active", + "id": "0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zk_race" + }, + { + "name": "telegram", + "url": "https://t.me/zk_Race" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/derace/" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/logo.png b/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/logo.png new file mode 100644 index 0000000000000..e428af9216608 Binary files /dev/null and b/blockchains/ethereum/assets/0xf8428A5a99cb452Ea50B6Ea70b052DaA3dF4934F/logo.png differ diff --git a/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/info.json b/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/info.json new file mode 100644 index 0000000000000..cbf560993e981 --- /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-new/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/logo.png b/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/logo.png new file mode 100644 index 0000000000000..09b734f709b67 Binary files /dev/null and b/blockchains/ethereum/assets/0xf8ebf4849F1Fa4FaF0DFF2106A173D3A6CB2eB3A/logo.png differ diff --git a/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/info.json b/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/info.json new file mode 100644 index 0000000000000..c9fcbd0fd10fd --- /dev/null +++ b/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/info.json @@ -0,0 +1,21 @@ +{ + "name": "Curve.Fi USD Stablecoin", + "website": "https://www.curve.fi/", + "description": "crvUSD is a collateralized-debt-position (CDP) stablecoin pegged to the US Dollar", + "explorer": "https://etherscan.io/token/0xf939e0a03fb07f59a73314e73794be0e57ac1b4e", + "type": "ERC20", + "symbol": "crvUSD", + "decimals": 18, + "status": "active", + "id": "0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E", + "links": [ + { + "name": "telegram", + "url": "https://t.me/curvefi" + }, + { + "name": "twitter", + "url": "https://twitter.com/CurveFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/logo.png b/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/logo.png new file mode 100644 index 0000000000000..cf2af75fb6e8e Binary files /dev/null and b/blockchains/ethereum/assets/0xf939E0A03FB07F59A73314E73794Be0E57ac1b4E/logo.png differ diff --git a/blockchains/ethereum/assets/0xf951E335afb289353dc249e82926178EaC7DEd78/info.json b/blockchains/ethereum/assets/0xf951E335afb289353dc249e82926178EaC7DEd78/info.json new file mode 100644 index 0000000000000..629b410e678d7 --- /dev/null +++ b/blockchains/ethereum/assets/0xf951E335afb289353dc249e82926178EaC7DEd78/info.json @@ -0,0 +1,25 @@ +{ + "name": "swETH", + "website": "https://www.swellnetwork.io/", + "description": "swETH is a decentralized and non-custodial liquid staking token that provides users with the opportunity to earn staking rewards while retaining liquidity over their Ethereum holdings.", + "explorer": "https://etherscan.io/token/0xf951e335afb289353dc249e82926178eac7ded78", + "type": "ERC20", + "symbol": "swETH", + "decimals": 18, + "status": "active", + "id": "0xf951E335afb289353dc249e82926178EaC7DEd78", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/swellnetworkio?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor" + }, + { + "name": "github", + "url": "https://github.com/SwellNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/swell-sweth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xf951E335afb289353dc249e82926178EaC7DEd78/logo.png b/blockchains/ethereum/assets/0xf951E335afb289353dc249e82926178EaC7DEd78/logo.png new file mode 100644 index 0000000000000..9dd2b11b04eff Binary files /dev/null and b/blockchains/ethereum/assets/0xf951E335afb289353dc249e82926178EaC7DEd78/logo.png differ diff --git a/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/info.json b/blockchains/ethereum/assets/0xfAbA6f8e4a5E8Ab82F62fe7C39859FA577269BE3/info.json new file mode 100644 index 0000000000000..7f0f16c00d0b6 --- /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 0000000000000..1aaa5815d4ee1 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 0000000000000..66540990971bb --- /dev/null +++ b/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/info.json @@ -0,0 +1,21 @@ +{ + "name": "MosesCoin", + "type": "ERC20", + "symbol": "Moses", + "decimals": 18, + "website": "https://mosescoin.vip", + "description": "We are a community driven coin with biblical attributes. This will be a journey to “Part the Seas” of the SEC and overreaching government and to create a safe haven from the future dollar collapse. $Mosescoin will be used as a platform to take back our God given rights, to pursue crypto ventures, and to create protection for those who have faith in taking the journey with Moses.", + "explorer": "https://etherscan.io/token/0xfe3690fd78d9418ff6d381ec0a61eda4b0446c35", + "status": "active", + "id": "0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35", + "links": [ + { + "name": "telegram", + "url": "https://t.me/+BogQo4kR1jk2MGY5" + }, + { + "name": "twitter", + "url": "https://twitter.com/MosesCoin777" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/logo.png b/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/logo.png new file mode 100644 index 0000000000000..f7ee1d61e88a9 Binary files /dev/null and b/blockchains/ethereum/assets/0xfE3690FD78D9418FF6D381Ec0A61EDa4b0446c35/logo.png differ diff --git a/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/info.json b/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/info.json new file mode 100644 index 0000000000000..a4456daf883f0 --- /dev/null +++ b/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/info.json @@ -0,0 +1,33 @@ +{ + "name": "Hippocrat", + "website": "https://hippocrat.io/", + "description": "Hippocrat is pursuing to aggregate global health data and build data economy upon decentralized governance and open cooperation. Hippocrat token is an incentive for data provider and utilized to build and maintain Hippocrat DAO and protocol in a way the project can be permanently sustainable.", + "explorer": "https://etherscan.io/token/0xfE39C384D702914127a005523f9915ADDB9bd59b", + "type": "ERC20", + "symbol": "HPO", + "decimals": 18, + "status": "active", + "id": "0xfE39C384D702914127a005523f9915ADDB9bd59b", + "links": [ + { + "name": "github", + "url": "https://github.com/hippocrat-dao" + }, + { + "name": "twitter", + "url": "https://twitter.com/Hippocrat_io" + }, + { + "name": "telegram", + "url": "https://t.me/nexofinance" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.hippocrat.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hippocrat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/logo.png b/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/logo.png new file mode 100644 index 0000000000000..bc67c8628bee5 Binary files /dev/null and b/blockchains/ethereum/assets/0xfE39C384D702914127a005523f9915ADDB9bd59b/logo.png differ diff --git a/blockchains/ethereum/assets/0xfF836A5821E69066c87E268bC51b849FaB94240C/info.json b/blockchains/ethereum/assets/0xfF836A5821E69066c87E268bC51b849FaB94240C/info.json new file mode 100644 index 0000000000000..50c280010c1b6 --- /dev/null +++ b/blockchains/ethereum/assets/0xfF836A5821E69066c87E268bC51b849FaB94240C/info.json @@ -0,0 +1,24 @@ +{ + "name": "Real Smurf Cat", + "type": "ERC20", + "symbol": "SMURFCAT", + "decimals": 18, + "website": "https://smurfcat.eth.limo", + "description": "SMURFCAT is a memecoin launched on the ethereum blockchain. he is so cute! this little guy is just going on his jolly way! The token was created as a tribute to the smurf cat internet meme originally created by Nate Hallinan, and newly popularized by tiktok.", + "explorer": "https://etherscan.io/token/0xff836a5821e69066c87e268bc51b849fab94240c", + "status": "active", + "id": "0xfF836A5821E69066c87E268bC51b849FaB94240C", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/real-smurf-cat-eth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/real-smurf-cat" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/ethereum/assets/0xfF836A5821E69066c87E268bC51b849FaB94240C/logo.png b/blockchains/ethereum/assets/0xfF836A5821E69066c87E268bC51b849FaB94240C/logo.png new file mode 100644 index 0000000000000..977f628ac496b Binary files /dev/null and b/blockchains/ethereum/assets/0xfF836A5821E69066c87E268bC51b849FaB94240C/logo.png differ diff --git a/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/info.json b/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/info.json index 2e1fccc75b41b..1dcebc9879817 100644 --- a/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/info.json +++ b/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/info.json @@ -1,7 +1,7 @@ { "name": "DogeGF", "website": "https://www.dogegf.com/", - "description": "DogeGF is a peer-to-peer community governed by reciprocity.", + "description": "Warm-hearted community fuelled by the magic of reciprocity.", "explorer": "https://etherscan.io/token/0xfb130d93E49DcA13264344966A611dc79a456Bc5", "type": "ERC20", "symbol": "DOGEGF", @@ -27,7 +27,7 @@ }, { "name": "discord", - "url": "https://discord.com/invite/Tjr8AvFBTP" + "url": "https://discord.com/invite/EwKuFDCA5V" } ] -} \ No newline at end of file +} diff --git a/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/logo.png b/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/logo.png index 4cbe25b44d1da..994caabe77f87 100644 Binary files a/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/logo.png and b/blockchains/ethereum/assets/0xfb130d93E49DcA13264344966A611dc79a456Bc5/logo.png differ diff --git a/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/info.json b/blockchains/ethereum/assets/0xfb66321D7C674995dFcC2cb67A30bC978dc862AD/info.json new file mode 100644 index 0000000000000..3704538ec4e1b --- /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/chainlist.json b/blockchains/ethereum/chainlist.json index 122f6f5943b6d..80ea9fd7ea139 100644 --- a/blockchains/ethereum/chainlist.json +++ b/blockchains/ethereum/chainlist.json @@ -30,7 +30,7 @@ }, { "chain": "8217", - "coinId": "klaytn" + "coinId": "kaia" }, { "chain": "42262", @@ -68,10 +68,6 @@ "chain": "43114", "coinId": "avalanche" }, - { - "chain": "32659", - "coinId": "fusion" - }, { "chain": "42220", "coinId": "celo" @@ -139,6 +135,26 @@ { "chain": "5601", "coinId": "gbnb" + }, + { + "chain": "5611", + "coinId": "opbnb" + }, + { + "chain": "32659", + "coinId": "fusion" + }, + { + "chain": "7700", + "coinId": "canto" + }, + { + "chain": "295", + "coinId": "hedera" + }, + { + "chain": "30", + "coinId": "rootstock" } ] -} \ No newline at end of file +} diff --git a/blockchains/ethereum/info/info.json b/blockchains/ethereum/info/info.json index 1c18235d81bd6..b7ff00eef9193 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 5fbbe1589e23a..aff92befce376 100644 --- a/blockchains/ethereum/tokenlist.json +++ b/blockchains/ethereum/tokenlist.json @@ -271,9 +271,6 @@ { "base": "c60_t0x8a854288a5976036A725879164Ca3e91d30c6A1B" }, - { - "base": "c60_t0xCE3f08e664693ca792caCE4af1364D5e220827B2" - }, { "base": "c60_t0x8CE9137d39326AD0cD6491fb5CC0CbA0e089b6A9" }, @@ -502,9 +499,6 @@ { "base": "c60_t0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96" }, - { - "base": "c60_t0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C" - }, { "base": "c60_t0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A" }, @@ -1135,16 +1129,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", @@ -1179,7 +1163,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", @@ -1651,16 +1635,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", @@ -2037,16 +2011,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", @@ -2178,16 +2142,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE/logo.png", "pairs": [] }, - { - "asset": "c60_t0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "type": "ERC20", - "address": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "name": "Dypius", - "symbol": "DYP", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png", - "pairs": [] - }, { "chainId": 1, "asset": "c60_t0x967da4048cD07aB37855c090aAF366e4ce1b9F48", @@ -2664,16 +2618,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xbC396689893D065F41bc2C6EcbeE5e0085233447/logo.png", "pairs": [] }, - { - "asset": "c60_t0xbE9375C6a420D2eEB258962efB95551A5b722803", - "type": "ERC20", - "address": "0xbE9375C6a420D2eEB258962efB95551A5b722803", - "name": "StormX", - "symbol": "STMX", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xbE9375C6a420D2eEB258962efB95551A5b722803/logo.png", - "pairs": [] - }, { "asset": "c60_t0xbEa98c05eEAe2f3bC8c3565Db7551Eb738c8CCAb", "type": "ERC20", @@ -2750,7 +2694,7 @@ "asset": "c60_t0xC52C326331E9Ce41F04484d3B5E5648158028804", "type": "ERC20", "address": "0xC52C326331E9Ce41F04484d3B5E5648158028804", - "name": "ZEN Exchange Token", + "name": "Unizen", "symbol": "ZCX", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xC52C326331E9Ce41F04484d3B5E5648158028804/logo.png", @@ -3044,7 +2988,7 @@ "asset": "c60_t0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", "type": "ERC20", "address": "0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55", - "name": "SuperFarm", + "name": "SuperVerse", "symbol": "SUPER", "decimals": 18, "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xe53EC727dbDEB9E2d5456c3be40cFF031AB40A55/logo.png", @@ -3491,16 +3435,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96/logo.png", "pairs": [] }, - { - "asset": "c60_t0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C", - "type": "ERC20", - "address": "0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C", - "name": "ZEDXION", - "symbol": "ZEDXION", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/ethereum/assets/0xbAFDabaDcf19d0cFbbe0AB9C69CF050D86ff888C/logo.png", - "pairs": [] - }, { "asset": "c60_t0xB0c7a3Ba49C7a6EaBa6cD4a96C55a1391070Ac9A", "type": "ERC20", diff --git a/blockchains/ethereum/validators/assets/0x2401c39d7ba9E283668a53fcC7B8F5FD9e716fdf/logo.png b/blockchains/ethereum/validators/assets/0x2401c39d7ba9E283668a53fcC7B8F5FD9e716fdf/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/ethereum/validators/assets/0x2401c39d7ba9E283668a53fcC7B8F5FD9e716fdf/logo.png differ diff --git a/blockchains/ethereum/validators/list.json b/blockchains/ethereum/validators/list.json new file mode 100644 index 0000000000000..2e116f2b59557 --- /dev/null +++ b/blockchains/ethereum/validators/list.json @@ -0,0 +1,8 @@ +[ + { + "id": "0x2401c39d7ba9E283668a53fcC7B8F5FD9e716fdf", + "name": "Trust Nodes", + "description": "Trust Nodes is Ethereum 2.0 staking service.", + "website": "https://www.kiln.fi" + } +] \ No newline at end of file diff --git a/blockchains/everscale/info/info.json b/blockchains/everscale/info/info.json index dc37652490575..4734965d857cc 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/0x0E1694483eBB3b74d3054E383840C6cf011e518e/info.json b/blockchains/fantom/assets/0x0E1694483eBB3b74d3054E383840C6cf011e518e/info.json new file mode 100644 index 0000000000000..00e8975cb5a93 --- /dev/null +++ b/blockchains/fantom/assets/0x0E1694483eBB3b74d3054E383840C6cf011e518e/info.json @@ -0,0 +1,37 @@ +{ + "name": "sUSD", + "website": "https://synthetix.io", + "description": "sUSD is an ERC-20 token made by the Synthetix team which tracks the price of USD.", + "explorer": "https://ftmscan.com/token/0x0E1694483eBB3b74d3054E383840C6cf011e518e", + "type": "FANTOM", + "symbol": "sUSD", + "decimals": 18, + "status": "active", + "id": "0x0E1694483eBB3b74d3054E383840C6cf011e518e", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/Synthetixio" + }, + { + "name": "twitter", + "url": "https://twitter.com/synthetix_io" + }, + { + "name": "blog", + "url": "https://blog.synthetix.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/susd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/nusd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x0E1694483eBB3b74d3054E383840C6cf011e518e/logo.png b/blockchains/fantom/assets/0x0E1694483eBB3b74d3054E383840C6cf011e518e/logo.png new file mode 100644 index 0000000000000..b26b625a22abd Binary files /dev/null and b/blockchains/fantom/assets/0x0E1694483eBB3b74d3054E383840C6cf011e518e/logo.png differ diff --git a/blockchains/fantom/assets/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212/info.json b/blockchains/fantom/assets/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212/info.json new file mode 100644 index 0000000000000..86458150dc906 --- /dev/null +++ b/blockchains/fantom/assets/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212/info.json @@ -0,0 +1,22 @@ +{ + "name": "Keep3rV1", + "website": "https://keep3r.network", + "description": "Keep3rV1 is a decentralized job-matching platform for connecting external DevOps with projects that need help for completing various tasks.", + "explorer": "https://ftmscan.com/token/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212", + "research": "https://research.binance.com/en/projects/keep3rv1", + "type": "FANTOM", + "symbol": "KP3R", + "decimals": 18, + "status": "active", + "id": "0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/keep3rv1/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/keep3rv1/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212/logo.png b/blockchains/fantom/assets/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212/logo.png new file mode 100644 index 0000000000000..067502d91f1d5 Binary files /dev/null and b/blockchains/fantom/assets/0x2A5062D22adCFaAfbd5C541d4dA82E4B450d4212/logo.png differ diff --git a/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json new file mode 100644 index 0000000000000..595bd45f88a2a --- /dev/null +++ b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/info.json @@ -0,0 +1,28 @@ +{ + "name": "StargateToken", + "website": "https://stargate.finance", + "description": "Stargate is a fully composable liquidity transport protocol that lives at the heart of Omnichain DeFi.", + "explorer": "https://ftmscan.com/token/0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590", + "type": "FANTOM", + "symbol": "STG", + "decimals": 18, + "status": "active", + "id": "0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590", + "links": [ + { + "name": "medium", + "url": "https://medium.com/stargate-official" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/LEM0ELklmO1kODdh" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stargate-finance/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png new file mode 100644 index 0000000000000..f983849d90c4f Binary files /dev/null and b/blockchains/fantom/assets/0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590/logo.png differ diff --git a/blockchains/fantom/assets/0x408e41876cCCDC0F92210600ef50372656052a38/info.json b/blockchains/fantom/assets/0x408e41876cCCDC0F92210600ef50372656052a38/info.json new file mode 100644 index 0000000000000..efabedc286c42 --- /dev/null +++ b/blockchains/fantom/assets/0x408e41876cCCDC0F92210600ef50372656052a38/info.json @@ -0,0 +1,48 @@ +{ + "name": "Ren", + "website": "https://renproject.io/", + "description": "Ren is an open protocol meant to enable the permissionless and private transfer of value between any blockchain.", + "explorer": "https://ftmscan.com/token/0x408e41876cccdc0f92210600ef50372656052a38", + "type": "FANTOM", + "symbol": "REN", + "decimals": 18, + "status": "active", + "id": "0x408e41876cCCDC0F92210600ef50372656052a38", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/renproject" + }, + { + "name": "twitter", + "url": "https://twitter.com/renprotocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/RenProject" + }, + { + "name": "blog", + "url": "https://medium.com/renproject" + }, + { + "name": "facebook", + "url": "https://facebook.com/RenProject/" + }, + { + "name": "telegram", + "url": "https://t.me/renproject" + }, + { + "name": "whitepaper", + "url": "https://renproject.io/litepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/republic-protocol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x408e41876cCCDC0F92210600ef50372656052a38/logo.png b/blockchains/fantom/assets/0x408e41876cCCDC0F92210600ef50372656052a38/logo.png new file mode 100644 index 0000000000000..8a5543ceefa01 Binary files /dev/null and b/blockchains/fantom/assets/0x408e41876cCCDC0F92210600ef50372656052a38/logo.png differ diff --git a/blockchains/fantom/assets/0x444444443B0fcB2733b93F23C910580FBa52FFFA/info.json b/blockchains/fantom/assets/0x444444443B0fcB2733b93F23C910580FBa52FFFA/info.json new file mode 100644 index 0000000000000..8e35a084d46dc --- /dev/null +++ b/blockchains/fantom/assets/0x444444443B0fcB2733b93F23C910580FBa52FFFA/info.json @@ -0,0 +1,21 @@ +{ + "name": "XY", + "website": "https://xy.finance/", + "description": "XY Finance Ecosystem incorporates products (X Swap & Y Pool) to do with Web3, DeFi and GameFi, with XY Token ($XY as the ticker) being the heart of XY DAO and the protocol.", + "explorer": "https://ftmscan.com/token/0x444444443B0fcB2733b93F23C910580FBa52FFFA", + "type": "FANTOM", + "symbol": "XY", + "decimals": 18, + "status": "active", + "id": "0x444444443B0fcB2733b93F23C910580FBa52FFFA", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/xy-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/xy-finance" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x444444443B0fcB2733b93F23C910580FBa52FFFA/logo.png b/blockchains/fantom/assets/0x444444443B0fcB2733b93F23C910580FBa52FFFA/logo.png new file mode 100644 index 0000000000000..6f22734f68ea5 Binary files /dev/null and b/blockchains/fantom/assets/0x444444443B0fcB2733b93F23C910580FBa52FFFA/logo.png differ diff --git a/blockchains/fantom/assets/0x44B26E839eB3572c5E959F994804A5De66600349/info.json b/blockchains/fantom/assets/0x44B26E839eB3572c5E959F994804A5De66600349/info.json new file mode 100644 index 0000000000000..b743e0c77cd5c --- /dev/null +++ b/blockchains/fantom/assets/0x44B26E839eB3572c5E959F994804A5De66600349/info.json @@ -0,0 +1,18 @@ +{ + "name": "Hegic", + "website": "https://hegic.co/", + "description": "Hegic is an on-chain, non-custodial peer-to-pool options trading protocol built on Ethereum. Currently Hegic supports options trading in for Bitcoin (wBTC) and Ether (ETH).", + "explorer": "https://ftmscan.com/token/0x44B26E839eB3572c5E959F994804A5De66600349", + "research": "", + "type": "FANTOM", + "symbol": "HEGIC", + "decimals": 18, + "status": "active", + "id": "0x44B26E839eB3572c5E959F994804A5De66600349", + "links": [ + { + "name": "github", + "url": "https://github.com/hegic" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x44B26E839eB3572c5E959F994804A5De66600349/logo.png b/blockchains/fantom/assets/0x44B26E839eB3572c5E959F994804A5De66600349/logo.png new file mode 100644 index 0000000000000..44c118daf7b4e Binary files /dev/null and b/blockchains/fantom/assets/0x44B26E839eB3572c5E959F994804A5De66600349/logo.png differ diff --git a/blockchains/fantom/assets/0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9/info.json b/blockchains/fantom/assets/0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9/info.json new file mode 100644 index 0000000000000..5b1d206b71604 --- /dev/null +++ b/blockchains/fantom/assets/0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9/info.json @@ -0,0 +1,21 @@ +{ + "name": "TravaFinance", + "website": "https://trava.finance/", + "description": "TRAVA is a decentralized marketplace for cross-chain lending that relies on an innovative model of multiple lending pools created by users.", + "explorer": "https://ftmscan.com/token/0x477a9d5df9beda06f6b021136a2efe7be242fcc9", + "type": "FANTOM", + "symbol": "TRAVA", + "decimals": 18, + "status": "active", + "id": "0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trava-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/trava-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9/logo.png b/blockchains/fantom/assets/0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9/logo.png new file mode 100644 index 0000000000000..5bee9eeec3600 Binary files /dev/null and b/blockchains/fantom/assets/0x477a9D5dF9bedA06F6b021136a2efe7BE242fCC9/logo.png differ diff --git a/blockchains/fantom/assets/0x5Cc61A78F164885776AA610fb0FE1257df78E59B/info.json b/blockchains/fantom/assets/0x5Cc61A78F164885776AA610fb0FE1257df78E59B/info.json new file mode 100644 index 0000000000000..ee319b9268b07 --- /dev/null +++ b/blockchains/fantom/assets/0x5Cc61A78F164885776AA610fb0FE1257df78E59B/info.json @@ -0,0 +1,21 @@ +{ + "name": "SpiritSwap", + "website": "https://www.spiritswap.finance/", + "description": "The SpiritSwap protocol adds incentives for Fantom network participants by introducing revenue sharing through the classic AMM model.", + "explorer": "https://ftmscan.com/token/0x5cc61a78f164885776aa610fb0fe1257df78e59b", + "type": "FANTOM", + "symbol": "SPIRIT", + "decimals": 18, + "status": "active", + "id": "0x5Cc61A78F164885776AA610fb0FE1257df78E59B", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spiritswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/spiritswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x5Cc61A78F164885776AA610fb0FE1257df78E59B/logo.png b/blockchains/fantom/assets/0x5Cc61A78F164885776AA610fb0FE1257df78E59B/logo.png new file mode 100644 index 0000000000000..4d44d7f8b7771 Binary files /dev/null and b/blockchains/fantom/assets/0x5Cc61A78F164885776AA610fb0FE1257df78E59B/logo.png differ diff --git a/blockchains/fantom/assets/0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6/info.json b/blockchains/fantom/assets/0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6/info.json new file mode 100644 index 0000000000000..e364a15ffc67d --- /dev/null +++ b/blockchains/fantom/assets/0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6/info.json @@ -0,0 +1,21 @@ +{ + "name": "CREAM", + "website": "https://cream.finance", + "description": "Cream - Crypto Rules Everything Around Me", + "explorer": "https://ftmscan.com/token/0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6", + "type": "FANTOM", + "symbol": "CREAM", + "decimals": 18, + "status": "active", + "id": "0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6", + "links": [ + { + "name": "telegram", + "url": "https://t.me/CreamdotFinance" + }, + { + "name": "twitter", + "url": "https://twitter.com/CreamdotFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6/logo.png b/blockchains/fantom/assets/0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6/logo.png new file mode 100644 index 0000000000000..1baed04d24379 Binary files /dev/null and b/blockchains/fantom/assets/0x657A1861c15A3deD9AF0B6799a195a249ebdCbc6/logo.png differ diff --git a/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/info.json b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/info.json new file mode 100644 index 0000000000000..734cfda57ef00 --- /dev/null +++ b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/info.json @@ -0,0 +1,36 @@ +{ + "name": "Wootrade Network", + "type": "FANTOM", + "symbol": "WOO", + "decimals": 18, + "website": "https://woo.network", + "description": "Wootrade aims to provide deep liquidity and superior order execution at the lowest cost for traders, exchanges, institutions, and DeFi platforms. Its flagship, WOO X, is a professional trading platform featuring customizable modules, and zero-fees with deep liquidity across spot and margin. Wootrade was founded by Kronos Research, a quantitative trading firm generating $10-15B in daily volume, with the goal of democratizing access to deep liquidity and yield strategies through various products.", + "explorer": "https://ftmscan.com/token/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a", + "status": "active", + "id": "0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/wootrade" + }, + { + "name": "blog", + "url": "https://medium.com/@wootrade" + }, + { + "name": "facebook", + "url": "https://facebook.com/Wootrade" + }, + { + "name": "whitepaper", + "url": "https://woo.network/Litepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wootrade-network/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/logo.png b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/logo.png new file mode 100644 index 0000000000000..5cd7c39954306 Binary files /dev/null and b/blockchains/fantom/assets/0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a/logo.png differ diff --git a/blockchains/fantom/assets/0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE/info.json b/blockchains/fantom/assets/0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE/info.json new file mode 100644 index 0000000000000..5a2448bba38bf --- /dev/null +++ b/blockchains/fantom/assets/0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE/info.json @@ -0,0 +1,21 @@ +{ + "name": "Spooky", + "type": "FANTOM", + "symbol": "BOO", + "decimals": 18, + "website": "https://spookyswap.finance/", + "description": "SpookySwap is an automated market-making (AMM) decentralized exchange (DEX) for the Fantom Opera network.", + "explorer": "https://ftmscan.com/token/0x841fad6eae12c286d1fd18d1d525dffa75c7effe", + "status": "active", + "id": "0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/spookyswap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/spookyswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE/logo.png b/blockchains/fantom/assets/0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE/logo.png new file mode 100644 index 0000000000000..ef7cade406b22 Binary files /dev/null and b/blockchains/fantom/assets/0x841FAD6EAe12c286d1Fd18d1d525DFfA75C7EFFE/logo.png differ diff --git a/blockchains/fantom/assets/0xC758295Cd1A564cdb020a78a681a838CF8e0627D/info.json b/blockchains/fantom/assets/0xC758295Cd1A564cdb020a78a681a838CF8e0627D/info.json new file mode 100644 index 0000000000000..0fda80cfdf25b --- /dev/null +++ b/blockchains/fantom/assets/0xC758295Cd1A564cdb020a78a681a838CF8e0627D/info.json @@ -0,0 +1,21 @@ +{ + "name": "FantomStarter", + "website": "https://fantomstarter.io/", + "description": "The FantomStarter launchpad provides logistics on more than one chain. It supports Fantom (FTM), Binance Smart Chain (BSC), Ethereum (ETH), and Polygon (Matic) and many others.", + "explorer": "https://ftmscan.com/token/0xC758295Cd1A564cdb020a78a681a838CF8e0627D", + "type": "FANTOM", + "symbol": "FS", + "decimals": 18, + "status": "active", + "id": "0xC758295Cd1A564cdb020a78a681a838CF8e0627D", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantomstarter/" + }, + { + "name": "twitter", + "url": "https://twitter.com/fantomstarter" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xC758295Cd1A564cdb020a78a681a838CF8e0627D/logo.png b/blockchains/fantom/assets/0xC758295Cd1A564cdb020a78a681a838CF8e0627D/logo.png new file mode 100644 index 0000000000000..10b1a03371c23 Binary files /dev/null and b/blockchains/fantom/assets/0xC758295Cd1A564cdb020a78a681a838CF8e0627D/logo.png differ diff --git a/blockchains/fantom/assets/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E/info.json b/blockchains/fantom/assets/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E/info.json new file mode 100644 index 0000000000000..17ea5cb6eb9b7 --- /dev/null +++ b/blockchains/fantom/assets/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E/info.json @@ -0,0 +1,21 @@ +{ + "name": "ArtWallet", + "website": "https://www.oneart.digital/", + "description": "OneArt is building a scalable ecosystem of NFT related products connecting blockchains together in one place.", + "explorer": "https://ftmscan.com/token/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E", + "type": "FANTOM", + "symbol": "1ART", + "decimals": 18, + "status": "active", + "id": "0xD3c325848D7c6E29b574Cb0789998b2ff901f17E", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/artwallet/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/1art/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E/logo.png b/blockchains/fantom/assets/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E/logo.png new file mode 100644 index 0000000000000..6ef5918f1f402 Binary files /dev/null and b/blockchains/fantom/assets/0xD3c325848D7c6E29b574Cb0789998b2ff901f17E/logo.png differ diff --git a/blockchains/fantom/assets/0xDBf31dF14B66535aF65AaC99C32e9eA844e14501/info.json b/blockchains/fantom/assets/0xDBf31dF14B66535aF65AaC99C32e9eA844e14501/info.json new file mode 100644 index 0000000000000..2c1d4a7d2f3cd --- /dev/null +++ b/blockchains/fantom/assets/0xDBf31dF14B66535aF65AaC99C32e9eA844e14501/info.json @@ -0,0 +1,44 @@ +{ + "name": "renBTC", + "symbol": "renBTC", + "type": "FANTOM", + "decimals": 8, + "description": "RenBTC is a token built by RenVM team to expose bitcoin-backed assets to the benefits of Ethereum's various decentralized finance (DeFi) platforms.", + "website": "https://renproject.io", + "explorer": "https://ftmscan.com/token/0xDBf31dF14B66535aF65AaC99C32e9eA844e14501", + "status": "active", + "id": "0xDBf31dF14B66535aF65AaC99C32e9eA844e14501", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/renproject" + }, + { + "name": "twitter", + "url": "https://twitter.com/renprotocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/RenProject/" + }, + { + "name": "blog", + "url": "https://medium.com/renproject" + }, + { + "name": "telegram", + "url": "https://t.me/renproject" + }, + { + "name": "whitepaper", + "url": "https://github.com/renproject/ren/wiki/Introduction" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/renbtc/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xDBf31dF14B66535aF65AaC99C32e9eA844e14501/logo.png b/blockchains/fantom/assets/0xDBf31dF14B66535aF65AaC99C32e9eA844e14501/logo.png new file mode 100644 index 0000000000000..fd77fd180552c Binary files /dev/null and b/blockchains/fantom/assets/0xDBf31dF14B66535aF65AaC99C32e9eA844e14501/logo.png differ diff --git a/blockchains/fantom/assets/0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302/info.json b/blockchains/fantom/assets/0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302/info.json new file mode 100644 index 0000000000000..83369873b67d1 --- /dev/null +++ b/blockchains/fantom/assets/0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302/info.json @@ -0,0 +1,21 @@ +{ + "name": "ALPACA", + "website": "https://www.alpacafinance.org", + "description": "ALPACA is the token that powers Alpaca Finance, the 1st leveraged yield farming protocol on Binance Smart Chain.", + "explorer": "https://ftmscan.com/token/0xad996a45fd2373ed0b10efa4a8ecb9de445a4302", + "type": "FANTOM", + "symbol": "ALPACA", + "decimals": 18, + "status": "active", + "id": "0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/alpaca-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/alpaca-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302/logo.png b/blockchains/fantom/assets/0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302/logo.png new file mode 100644 index 0000000000000..9644ff85a6a7b Binary files /dev/null and b/blockchains/fantom/assets/0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302/logo.png differ diff --git a/blockchains/fantom/assets/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274/info.json b/blockchains/fantom/assets/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274/info.json new file mode 100644 index 0000000000000..9e6ae979e837f --- /dev/null +++ b/blockchains/fantom/assets/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tarot", + "website": "https://www.tarot.to/", + "description": "ALPACA is the token that powers Alpaca Finance, the 1st leveraged yield farming protocol on Binance Smart Chain.", + "explorer": "https://ftmscan.com/token/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274", + "type": "FANTOM", + "symbol": "TAROT", + "decimals": 18, + "status": "active", + "id": "0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tarot/" + }, + { + "name": "twitter", + "url": "https://twitter.com/tarotfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274/logo.png b/blockchains/fantom/assets/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274/logo.png new file mode 100644 index 0000000000000..daa8df266ce9a Binary files /dev/null and b/blockchains/fantom/assets/0xb7C2ddB1EBAc1056231ef22c1b0A13988537a274/logo.png differ diff --git a/blockchains/fantom/assets/0xc60D7067dfBc6f2caf30523a064f416A5Af52963/info.json b/blockchains/fantom/assets/0xc60D7067dfBc6f2caf30523a064f416A5Af52963/info.json new file mode 100644 index 0000000000000..215a4cfea6c14 --- /dev/null +++ b/blockchains/fantom/assets/0xc60D7067dfBc6f2caf30523a064f416A5Af52963/info.json @@ -0,0 +1,21 @@ +{ + "name": "Treeb", + "website": "https://retreeb.io/", + "description": "Retreeb is a distributed payment solution that shares one third of its network fees to funding social and solidarity projects.", + "explorer": "https://ftmscan.com/token/0xc60d7067dfbc6f2caf30523a064f416a5af52963", + "type": "FANTOM", + "symbol": "TREEB", + "decimals": 18, + "status": "active", + "id": "0xc60D7067dfBc6f2caf30523a064f416A5Af52963", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/retreeb/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/treeb/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xc60D7067dfBc6f2caf30523a064f416A5Af52963/logo.png b/blockchains/fantom/assets/0xc60D7067dfBc6f2caf30523a064f416A5Af52963/logo.png new file mode 100644 index 0000000000000..99c075fe888d4 Binary files /dev/null and b/blockchains/fantom/assets/0xc60D7067dfBc6f2caf30523a064f416A5Af52963/logo.png differ diff --git a/blockchains/fantom/assets/0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9/info.json b/blockchains/fantom/assets/0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9/info.json new file mode 100644 index 0000000000000..a9bc00d133329 --- /dev/null +++ b/blockchains/fantom/assets/0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9/info.json @@ -0,0 +1,22 @@ +{ + "name": "Modefi", + "website": "https://modefi.io/", + "description": "Decentralized Oracle Solutions. Building the foundation for real world adoption of Oracles and DeFi", + "explorer": "https://ftmscan.com/token/0xe64b9fd040d1f9d4715c645e0d567ef69958d3d9", + "research": "https://cryptoguerrillas.com/modefi-oracle-defi/", + "type": "FANTOM", + "symbol": "MOD", + "decimals": 18, + "status": "active", + "id": "0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/modefi/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/modefi/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9/logo.png b/blockchains/fantom/assets/0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9/logo.png new file mode 100644 index 0000000000000..e18dfb5f133b9 Binary files /dev/null and b/blockchains/fantom/assets/0xe64B9fd040D1F9D4715C645e0D567EF69958D3D9/logo.png differ diff --git a/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 0000000000000..fdb965a3901a2 --- /dev/null +++ b/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Fantom ABBC", + "type": "FANTOM", + "symbol": "FABBC", + "decimals": 8, + "website": "https://abbcswap.com/", + "description": "ABBC Swap is a platform that allows users to seamlessly swap their ABBC from the ABBC mainnet using Aladdin Wallet and Aladdin Pro wallet apps into Polygon ABBC pegged.", + "explorer": "https://ftmscan.com/token/0xe83ce6bfb580583bd6a62b4be7b34fc25f02910d", + "status": "active", + "id": "0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/abbcfoundation" + }, + { + "name": "twitter", + "url": "https://twitter.com/abbcfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbc-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png b/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png new file mode 100644 index 0000000000000..9259df4c30a91 Binary files /dev/null and b/blockchains/fantom/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png differ diff --git a/blockchains/fantom/info/info.json b/blockchains/fantom/info/info.json index 1afc1aa119dc9..27ecd498e267c 100644 --- a/blockchains/fantom/info/info.json +++ b/blockchains/fantom/info/info.json @@ -9,6 +9,9 @@ "decimals": 18, "rpc_url": "https://rpc.ftm.tools", "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "discord", diff --git a/blockchains/fetch/validators/assets/fetchvaloper14gtl0dgam6cqvjkuh6kfcnszchwzk0ghumdmhw/logo.png b/blockchains/fetch/validators/assets/fetchvaloper14gtl0dgam6cqvjkuh6kfcnszchwzk0ghumdmhw/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper14gtl0dgam6cqvjkuh6kfcnszchwzk0ghumdmhw/logo.png differ diff --git a/blockchains/fetch/validators/assets/fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0/logo.png b/blockchains/fetch/validators/assets/fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper1mr8tqsr3cjp4vh30j8h32uluh5nhnjnh8lkef0/logo.png differ diff --git a/blockchains/fetch/validators/assets/fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw/logo.png b/blockchains/fetch/validators/assets/fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper1ph02ux2dujl7uv4lzv6vy2y6vjstd4eplfznuw/logo.png differ diff --git a/blockchains/fetch/validators/assets/fetchvaloper1zntja9step52hq3a262fd9ee4n9w7mjutru8rc/logo.png b/blockchains/fetch/validators/assets/fetchvaloper1zntja9step52hq3a262fd9ee4n9w7mjutru8rc/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/fetch/validators/assets/fetchvaloper1zntja9step52hq3a262fd9ee4n9w7mjutru8rc/logo.png differ diff --git a/blockchains/fetch/validators/list.json b/blockchains/fetch/validators/list.json new file mode 100644 index 0000000000000..74367e987272d --- /dev/null +++ b/blockchains/fetch/validators/list.json @@ -0,0 +1,26 @@ +[ + { + "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" + }, + { + "id": "fetchvaloper1zntja9step52hq3a262fd9ee4n9w7mjutru8rc", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + } +] diff --git a/blockchains/goerlitestnet/info/info.json b/blockchains/goerlitestnet/info/info.json index b3ac4b5d706d7..7ca880a6b237f 100644 --- a/blockchains/goerlitestnet/info/info.json +++ b/blockchains/goerlitestnet/info/info.json @@ -4,8 +4,8 @@ "description": "The Alchemy Goerli faucet is free, fast, and does not require authentication, though you can optionally login to Alchemy to get an increased drip.", "explorer": "https://goerli.etherscan.io", "research": "https://goerli.net/#about", - "symbol": "ETH", - "rpc_url": "https://rpc.goerli.mudit.blog", + "symbol": "tETH", + "rpc_url": "https://eth-goerli.public.blastapi.io", "type": "coin", "decimals": 18, "status": "active", diff --git a/blockchains/greenfield/info/info.json b/blockchains/greenfield/info/info.json new file mode 100644 index 0000000000000..7d7d0e258161f --- /dev/null +++ b/blockchains/greenfield/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "BNB Greenfield", + "website": "https://greenfield.bnbchain.org/en", + "description": "The goal of the BNB Greenfield is to unleash the power of decentralized blockchain and storage technology on data ownership and data economy.", + "explorer": "https://greenfieldscan.com", + "symbol": "BNB", + "rpc_url": "https://greenfield-chain-us.bnbchain.org", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/greenfield/info/logo.png b/blockchains/greenfield/info/logo.png new file mode 100644 index 0000000000000..0fad6635d8d41 Binary files /dev/null and b/blockchains/greenfield/info/logo.png differ diff --git a/blockchains/harmony/info/info.json b/blockchains/harmony/info/info.json index 6734473b1ecab..3dab39279f00c 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 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/harmony/validators/assets/one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha/logo.png differ diff --git a/blockchains/harmony/validators/list.json b/blockchains/harmony/validators/list.json index df91a5caf71cc..dd5629bfb079a 100644 --- a/blockchains/harmony/validators/list.json +++ b/blockchains/harmony/validators/list.json @@ -23,6 +23,12 @@ "description": "24h node support, managing slots and shards to get the maximum APR with a 100% uptime. Help descentralization, delegate with us", "website": "harmony.com" }, + { + "id": "one1na6669ra9r99wsz39440fxdf6d29vhmz8mkdha", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn higher yields with AutoStake.com", + "website": "https://autostake.com" + }, { "id": "one14wyp73qmn3zch98dqnjvu4rprcz79tlrxq3al6", "name": "StakingTeam", diff --git a/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/info.json b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/info.json new file mode 100644 index 0000000000000..8d73c5afc655e --- /dev/null +++ b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/info.json @@ -0,0 +1,28 @@ +{ + "name": "MDX Token", + "symbol": "MDX", + "type": "HRC20", + "decimals": 18, + "description": "MDEX integrates the advantages of multiple chains to create a high-performance composite DEX ecosystem, to maximize the rewards of participants with the 'dual mining incentives' of liquid mining and transaction mining.", + "website": "https://bsc.mdex.com/", + "explorer": "https://hecoinfo.com/token/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c", + "status": "active", + "id": "0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Mdextech" + }, + { + "name": "github", + "url": "https://github.com/mdexSwap" + }, + { + "name": "telegram", + "url": "https://t.me/MixDex" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/logo.png b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/logo.png new file mode 100644 index 0000000000000..484410a92769f Binary files /dev/null and b/blockchains/heco/assets/0x25D2e80cB6B86881Fd7e07dd263Fb79f4AbE033c/logo.png differ diff --git a/blockchains/info.json b/blockchains/info.json deleted file mode 100644 index 88662092fc533..0000000000000 --- a/blockchains/info.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "Blockton", - "website": "https://blocktoncoin.com", - "short_description": "Blockton is a fast, high-throughput open-source Scalable, fast, and secure blockchain ecosystem.", - "description": "Blockton is a fast, high-throughput open-source Scalable, fast, and secure blockchain ecosystem.", - "explorer": "https://blocktonscan.com/", - "research": "https://docs.blocktonscan.com", - "type": "coin", - "symbol": "BTON", - "rpc_url": "https://rpc.blocktonscan.com/", - "decimals": 18, - "status": "active", - "links": [ - { - "name": "github", - "url": "https://github.com/blocktoncoin" - }, - { - "name": "whitepaper", - "url": "https://blocktoncoin.com/whitepaper.pdf" - } - ] -} - diff --git a/blockchains/injective/info/info.json b/blockchains/injective/info/info.json deleted file mode 100644 index b743c1cc7a677..0000000000000 --- a/blockchains/injective/info/info.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "name": "Injective", - "website": "https://injective.com", - "description": "Injective is an open, interoperable layer-one blockchain for building powerful DeFi applications.", - "explorer": "https://explorer.injective.network", - "research": "https://research.binance.com/en/projects/injective", - "symbol": "INJ", - "type": "coin", - "decimals": 18, - "status": "active", - "links": [ - { - "name": "github", - "url": "https://github.com/InjectiveLabs" - }, - { - "name": "twitter", - "url": "https://twitter.com/Injective_" - } - ] -} \ No newline at end of file diff --git a/blockchains/internet_computer/info/info.json b/blockchains/internet_computer/info/info.json new file mode 100644 index 0000000000000..c191849b54bf4 --- /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 0000000000000..07b0d6c66c371 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 7a09bd8d2ad7b..e8ee62111f4a3 100644 --- a/blockchains/iost/info/info.json +++ b/blockchains/iost/info/info.json @@ -2,12 +2,12 @@ "name": "IOST", "website": "http://iost.io", "description": "The IOS (Internet of Services) offers a solid infrastructure for online service providers. Features a high TPS, scalable and secure blockchain, with privacy protection.", - "explorer": "https://www.iostabc.com/", + "explorer": "https://explorer.iost.io", "research": "https://research.binance.com/en/projects/iost", "symbol": "IOST", "type": "coin", - "decimals": 8, - "status": "abandoned", + "decimals": 2, + "status": "active", "links": [ { "name": "github", @@ -15,7 +15,7 @@ }, { "name": "twitter", - "url": "https://twitter.com/iostoken" + "url": "https://twitter.com/IOST_Official" }, { "name": "reddit", diff --git a/blockchains/iris/info/info.json b/blockchains/iris/info/info.json index 7d2b2d8b34798..a558f5f1a7a51 100644 --- a/blockchains/iris/info/info.json +++ b/blockchains/iris/info/info.json @@ -7,9 +7,9 @@ "description": "Built with Cosmos-SDK, IRIS Hub enables cross-chain interoperability through a unified service model, while providing a variety of modules to support DeFi applications.", "explorer": "https://www.mintscan.io/iris", "status": "active", - "rpc_url": "https://rpc-irisnet-ia.cosmosia.notional.ventures/", + "rpc_url": "https://rpc-irisnet-01.stakeflow.io", "denom": "uiris", - "lcd_url": "https://api-irisnet-ia.cosmosia.notional.ventures/", + "lcd_url": "https://api-irisnet-01.stakeflow.io", "hrp": "iaa", "fee_rate": "0.025", "links": [ diff --git a/blockchains/iris/validators/assets/iva1aj6frfd5g0a5d88j6mjpvy0ql5afd5crt90uqx/logo.png b/blockchains/iris/validators/assets/iva1aj6frfd5g0a5d88j6mjpvy0ql5afd5crt90uqx/logo.png new file mode 100644 index 0000000000000..4b09813738a9d Binary files /dev/null and b/blockchains/iris/validators/assets/iva1aj6frfd5g0a5d88j6mjpvy0ql5afd5crt90uqx/logo.png differ diff --git a/blockchains/iris/validators/assets/iva1d3z30ndxuqas8vr3mrc7028ykvfaukal0tnj0p/logo.png b/blockchains/iris/validators/assets/iva1d3z30ndxuqas8vr3mrc7028ykvfaukal0tnj0p/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/iris/validators/assets/iva1d3z30ndxuqas8vr3mrc7028ykvfaukal0tnj0p/logo.png differ diff --git a/blockchains/iris/validators/assets/iva1n3hnhva22tykxxekrdq6zup4qcznsr9qc00fp6/logo.png b/blockchains/iris/validators/assets/iva1n3hnhva22tykxxekrdq6zup4qcznsr9qc00fp6/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/iris/validators/assets/iva1n3hnhva22tykxxekrdq6zup4qcznsr9qc00fp6/logo.png differ diff --git a/blockchains/iris/validators/list.json b/blockchains/iris/validators/list.json new file mode 100644 index 0000000000000..75a1aedba2c36 --- /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 index 3df5fdda85756..f77be438c10fc 100644 --- a/blockchains/juno/info/info.json +++ b/blockchains/juno/info/info.json @@ -12,6 +12,9 @@ "lcd_url": "https://lcd-juno.itastakers.com", "hrp": "juno", "fee_rate": "0.04", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", diff --git a/blockchains/juno/info/logo.png b/blockchains/juno/info/logo.png index d521db46a3a26..dd6c870c1dd22 100644 Binary files a/blockchains/juno/info/logo.png and b/blockchains/juno/info/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm/logo.png b/blockchains/juno/validators/assets/junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn/logo.png b/blockchains/juno/validators/assets/junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn/logo.png new file mode 100644 index 0000000000000..c3f41f6b4206b Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw/logo.png b/blockchains/juno/validators/assets/junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw/logo.png new file mode 100644 index 0000000000000..5f2434df2bfdd Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1afhtjur8js4589xymu346ca7a5y5293x7p64ca/logo.png b/blockchains/juno/validators/assets/junovaloper1afhtjur8js4589xymu346ca7a5y5293x7p64ca/logo.png new file mode 100644 index 0000000000000..9a688eab883cb Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1afhtjur8js4589xymu346ca7a5y5293x7p64ca/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1hx9yj7qgnp8zhkrqfanvz74mcsg9d8eyskvsxg/logo.png b/blockchains/juno/validators/assets/junovaloper1hx9yj7qgnp8zhkrqfanvz74mcsg9d8eyskvsxg/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1hx9yj7qgnp8zhkrqfanvz74mcsg9d8eyskvsxg/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1ka8v934kgrw6679fs9cuu0kesyl0ljjy2kdtrl/logo.png b/blockchains/juno/validators/assets/junovaloper1ka8v934kgrw6679fs9cuu0kesyl0ljjy2kdtrl/logo.png new file mode 100644 index 0000000000000..ba2f64c9b4f19 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1ka8v934kgrw6679fs9cuu0kesyl0ljjy2kdtrl/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55/logo.png b/blockchains/juno/validators/assets/junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9uxyejze/logo.png b/blockchains/juno/validators/assets/junovaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9uxyejze/logo.png new file mode 100644 index 0000000000000..bcdec563b9539 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1sjllsnramtg3ewxqwwrwjxfgc4n4ef9uxyejze/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1ssmt2aveqpc7e0ncgxt0tpj83ur623dvk7uvng/logo.png b/blockchains/juno/validators/assets/junovaloper1ssmt2aveqpc7e0ncgxt0tpj83ur623dvk7uvng/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1ssmt2aveqpc7e0ncgxt0tpj83ur623dvk7uvng/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa/logo.png b/blockchains/juno/validators/assets/junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa/logo.png new file mode 100644 index 0000000000000..70c64d1b880b9 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1wd02ktcvpananlvd9u6jm3x3ap3vmw59jv9vez/logo.png b/blockchains/juno/validators/assets/junovaloper1wd02ktcvpananlvd9u6jm3x3ap3vmw59jv9vez/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1wd02ktcvpananlvd9u6jm3x3ap3vmw59jv9vez/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1xdywquvz5g6r5wv6tpkj6chad0fkk459gf9ny6/logo.png b/blockchains/juno/validators/assets/junovaloper1xdywquvz5g6r5wv6tpkj6chad0fkk459gf9ny6/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1xdywquvz5g6r5wv6tpkj6chad0fkk459gf9ny6/logo.png differ diff --git a/blockchains/juno/validators/assets/junovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2wsdcwk/logo.png b/blockchains/juno/validators/assets/junovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2wsdcwk/logo.png new file mode 100644 index 0000000000000..b39ad7ed7ff85 Binary files /dev/null and b/blockchains/juno/validators/assets/junovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2wsdcwk/logo.png differ diff --git a/blockchains/juno/validators/list.json b/blockchains/juno/validators/list.json new file mode 100644 index 0000000000000..8ae2bc5b4ada4 --- /dev/null +++ b/blockchains/juno/validators/list.json @@ -0,0 +1,80 @@ +[ + { + "id": "junovaloper1la7th9kc3gdltl53cedxxqpkyk5runudrzwx55", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "junovaloper1t8ehvswxjfn3ejzkjtntcyrqwvmvuknzmvtaaa", + "name": "Cosmostation", + "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", + "website": "https://www.cosmostation.io/" + }, + { + "id": "junovaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcqcnylw", + "name": "SG-1", + "description": "SG-1 - your favorite validator on Juno. We offer 100% Soft Slash protection.", + "website": "https://sg-1.online/" + }, + { + "id": "junovaloper185hgkqs8q8ysnc8cvkgd8j2knnq2m0ah6ae73gntv9ampgwpmrxqlfzywn", + "name": "DAO DAO", + "description": "A validator run by a DAO.", + "website": "https://daodao.zone/" + }, + { + "id": "junovaloper15yuuev6n8sfvvkqx2m4rqvrnu8vyuzvmkku3fm", + "name": "AutoStake 🛡️ Slash Protected", + "description": "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/" + }, + { + "id": "junovaloper1hx9yj7qgnp8zhkrqfanvz74mcsg9d8eyskvsxg", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection & Eligible for airdrops | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + } +] diff --git a/blockchains/kava/assets/usdt/info.json b/blockchains/kava/assets/usdt/info.json new file mode 100644 index 0000000000000..4d8d58e13c122 --- /dev/null +++ b/blockchains/kava/assets/usdt/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://www.mintscan.io/kava", + "type": "KAVA", + "symbol": "USDT", + "decimals": 8, + "status": "active", + "id": "usdt", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/kava/assets/usdt/logo.png b/blockchains/kava/assets/usdt/logo.png new file mode 100644 index 0000000000000..f8ba68a56c9a8 Binary files /dev/null and b/blockchains/kava/assets/usdt/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper16l4cn6tzqm8ll7t3t8zkwd0ut3lny7dttrk0dk/logo.png b/blockchains/kava/validators/assets/kavavaloper16l4cn6tzqm8ll7t3t8zkwd0ut3lny7dttrk0dk/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper16l4cn6tzqm8ll7t3t8zkwd0ut3lny7dttrk0dk/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq/logo.png b/blockchains/kava/validators/assets/kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u/logo.png b/blockchains/kava/validators/assets/kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9/logo.png b/blockchains/kava/validators/assets/kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d/logo.png b/blockchains/kava/validators/assets/kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/kava/validators/assets/kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d/logo.png differ diff --git a/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png b/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png index 3c29ee005d51c..0888af01c5da5 100644 Binary files a/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png and b/blockchains/kava/validators/assets/kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g/logo.png differ diff --git a/blockchains/kava/validators/list.json b/blockchains/kava/validators/list.json index 5fc6dfe71e781..785827b7b6895 100644 --- a/blockchains/kava/validators/list.json +++ b/blockchains/kava/validators/list.json @@ -1,4 +1,16 @@ [ + { + "id": "kavavaloper1t787gjxtyswnncltluwaefg0dfgvwrm87d3g9d", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "kavavaloper1gd5hf545caremavv28apr9mzf7f7ns395c27mq", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, { "id": "kavavaloper196w5nuha6u2ucwr65cqwnqrzxuemsyhv2c0lq8", "name": "Sunflower 🌻", @@ -23,9 +35,15 @@ "description": "Atomic Nodes is a multi chain staking operator, trusted by over 200,000 delegators since 2019.", "website": "https://atomicnodes.com" }, + { + "id": "kavavaloper1hztgl202pvetspxch0pcchaqzrduw4qq64q08u", + "name": "AutoStake 🛡️ Slash Protected", + "description": "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" }, @@ -62,7 +80,7 @@ { "id": "kavavaloper1dede4flaq24j2g9u8f83vkqrqxe6cwzrxt5zsu", "name": "Stakin", - "description": "Your Trusted Crypto Rewards", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", "website": "https://stakin.com/" }, { @@ -139,9 +157,9 @@ }, { "id": "kavavaloper1uvz0vus7ktxt47cermscwe3k9gs7h9ag05sh6g", - "name": "Genesis Lab", - "description": "Genesis Lab is a validation nodes operator in PoS networks and blockchain-focused software development company", - "website": "https://genesislab.net" + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" }, { "id": "kavavaloper1ppj7c8tqt2e3rzqtmztsmd6ea6u3nz6qggcp5e", @@ -196,5 +214,17 @@ "name": "Stakewolle", "description": "🚀 Professional validator 🔁Auto-compound with REStakeapp 🛡100% Slashing protection 🎁 All & Special Airdrops for our delegators http://linktr.ee/stakewolle", "website": "https://stakewolle.com/" + }, + { + "id": "kavavaloper1nlmz3fnsj7668dyttrn0rpmdu5t5ld8g8ta9a9", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "kavavaloper16l4cn6tzqm8ll7t3t8zkwd0ut3lny7dttrk0dk", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" } ] diff --git a/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/info.json b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/info.json new file mode 100644 index 0000000000000..598d710a816a6 --- /dev/null +++ b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "symbol": "USDT", + "type": "KAVAEVM", + "decimals": 6, + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "website": "https://tether.to", + "explorer": "https://explorer.kava.io/token/0x919C1c267BC06a7039e03fcc2eF738525769109c", + "status": "active", + "id": "0x919C1c267BC06a7039e03fcc2eF738525769109c", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/logo.png b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/logo.png new file mode 100644 index 0000000000000..0a265affb2c8a Binary files /dev/null and b/blockchains/kavaevm/assets/0x919C1c267BC06a7039e03fcc2eF738525769109c/logo.png differ diff --git a/blockchains/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 0000000000000..9c4951c081e3d --- /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 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/kavaevm/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/kavaevm/info/info.json b/blockchains/kavaevm/info/info.json index 1020e1d2e7df7..dd878b46a84db 100644 --- a/blockchains/kavaevm/info/info.json +++ b/blockchains/kavaevm/info/info.json @@ -40,6 +40,7 @@ } ], "tags": [ - "defi" + "defi", + "dapp" ] } diff --git a/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/info.json b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/info.json new file mode 100644 index 0000000000000..9e0581c091f35 --- /dev/null +++ b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/info.json @@ -0,0 +1,42 @@ +{ + "name": "Klaytn Dai", + "website": "http://makerdao.com", + "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", + "explorer": "https://kaiascan.io/token/0x5c74070fdea071359b86082bd9f9b3deaafbe32b", + "research": "https://research.binance.com/en/projects/dai", + "type": "KAIA", + "symbol": "KDAI", + "decimals": 18, + "status": "active", + "id": "0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MakerDAO" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MakerDAO/" + }, + { + "name": "blog", + "url": "https://blog.makerdao.com/" + }, + { + "name": "whitepaper", + "url": "https://makerdao.com/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/multi-collateral-dai/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/logo.png b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/logo.png new file mode 100644 index 0000000000000..f62e11387ebef Binary files /dev/null and b/blockchains/klaytn/assets/0x5c74070FDeA071359b86082bd9f9b3dEaafbe32b/logo.png differ diff --git a/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/info.json b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/info.json new file mode 100644 index 0000000000000..6c97ee40e2752 --- /dev/null +++ b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/info.json @@ -0,0 +1,36 @@ +{ + "name": "USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://kaiascan.io/token/0x6270b58be569a7c0b8f47594f191631ae5b2c86c", + "type": "KAIA", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/logo.png b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/logo.png new file mode 100644 index 0000000000000..2191b105edec5 Binary files /dev/null and b/blockchains/klaytn/assets/0x6270B58BE569a7c0b8f47594F191631Ae5b2C86C/logo.png differ diff --git a/blockchains/klaytn/info/info.json b/blockchains/klaytn/info/info.json index b583f923bdff2..9a8f55be5538f 100644 --- a/blockchains/klaytn/info/info.json +++ b/blockchains/klaytn/info/info.json @@ -1,18 +1,21 @@ { - "name": "klaytn", - "website": "https://klaytn.foundation", - "description": "Klaytn is an open-source public blockchain for all who wish to build, work, or play in the metaverse.", - "explorer": "https://scope.klaytn.com", + "name": "kaia", + "website": "https://kaia.io", + "description": "Kaia is an open-source public blockchain for all who wish to build, work, or play in the metaverse.", + "explorer": "https://kaiascan.io", "research": "", "symbol": "KLAY", "type": "coin", "decimals": 18, - "rpc_url": "https://public-node-api.klaytnapi.com/v1/cypress", + "rpc_url": "https://public-en.node.kaia.io", "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "twitter", - "url": "https://twitter.com/klaytn_official" + "url": "https://twitter.com/kaiachain" } ] } diff --git a/blockchains/klaytn/info/logo.png b/blockchains/klaytn/info/logo.png index 091f89c31c5f4..5462c404320ec 100644 Binary files a/blockchains/klaytn/info/logo.png and b/blockchains/klaytn/info/logo.png differ diff --git a/blockchains/komodo/info/info.json b/blockchains/komodo/info/info.json new file mode 100644 index 0000000000000..63f7522fd5b9c --- /dev/null +++ b/blockchains/komodo/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Komodo", + "website": "https://komodoplatform.com", + "description": "Komodo is an open-source blockchain technology provider. We are a community of innovators changing the world.", + "explorer": "https://kmdexplorer.io/", + "symbol": "KMD", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/KomodoPlatform/komodo" + }, + { + "name": "twitter", + "url": "https://twitter.com/KomodoPlatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/komodo/info/logo.png b/blockchains/komodo/info/logo.png new file mode 100644 index 0000000000000..2584dcde87a0d Binary files /dev/null and b/blockchains/komodo/info/logo.png differ diff --git a/blockchains/kujira/validators/assets/kujiravaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z6yz0hy/logo.png b/blockchains/kujira/validators/assets/kujiravaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z6yz0hy/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/kujira/validators/assets/kujiravaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z6yz0hy/logo.png differ diff --git a/blockchains/kujira/validators/assets/kujiravaloper1esj2mkumg8q9l7wunkqzu85jvz7zrrcykeeka7/logo.png b/blockchains/kujira/validators/assets/kujiravaloper1esj2mkumg8q9l7wunkqzu85jvz7zrrcykeeka7/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/kujira/validators/assets/kujiravaloper1esj2mkumg8q9l7wunkqzu85jvz7zrrcykeeka7/logo.png differ diff --git a/blockchains/kujira/validators/assets/kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0/logo.png b/blockchains/kujira/validators/assets/kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/kujira/validators/assets/kujiravaloper1rc2h9eg3wul70a8yruadmn9vf947nhcdzcjyg0/logo.png differ diff --git a/blockchains/kujira/validators/list.json b/blockchains/kujira/validators/list.json new file mode 100644 index 0000000000000..062df0d4ece5c --- /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 e3f084473e307..f23f52705d15c 100644 --- a/blockchains/kusama/info/info.json +++ b/blockchains/kusama/info/info.json @@ -20,5 +20,8 @@ "name": "reddit", "url": "https://reddit.com/r/Kusama" } + ], + "tags": [ + "staking-native" ] } \ No newline at end of file diff --git a/blockchains/kusama/validators/assets/CmjHFdR59QAZMuyjDF5Sn4mwTgGbKMH2cErUFuf6UT51UwS/logo.png b/blockchains/kusama/validators/assets/CmjHFdR59QAZMuyjDF5Sn4mwTgGbKMH2cErUFuf6UT51UwS/logo.png new file mode 100644 index 0000000000000..8a1a37b8cc02a Binary files /dev/null and b/blockchains/kusama/validators/assets/CmjHFdR59QAZMuyjDF5Sn4mwTgGbKMH2cErUFuf6UT51UwS/logo.png differ diff --git a/blockchains/kusama/validators/assets/DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi/logo.png b/blockchains/kusama/validators/assets/DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/kusama/validators/assets/DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi/logo.png differ diff --git a/blockchains/kusama/validators/assets/DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv/logo.png b/blockchains/kusama/validators/assets/DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv/logo.png new file mode 100644 index 0000000000000..33273a1e37b6d Binary files /dev/null and b/blockchains/kusama/validators/assets/DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv/logo.png differ diff --git a/blockchains/kusama/validators/assets/DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ/logo.png b/blockchains/kusama/validators/assets/DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/kusama/validators/assets/DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ/logo.png differ diff --git a/blockchains/kusama/validators/assets/EDEVriQd4TpEHHyWnLbQHDYjY9avxxkWhNmBou4SHKixgt1/logo.png b/blockchains/kusama/validators/assets/EDEVriQd4TpEHHyWnLbQHDYjY9avxxkWhNmBou4SHKixgt1/logo.png new file mode 100644 index 0000000000000..33273a1e37b6d Binary files /dev/null and b/blockchains/kusama/validators/assets/EDEVriQd4TpEHHyWnLbQHDYjY9avxxkWhNmBou4SHKixgt1/logo.png differ diff --git a/blockchains/kusama/validators/assets/ESRBbWstgpPV1pVBsqjMo717rA8HLrtQvEUVwAGeFZyKcia/logo.png b/blockchains/kusama/validators/assets/ESRBbWstgpPV1pVBsqjMo717rA8HLrtQvEUVwAGeFZyKcia/logo.png new file mode 100644 index 0000000000000..63b99724ea40c Binary files /dev/null and b/blockchains/kusama/validators/assets/ESRBbWstgpPV1pVBsqjMo717rA8HLrtQvEUVwAGeFZyKcia/logo.png differ diff --git a/blockchains/kusama/validators/assets/EfcQCKZJaNu2vcrpnJDCoh1ub4mGWcHVzeU8ghUH7Co9rui/logo.png b/blockchains/kusama/validators/assets/EfcQCKZJaNu2vcrpnJDCoh1ub4mGWcHVzeU8ghUH7Co9rui/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/kusama/validators/assets/EfcQCKZJaNu2vcrpnJDCoh1ub4mGWcHVzeU8ghUH7Co9rui/logo.png differ diff --git a/blockchains/kusama/validators/assets/F2VckTExmProzJnwNaN3YVqDoBPS1LyNVmyG8HUAygtDV3T/logo.png b/blockchains/kusama/validators/assets/F2VckTExmProzJnwNaN3YVqDoBPS1LyNVmyG8HUAygtDV3T/logo.png new file mode 100644 index 0000000000000..33273a1e37b6d Binary files /dev/null and b/blockchains/kusama/validators/assets/F2VckTExmProzJnwNaN3YVqDoBPS1LyNVmyG8HUAygtDV3T/logo.png differ diff --git a/blockchains/kusama/validators/list.json b/blockchains/kusama/validators/list.json new file mode 100644 index 0000000000000..f2baf32d4dcab --- /dev/null +++ b/blockchains/kusama/validators/list.json @@ -0,0 +1,50 @@ +[ + { + "id": "DteShXKaQQy2un2VizKwwhViN5e7F47UrkAZDkxgK22LdBv", + "name": "P2P.ORG/29", + "description": "P2P helps investors compound their cryptocurrency investments through non-custodial staking.", + "website": "https://p2p.org" + }, + { + "id": "EDEVriQd4TpEHHyWnLbQHDYjY9avxxkWhNmBou4SHKixgt1", + "name": "P2P.ORG/37", + "description": "P2P helps investors compound their cryptocurrency investments through non-custodial staking.", + "website": "https://p2p.org" + }, + { + "id": "F2VckTExmProzJnwNaN3YVqDoBPS1LyNVmyG8HUAygtDV3T", + "name": "P2P.ORG/38", + "description": "P2P helps investors compound their cryptocurrency investments through non-custodial staking.", + "website": "https://p2p.org" + }, + { + "id": "ESRBbWstgpPV1pVBsqjMo717rA8HLrtQvEUVwAGeFZyKcia", + "name": "Everstake", + "description": "Everstake is a staking-as-a-service company. We help institutional investors and regular token holders to profit off their crypto assets. Choose the most promising projects, delegate with Everstake, and make a stable passive income.", + "website": "https://everstake.one/" + }, + { + "id": "CmjHFdR59QAZMuyjDF5Sn4mwTgGbKMH2cErUFuf6UT51UwS", + "name": "COSMOON", + "description": "Cosmoon brings to cryptocurrency investors the best staking system with low fees.", + "website": "https://cosmoon.org" + }, + { + "id": "DuRV4MSm54UoX3MpFe3P7rxjBFLfnKRThxG66s4n3yF8qbJ", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "DPc3YPyWts9LjqBUy7hhLDwN4iHPXU6vicURDMYAMqnW5gi", + "name": "Stakeflow/2", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "EfcQCKZJaNu2vcrpnJDCoh1ub4mGWcHVzeU8ghUH7Co9rui", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + } +] \ No newline at end of file diff --git a/blockchains/linea/assets/0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af/info.json b/blockchains/linea/assets/0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af/info.json new file mode 100644 index 0000000000000..1eb198047601a --- /dev/null +++ b/blockchains/linea/assets/0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af/info.json @@ -0,0 +1,25 @@ +{ + "name": "Lynex", + "type": "LINEA", + "symbol": "LYNX", + "decimals": 18, + "website": "https://www.lynex.fi/", + "description": "Lynex stands as a cutting-edge decentralized exchange (DEX), liquidity layer, and ALM aggregator on the Linea blockchain. This robust platform revolutionizes DeFi activities by offering token swapping, seamless liquidity provision, and governance through the innovative veLYNX voting mechanism.", + "explorer": "https://lineascan.build/token/0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af", + "status": "active", + "id": "0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LynexFi" + }, + { + "name": "telegram", + "url": "https://t.me/lynexfi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lynex/" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af/logo.png b/blockchains/linea/assets/0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af/logo.png new file mode 100644 index 0000000000000..dc8baab6eb7e3 Binary files /dev/null and b/blockchains/linea/assets/0x1a51b19CE03dbE0Cb44C1528E34a7EDD7771E9Af/logo.png differ diff --git a/blockchains/linea/assets/0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8/info.json b/blockchains/linea/assets/0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8/info.json new file mode 100644 index 0000000000000..4235901e392b1 --- /dev/null +++ b/blockchains/linea/assets/0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8/info.json @@ -0,0 +1,25 @@ +{ + "name": "Wrapped MATIC", + "type": "LINEA", + "symbol": "WMATIC", + "decimals": 18, + "website": "https://polygon.technology", + "description": "Wrapped MATIC", + "explorer": "https://lineascan.build/token/0x265b25e22bcd7f10a5bd6e6410f10537cc7567e8", + "status": "active", + "id": "0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/0xPolygon" + }, + { + "name": "telegram", + "url": "https://t.me/polygonofficial" + }, + { + "name": "github", + "url": "https://github.com/maticnetwork/" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8/logo.png b/blockchains/linea/assets/0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8/logo.png new file mode 100644 index 0000000000000..1809c477de968 Binary files /dev/null and b/blockchains/linea/assets/0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8/logo.png differ diff --git a/blockchains/linea/assets/0x2b1D36f5B61AdDAf7DA7ebbd11B35FD8cfb0DE31/info.json b/blockchains/linea/assets/0x2b1D36f5B61AdDAf7DA7ebbd11B35FD8cfb0DE31/info.json new file mode 100644 index 0000000000000..3d408bb1de40a --- /dev/null +++ b/blockchains/linea/assets/0x2b1D36f5B61AdDAf7DA7ebbd11B35FD8cfb0DE31/info.json @@ -0,0 +1,25 @@ +{ + "name": "Interport Token", + "type": "LINEA", + "symbol": "ITP", + "decimals": 18, + "website": "https://interport.fi/", + "description": "Pushing cross-chain boundaries for seamless DeFi operations. We empower traders with fast cross-chain swaps at the best rates powered by meta DEX aggregation and cross-chain messaging.", + "explorer": "https://lineascan.build/token/0x2b1d36f5b61addaf7da7ebbd11b35fd8cfb0de31", + "status": "active", + "id": "0x2b1D36f5B61AdDAf7DA7ebbd11B35FD8cfb0DE31", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/interportfi" + }, + { + "name": "telegram", + "url": "https://t.me/interport_fi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/interport-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0x2b1D36f5B61AdDAf7DA7ebbd11B35FD8cfb0DE31/logo.png b/blockchains/linea/assets/0x2b1D36f5B61AdDAf7DA7ebbd11B35FD8cfb0DE31/logo.png new file mode 100644 index 0000000000000..e599ee2796187 Binary files /dev/null and b/blockchains/linea/assets/0x2b1D36f5B61AdDAf7DA7ebbd11B35FD8cfb0DE31/logo.png differ diff --git a/blockchains/linea/assets/0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4/info.json b/blockchains/linea/assets/0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4/info.json new file mode 100644 index 0000000000000..df63ee8b93e67 --- /dev/null +++ b/blockchains/linea/assets/0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped AVAX", + "website": "http://avax.network", + "description": "Avalanche is an open-source platform for launching Decentralized Finance (DeFi) applications and enterprise blockchain deployments in an interoperable, highly scalable ecosystem.", + "explorer": "https://lineascan.build/token/0x5471ea8f739dd37e9b81be9c5c77754d8aa953e4", + "symbol": "AVAX", + "type": "LINEA", + "decimals": 18, + "status": "active", + "id": "0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4", + "links": [ + { + "name": "github", + "url": "https://github.com/ava-labs" + }, + { + "name": "whitepaper", + "url": "https://www.avalabs.org/whitepapers" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4/logo.png b/blockchains/linea/assets/0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4/logo.png new file mode 100644 index 0000000000000..8abb12b9c0aeb Binary files /dev/null and b/blockchains/linea/assets/0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4/logo.png differ diff --git a/blockchains/linea/assets/0x5FBDF89403270a1846F5ae7D113A989F850d1566/info.json b/blockchains/linea/assets/0x5FBDF89403270a1846F5ae7D113A989F850d1566/info.json new file mode 100644 index 0000000000000..dd38026c81cce --- /dev/null +++ b/blockchains/linea/assets/0x5FBDF89403270a1846F5ae7D113A989F850d1566/info.json @@ -0,0 +1,25 @@ +{ + "name": "Foxy", + "type": "LINEA", + "symbol": "FOXY", + "decimals": 18, + "website": "https://www.welikethefox.io/", + "description": "Foxy is a mascot token for the Linea blockchain. Foxy is a culture coin, a meme token for the users of the Linea blockchain to rally behind, and help build a sense of community.", + "explorer": "https://lineascan.build/token/0x5FBDF89403270a1846F5ae7D113A989F850d1566", + "status": "active", + "id": "0x5FBDF89403270a1846F5ae7D113A989F850d1566", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/foxylinea" + }, + { + "name": "telegram", + "url": "https://t.me/coinmarketcap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/foxy/" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0x5FBDF89403270a1846F5ae7D113A989F850d1566/logo.png b/blockchains/linea/assets/0x5FBDF89403270a1846F5ae7D113A989F850d1566/logo.png new file mode 100644 index 0000000000000..cf3cf9c5d81a5 Binary files /dev/null and b/blockchains/linea/assets/0x5FBDF89403270a1846F5ae7D113A989F850d1566/logo.png differ diff --git a/blockchains/linea/assets/0x7d43AABC515C356145049227CeE54B608342c0ad/info.json b/blockchains/linea/assets/0x7d43AABC515C356145049227CeE54B608342c0ad/info.json new file mode 100644 index 0000000000000..b997334ebff22 --- /dev/null +++ b/blockchains/linea/assets/0x7d43AABC515C356145049227CeE54B608342c0ad/info.json @@ -0,0 +1,41 @@ +{ + "name": "BUSD", + "website": "https://paxos.com/busd", + "description": "BUSD is a token issued by Binance on Smart Chain; its price is pegged to BUSD (BUSD LINEA) at a ratio of 1:1.", + "explorer": "https://lineascan.build/token/0x7d43AABC515C356145049227CeE54B608342c0ad", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "LINEA", + "symbol": "BUSD", + "decimals": 18, + "status": "active", + "id": "0x7d43AABC515C356145049227CeE54B608342c0ad", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/binance-chain/" + }, + { + "name": "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/linea/assets/0x7d43AABC515C356145049227CeE54B608342c0ad/logo.png b/blockchains/linea/assets/0x7d43AABC515C356145049227CeE54B608342c0ad/logo.png new file mode 100644 index 0000000000000..76d02e370b6d6 Binary files /dev/null and b/blockchains/linea/assets/0x7d43AABC515C356145049227CeE54B608342c0ad/logo.png differ diff --git a/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 0000000000000..4323658b390ae --- /dev/null +++ b/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json @@ -0,0 +1,69 @@ +{ + "name": "Axelar Wrapped USDC", + "symbol": "axlUSDC", + "type": "LINEA", + "decimals": 6, + "description": "Axelar delivers secure cross-chain communication for Web3. Our infrastructure enables dApp users to interact with any asset or application, on any chain, with one click.", + "website": "https://axelar.network/", + "explorer": "https://explorer.linea.build/token/0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "status": "active", + "id": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "links": [ + { + "name": "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 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/linea/assets/0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f/info.json b/blockchains/linea/assets/0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f/info.json new file mode 100644 index 0000000000000..87d1cb128eae3 --- /dev/null +++ b/blockchains/linea/assets/0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped Ether", + "type": "LINEA", + "symbol": "WETH", + "decimals": 18, + "website": "https://weth.io/", + "description": "wETH is wrapped ETH", + "explorer": "https://lineascan.build/token/0xe5d7c2a44ffddf6b295a15c148167daaaf5cf34f", + "status": "active", + "id": "0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/weth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/linea/assets/0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f/logo.png b/blockchains/linea/assets/0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f/logo.png new file mode 100644 index 0000000000000..5ebf2888adba2 Binary files /dev/null and b/blockchains/linea/assets/0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f/logo.png differ diff --git a/blockchains/linea/info/info.json b/blockchains/linea/info/info.json new file mode 100644 index 0000000000000..1cbc7c1d9ed0e --- /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 0000000000000..a94dca4ae17b8 Binary files /dev/null and b/blockchains/linea/info/logo.png differ diff --git a/blockchains/linea/tokenlist.json b/blockchains/linea/tokenlist.json new file mode 100644 index 0000000000000..f847aa0be3d38 --- /dev/null +++ b/blockchains/linea/tokenlist.json @@ -0,0 +1,23 @@ +{ + "name": "Trust Wallet: Linea List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2024-03-18T14:33:26.183301", + "tokens": [ + { + "asset": "c59144_t0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "type": "LINEA", + "address": "0xEB466342C4d449BC9f53A865D5Cb90586f405215", + "name": "Axelar Wrapped USDC", + "symbol": "axlUSDC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/linea/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png", + "pairs": [] + } + + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} diff --git a/blockchains/logo.png b/blockchains/logo.png deleted file mode 100644 index 9592cd25373f8..0000000000000 Binary files a/blockchains/logo.png and /dev/null differ diff --git a/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/info.json b/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/info.json new file mode 100644 index 0000000000000..c69f990aa7148 --- /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 0000000000000..cde76e4178a79 Binary files /dev/null and b/blockchains/manta/assets/0x95CeF13441Be50d20cA4558CC0a27B601aC544E5/logo.png differ diff --git a/blockchains/manta/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/manta/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 0000000000000..d547714679285 --- /dev/null +++ b/blockchains/manta/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lorenzo stBTC", + "type": "MANTA", + "symbol": "stBTC", + "decimals": 18, + "website": "https://www.lorenzo-protocol.xyz/", + "description": "To be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "explorer": "https://manta.socialscan.io/token/0xf6718b2701d4a6498ef77d7c152b2137ab28b8a3", + "status": "active", + "id": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LorenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/lorenzoprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/manta/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png b/blockchains/manta/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png new file mode 100644 index 0000000000000..d0c4e5f85eb2b Binary files /dev/null and b/blockchains/manta/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/manta/info/info.json b/blockchains/manta/info/info.json new file mode 100644 index 0000000000000..dc725031def2d --- /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 0000000000000..cde76e4178a79 Binary files /dev/null and b/blockchains/manta/info/logo.png differ diff --git a/blockchains/mantle/assets/0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE/info.json b/blockchains/mantle/assets/0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE/info.json new file mode 100644 index 0000000000000..4e8c42284c75a --- /dev/null +++ b/blockchains/mantle/assets/0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE/info.json @@ -0,0 +1,24 @@ +{ + "name": "Tether USD", + "website": "https://bridge.mantle.xyz/", + "description": "Tether USD - Mantle Bridged (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://explorer.mantle.xyz/address/0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE", + "type": "MANTLE", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/mantle-bridged-usdt-mantle" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE/logo.png b/blockchains/mantle/assets/0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE/logo.png new file mode 100644 index 0000000000000..4b3027306a91c Binary files /dev/null and b/blockchains/mantle/assets/0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE/logo.png differ diff --git a/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 0000000000000..5094062a8742f --- /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 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/mantle/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/mantle/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/mantle/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 0000000000000..265679cf89329 --- /dev/null +++ b/blockchains/mantle/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lorenzo stBTC", + "type": "MANTLE", + "symbol": "stBTC", + "decimals": 18, + "website": "https://www.lorenzo-protocol.xyz/", + "description": "To be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "explorer": "https://explorer.mantle.xyz/token/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "status": "active", + "id": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LorenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/lorenzoprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/mantle/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png b/blockchains/mantle/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png new file mode 100644 index 0000000000000..d0c4e5f85eb2b Binary files /dev/null and b/blockchains/mantle/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/mantle/info/info.json b/blockchains/mantle/info/info.json new file mode 100644 index 0000000000000..e3f36c6d417b1 --- /dev/null +++ b/blockchains/mantle/info/info.json @@ -0,0 +1,11 @@ +{ + "name": "Mantle Chain", + "website": "https://www.mantle.xyz", + "description": "Mantle Network is a technology stack for scaling Ethereum, and we strive to be EVM-compatible while doing so.", + "explorer": "https://explorer.mantle.xyz/blocks", + "symbol": "MNT", + "rpc_url": "https://rpc.mantle.xyz", + "type": "coin", + "decimals": 18, + "status": "active" +} \ No newline at end of file diff --git a/blockchains/mantle/info/logo.png b/blockchains/mantle/info/logo.png new file mode 100644 index 0000000000000..a6393b66b7a5e Binary files /dev/null and b/blockchains/mantle/info/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z9gkghl/logo.png b/blockchains/mars/validators/assets/marsvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z9gkghl/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z9gkghl/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2/logo.png b/blockchains/mars/validators/assets/marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2/logo.png new file mode 100644 index 0000000000000..b9144cc5256cc Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq/logo.png b/blockchains/mars/validators/assets/marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh/logo.png b/blockchains/mars/validators/assets/marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw/logo.png b/blockchains/mars/validators/assets/marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw/logo.png new file mode 100644 index 0000000000000..e3d5db9dd90c8 Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw/logo.png differ diff --git a/blockchains/mars/validators/assets/marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e/logo.png b/blockchains/mars/validators/assets/marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e/logo.png new file mode 100644 index 0000000000000..7d46ea7269f9e Binary files /dev/null and b/blockchains/mars/validators/assets/marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e/logo.png differ diff --git a/blockchains/mars/validators/list.json b/blockchains/mars/validators/list.json new file mode 100644 index 0000000000000..a95df352375f0 --- /dev/null +++ b/blockchains/mars/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "id": "marsvaloper1e36a686lnwutfuu2mlk4eusjqq3sd78zhykrfh", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "marsvaloper1trvtq89lkes7qjqhm5cyqltgvdu3jpej9ytn6e", + "name": "Smart Stake 📈📊 Analytics Hub", + "description": "Your hub for validator, network, decentralization, and relayer analytics. Support @ t.me/SmartStake. Like our services? Delegate on any of the networks listed @ smartstake.io", + "website": "https://mars.smartstake.io/" + }, + { + "id": "marsvaloper1km3nehyxu92vu2whjqhuqkmljvcd4nwv827jqw", + "name": "Larry Engineer", + "description": "validating with bare metal server from the comfort of home", + "website": "https://larry.engineer/" + }, + { + "id": "marsvaloper1c4r6mndnmrvr9455e88nad7lg09zd89f3c0xpq", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "marsvaloper1956ywsyr2uxhgy65425lkgu3fqr6lysmw26dl2", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at hello@polkachu.com", + "website": "https://polkachu.com/" + }, + { + "id": "marsvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z9gkghl", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + } +] \ No newline at end of file diff --git a/blockchains/merlin/assets/0x0726523Eba12EdaD467c55a962842Ef358865559/info.json b/blockchains/merlin/assets/0x0726523Eba12EdaD467c55a962842Ef358865559/info.json new file mode 100644 index 0000000000000..9e7629cd36c3f --- /dev/null +++ b/blockchains/merlin/assets/0x0726523Eba12EdaD467c55a962842Ef358865559/info.json @@ -0,0 +1,11 @@ +{ + "name": "Merlin's Seal ordi", + "type": "MERLIN", + "symbol": "M-ordi", + "decimals": 18, + "website": "https://merlinchain.io/bridge", + "description": "Merlin's Seal ordi", + "explorer": "https://scan.merlinchain.io/address/0x0726523eba12edad467c55a962842ef358865559", + "status": "active", + "id": "0x0726523Eba12EdaD467c55a962842Ef358865559" +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x0726523Eba12EdaD467c55a962842Ef358865559/logo.png b/blockchains/merlin/assets/0x0726523Eba12EdaD467c55a962842Ef358865559/logo.png new file mode 100644 index 0000000000000..9aeaaf304b3c7 Binary files /dev/null and b/blockchains/merlin/assets/0x0726523Eba12EdaD467c55a962842Ef358865559/logo.png differ diff --git a/blockchains/merlin/assets/0x07884346a65F95276C2b0E56b17165b191ab2C49/info.json b/blockchains/merlin/assets/0x07884346a65F95276C2b0E56b17165b191ab2C49/info.json new file mode 100644 index 0000000000000..d71ffc7d83163 --- /dev/null +++ b/blockchains/merlin/assets/0x07884346a65F95276C2b0E56b17165b191ab2C49/info.json @@ -0,0 +1,21 @@ +{ + "name": "Influpia", + "type": "MERLIN", + "symbol": "ING", + "decimals": 18, + "website": "https://www.influpia.com/", + "description": "Influpia is the premier ERC404 SocialFi application on MerlinChain, designed to offer a unique platform where users can earn tangible rewards through their social influence.", + "explorer": "https://scan.merlinchain.io/address/0x07884346a65f95276c2b0e56b17165b191ab2c49", + "status": "active", + "id": "0x07884346a65F95276C2b0E56b17165b191ab2C49", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/influpia" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/influpia" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x07884346a65F95276C2b0E56b17165b191ab2C49/logo.png b/blockchains/merlin/assets/0x07884346a65F95276C2b0E56b17165b191ab2C49/logo.png new file mode 100644 index 0000000000000..7e1a9f33a20fc Binary files /dev/null and b/blockchains/merlin/assets/0x07884346a65F95276C2b0E56b17165b191ab2C49/logo.png differ diff --git a/blockchains/merlin/assets/0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D/info.json b/blockchains/merlin/assets/0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D/info.json new file mode 100644 index 0000000000000..d55b10d6cfeaf --- /dev/null +++ b/blockchains/merlin/assets/0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D/info.json @@ -0,0 +1,21 @@ +{ + "name": "iZUMi Bond USD", + "type": "MERLIN", + "symbol": "IUSD", + "decimals": 18, + "website": "https://izumi.finance/", + "description": "iUSD, in its full name, iZUMi Bond USD, is 100% backed by iZUMi’s collaterals and future revenues. iUSD is 1:1 pegged to USD, issued by iZUMi Finance and sold to private investors as a bond to raise funds for future development of iZUMi’s ecosystem.", + "explorer": "https://scan.merlinchain.io/address/0x0a3bb08b3a15a19b4de82f8acfc862606fb69a2d", + "status": "active", + "id": "0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/izumi_Finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/izumi-bond-usd" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D/logo.png b/blockchains/merlin/assets/0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D/logo.png new file mode 100644 index 0000000000000..0a94cd1cff0d0 Binary files /dev/null and b/blockchains/merlin/assets/0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D/logo.png differ diff --git a/blockchains/merlin/assets/0x41D9036454BE47d3745A823C4aaCD0e29cFB0f71/info.json b/blockchains/merlin/assets/0x41D9036454BE47d3745A823C4aaCD0e29cFB0f71/info.json new file mode 100644 index 0000000000000..c1dabecd7d55a --- /dev/null +++ b/blockchains/merlin/assets/0x41D9036454BE47d3745A823C4aaCD0e29cFB0f71/info.json @@ -0,0 +1,25 @@ +{ + "name": "Solv BTC", + "website": "https://app.solv.finance/solvbtc", + "description": "Earn BTC Yield and Secure Solv Points", + "explorer": "https://scan.merlinchain.io/address/0x41d9036454be47d3745a823c4aacd0e29cfb0f71", + "type": "MERLIN", + "symbol": "SolvBTC", + "decimals": 18, + "status": "active", + "id": "0x41D9036454BE47d3745A823C4aaCD0e29cFB0f71", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SolvProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/SolvProtocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solv-btc" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x41D9036454BE47d3745A823C4aaCD0e29cFB0f71/logo.png b/blockchains/merlin/assets/0x41D9036454BE47d3745A823C4aaCD0e29cFB0f71/logo.png new file mode 100644 index 0000000000000..c928cf09b3263 Binary files /dev/null and b/blockchains/merlin/assets/0x41D9036454BE47d3745A823C4aaCD0e29cFB0f71/logo.png differ diff --git a/blockchains/merlin/assets/0x480E158395cC5b41e5584347c495584cA2cAf78d/info.json b/blockchains/merlin/assets/0x480E158395cC5b41e5584347c495584cA2cAf78d/info.json new file mode 100644 index 0000000000000..f8333fd531957 --- /dev/null +++ b/blockchains/merlin/assets/0x480E158395cC5b41e5584347c495584cA2cAf78d/info.json @@ -0,0 +1,21 @@ +{ + "name": "Merlin Chain Bridged VOYA (Merlin)", + "type": "MERLIN", + "symbol": "VOYA", + "decimals": 18, + "website": "https://merlinchain.io/bridge", + "description": "Merlin Chain Bridged VOYA (Merlin)", + "explorer": "https://scan.merlinchain.io/address/0x480E158395cC5b41e5584347c495584cA2cAf78d", + "status": "active", + "id": "0x480E158395cC5b41e5584347c495584cA2cAf78d", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MerlinLayer2" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/merlin-chain-bridged-voya-merlin" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x480E158395cC5b41e5584347c495584cA2cAf78d/logo.png b/blockchains/merlin/assets/0x480E158395cC5b41e5584347c495584cA2cAf78d/logo.png new file mode 100644 index 0000000000000..de7be1d33b290 Binary files /dev/null and b/blockchains/merlin/assets/0x480E158395cC5b41e5584347c495584cA2cAf78d/logo.png differ diff --git a/blockchains/merlin/assets/0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378/info.json b/blockchains/merlin/assets/0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378/info.json new file mode 100644 index 0000000000000..58bd43df277a0 --- /dev/null +++ b/blockchains/merlin/assets/0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378/info.json @@ -0,0 +1,21 @@ +{ + "name": "MERL", + "type": "MERLIN", + "symbol": "MERL", + "decimals": 18, + "website": "https://merlinchain.io/", + "description": "Merlin Chain serves as a Layer 2 solution for Bitcoin, incorporating essential components like ZK-Rollup networks, decentralized oracle networks, and fraud proofs within the Bitcoin chain. Its primary objective is to empower the native assets, protocols, and application ecosystem of Bitcoin Layer 1, facilitating ongoing innovation and maximizing asset potential on Layer 2 networks.", + "explorer": "https://scan.merlinchain.io/address/0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378", + "status": "active", + "id": "0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MerlinLayer2" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/merlin-chain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378/logo.png b/blockchains/merlin/assets/0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378/logo.png new file mode 100644 index 0000000000000..f0725e93ccbfb Binary files /dev/null and b/blockchains/merlin/assets/0x5c46bFF4B38dc1EAE09C5BAc65872a1D8bc87378/logo.png differ diff --git a/blockchains/merlin/assets/0x62e99191071Fc1C5947CF1e21Aa95708dcc51AdB/info.json b/blockchains/merlin/assets/0x62e99191071Fc1C5947CF1e21Aa95708dcc51AdB/info.json new file mode 100644 index 0000000000000..22641f375c32b --- /dev/null +++ b/blockchains/merlin/assets/0x62e99191071Fc1C5947CF1e21Aa95708dcc51AdB/info.json @@ -0,0 +1,21 @@ +{ + "name": "Owl", + "type": "MERLIN", + "symbol": "OWL", + "decimals": 18, + "website": "https://owldinal.xyz/", + "description": "The 1st native NFT gaming protocol on @MerlinLayer2", + "explorer": "https://scan.merlinchain.io/address/0x62e99191071fc1c5947cf1e21aa95708dcc51adb", + "status": "active", + "id": "0x62e99191071Fc1C5947CF1e21Aa95708dcc51AdB", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Owldinal" + }, + { + "name": "telegram", + "url": "https://t.me/owldinals" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x62e99191071Fc1C5947CF1e21Aa95708dcc51AdB/logo.png b/blockchains/merlin/assets/0x62e99191071Fc1C5947CF1e21Aa95708dcc51AdB/logo.png new file mode 100644 index 0000000000000..c8c843e06e112 Binary files /dev/null and b/blockchains/merlin/assets/0x62e99191071Fc1C5947CF1e21Aa95708dcc51AdB/logo.png differ diff --git a/blockchains/merlin/assets/0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1/info.json b/blockchains/merlin/assets/0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1/info.json new file mode 100644 index 0000000000000..af189ad7c60b3 --- /dev/null +++ b/blockchains/merlin/assets/0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1/info.json @@ -0,0 +1,21 @@ +{ + "name": "BitGenie", + "website": "https://www.bitgenie.io/home", + "description": "BitGenie is a one-stop shop for Ordinals, Runes, and other Bitcoin DeFi tools.", + "explorer": "https://scan.merlinchain.io/address/0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1", + "type": "MERLIN", + "symbol": "WISH", + "decimals": 18, + "status": "active", + "id": "0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BitGenie_io" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bitgenie" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1/logo.png b/blockchains/merlin/assets/0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1/logo.png new file mode 100644 index 0000000000000..f58a7dac576f2 Binary files /dev/null and b/blockchains/merlin/assets/0x761b016E08A434daceF0f43C1e73b988c1bc3Cc1/logo.png differ diff --git a/blockchains/merlin/assets/0x7a677e59dC2C8a42d6aF3a62748c5595034A008b/info.json b/blockchains/merlin/assets/0x7a677e59dC2C8a42d6aF3a62748c5595034A008b/info.json new file mode 100644 index 0000000000000..246b82d67b477 --- /dev/null +++ b/blockchains/merlin/assets/0x7a677e59dC2C8a42d6aF3a62748c5595034A008b/info.json @@ -0,0 +1,21 @@ +{ + "name": "Huhu Cat", + "type": "MERLIN", + "symbol": "HUHU", + "decimals": 18, + "website": "https://huhucat.com/", + "description": "IN THE VIBRANT WORLD OF MERLINCHAIN, AMIDST THE GROUNDBREAKING INNOVATIONS OF BTC'S L2 SOLUTIONS, A UNIQUE DIGITAL SPIRIT WAS BORN – THE HUHU CAT. THIS ENIGMATIC ENTITY EMERGED AT THE INTERSECTION OF ADVANCED BLOCKCHAIN TECHNOLOGY AND DECENTRALIZED DREAMS, EMBODYING THE TRUE ESSENCE OF BTC'S TRANSFORMATIVE POTENTIAL.", + "explorer": "https://scan.merlinchain.io/token/0x7a677e59dC2C8a42d6aF3a62748c5595034A008b", + "status": "active", + "id": "0x7a677e59dC2C8a42d6aF3a62748c5595034A008b", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/HuhuCommunity" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/huhu-cat?utm_source=geckoterminal&utm_medium=referral&utm_campaign=badge&asset_platform_api_symbol=merlin-chain" + } + ] +} diff --git a/blockchains/merlin/assets/0x7a677e59dC2C8a42d6aF3a62748c5595034A008b/logo.png b/blockchains/merlin/assets/0x7a677e59dC2C8a42d6aF3a62748c5595034A008b/logo.png new file mode 100644 index 0000000000000..c72ce9645b333 Binary files /dev/null and b/blockchains/merlin/assets/0x7a677e59dC2C8a42d6aF3a62748c5595034A008b/logo.png differ diff --git a/blockchains/merlin/assets/0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d/info.json b/blockchains/merlin/assets/0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d/info.json new file mode 100644 index 0000000000000..0daebb971dfb5 --- /dev/null +++ b/blockchains/merlin/assets/0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d/info.json @@ -0,0 +1,28 @@ +{ + "name": "Merlin's Seal USDT (M-USDT)", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://scan.merlinchain.io/address/0x967aec3276b63c5e2262da9641db9dbebb07dc0d", + "type": "MERLIN", + "symbol": "M-USDT", + "decimals": 6, + "status": "active", + "id": "0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "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/merlin/assets/0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d/logo.png b/blockchains/merlin/assets/0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d/logo.png new file mode 100644 index 0000000000000..358f752fb4923 Binary files /dev/null and b/blockchains/merlin/assets/0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d/logo.png differ diff --git a/blockchains/merlin/assets/0xB880fd278198bd590252621d4CD071b1842E9Bcd/info.json b/blockchains/merlin/assets/0xB880fd278198bd590252621d4CD071b1842E9Bcd/info.json new file mode 100644 index 0000000000000..a40d4a1dd5a07 --- /dev/null +++ b/blockchains/merlin/assets/0xB880fd278198bd590252621d4CD071b1842E9Bcd/info.json @@ -0,0 +1,21 @@ +{ + "name": "Merlin's Seal BTC", + "website": "https://merlinchain.io/", + "description": "Merlin's Seal BTC is the first MERLIN token backed 1:1 with Bitcoin.", + "explorer": "https://scan.merlinchain.io/address/0xb880fd278198bd590252621d4cd071b1842e9bcd", + "type": "MERLIN", + "symbol": "M-BTC", + "decimals": 18, + "status": "active", + "id": "0xB880fd278198bd590252621d4CD071b1842E9Bcd", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MerlinLayer2" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/merlin-s-seal-btc" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0xB880fd278198bd590252621d4CD071b1842E9Bcd/logo.png b/blockchains/merlin/assets/0xB880fd278198bd590252621d4CD071b1842E9Bcd/logo.png new file mode 100644 index 0000000000000..71f639d11f796 Binary files /dev/null and b/blockchains/merlin/assets/0xB880fd278198bd590252621d4CD071b1842E9Bcd/logo.png differ diff --git a/blockchains/merlin/assets/0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA/info.json b/blockchains/merlin/assets/0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA/info.json new file mode 100644 index 0000000000000..0c7ff7c6d1589 --- /dev/null +++ b/blockchains/merlin/assets/0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA/info.json @@ -0,0 +1,29 @@ +{ + "name": "Wrapped Bitcoin", + "website": "https://wbtc.network", + "description": "Wrapped Bitcoin (WBTC) is the first MERLIN token backed 1:1 with Bitcoin.", + "explorer": "https://scan.merlinchain.io/address/0xf6d226f9dc15d9bb51182815b320d3fbe324e1ba", + "type": "MERLIN", + "symbol": "WBTC", + "decimals": 18, + "status": "active", + "id": "0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA", + "tags": [ + "defi", + "wrapped" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://wbtc.network/assets/wrapped-tokens-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA/logo.png b/blockchains/merlin/assets/0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA/logo.png new file mode 100644 index 0000000000000..702d64a2e040a Binary files /dev/null and b/blockchains/merlin/assets/0xF6D226f9Dc15d9bB51182815b320D3fBE324e1bA/logo.png differ diff --git a/blockchains/merlin/assets/0xbd40c74cb5cf9f9252B3298230Cb916d80430bBa/info.json b/blockchains/merlin/assets/0xbd40c74cb5cf9f9252B3298230Cb916d80430bBa/info.json new file mode 100644 index 0000000000000..0a47593c41586 --- /dev/null +++ b/blockchains/merlin/assets/0xbd40c74cb5cf9f9252B3298230Cb916d80430bBa/info.json @@ -0,0 +1,21 @@ +{ + "name": "MerlinSwap", + "website": "https://merlinswap.org/home", + "description": "MerlinSwap is an innovative and highly capital efficient DEX built to support the Merlin ecosystem", + "explorer": "https://scan.merlinchain.io/address/0xbd40c74cb5cf9f9252b3298230cb916d80430bba", + "type": "MERLIN", + "symbol": "MP", + "decimals": 18, + "status": "active", + "id": "0xbd40c74cb5cf9f9252B3298230Cb916d80430bBa", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MerlinSwap" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/merlinswap" + } + ] +} diff --git a/blockchains/merlin/assets/0xbd40c74cb5cf9f9252B3298230Cb916d80430bBa/logo.png b/blockchains/merlin/assets/0xbd40c74cb5cf9f9252B3298230Cb916d80430bBa/logo.png new file mode 100644 index 0000000000000..75e8189238b86 Binary files /dev/null and b/blockchains/merlin/assets/0xbd40c74cb5cf9f9252B3298230Cb916d80430bBa/logo.png differ diff --git a/blockchains/merlin/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/merlin/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 0000000000000..43dd0049b072a --- /dev/null +++ b/blockchains/merlin/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lorenzo stBTC", + "type": "MANTLE", + "symbol": "stBTC", + "decimals": 18, + "website": "https://www.lorenzo-protocol.xyz/", + "description": "To be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "explorer": "https://scan.merlinchain.io/token/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "status": "active", + "id": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LorenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/lorenzoprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png b/blockchains/merlin/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png new file mode 100644 index 0000000000000..d0c4e5f85eb2b Binary files /dev/null and b/blockchains/merlin/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/merlin/info/info.json b/blockchains/merlin/info/info.json new file mode 100644 index 0000000000000..38735e7770832 --- /dev/null +++ b/blockchains/merlin/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Merlin Mainnet", + "website": "https://merlinchain.iov", + "description": "Merlin Chain is a Bitcoin Layer 2 that integrates the ZK-Rollup network, decentralized oracle network, Data Availability, and on-chain BTC fraud proof modules.", + "explorer": "https://scan.merlinchain.io", + "symbol": "BTC", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/JYqDYMu76e" + }, + { + "name": "twitter", + "url": "https://twitter.com/MerlinLayer2" + } + ] +} \ No newline at end of file diff --git a/blockchains/merlin/info/logo.png b/blockchains/merlin/info/logo.png new file mode 100644 index 0000000000000..38692ef6a6207 Binary files /dev/null and b/blockchains/merlin/info/logo.png differ diff --git a/blockchains/metis/info/info.json b/blockchains/metis/info/info.json index d1827512132a8..04b86e2f4405a 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 index dae6a33e15cf1..8f189ed59698e 100644 --- a/blockchains/moonbasealpha/info/info.json +++ b/blockchains/moonbasealpha/info/info.json @@ -3,7 +3,7 @@ "website": "https://moon.based.money", "description": "The first Moonbeam TestNet, named Moonbase Alpha, aims to provide developers with a place to start experimenting and building on Moonbeam in a shared environment.", "explorer": "https://moonbase-blockscout.testnet.moonbeam.network/", - "symbol": "DEV", + "symbol": "tDEV", "rpc_url": "https://rpc.api.moonbase.moonbeam.network", "type": "coin", "decimals": 18, diff --git a/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/info.json b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/info.json new file mode 100644 index 0000000000000..cfc51ffaabd5f --- /dev/null +++ b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/info.json @@ -0,0 +1,41 @@ +{ + "name": "BNB pegged BUSD", + "website": "https://paxos.com/busd", + "description": "BNB pegged BUSD is a token issued by Binance on Smart Chain; its price is pegged to BUSD (BUSD ERC20) at a ratio of 1:1.", + "explorer": "https://moonscan.io/token/0xa649325aa7c5093d12d6f98eb4378deae68ce23f", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "MOONBEAM", + "symbol": "BUSD", + "decimals": 18, + "status": "active", + "id": "0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/binance-chain/" + }, + { + "name": "twitter", + "url": "https://twitter.com/binance_dex" + }, + { + "name": "blog", + "url": "https://binance.org/en/blog/" + }, + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binance-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/logo.png b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/logo.png new file mode 100644 index 0000000000000..76d02e370b6d6 Binary files /dev/null and b/blockchains/moonbeam/assets/0xA649325Aa7C5093d12D6F98EB4378deAe68CE23F/logo.png differ diff --git a/blockchains/moonbeam/info/info.json b/blockchains/moonbeam/info/info.json index 9120b9f950f41..3f0697be8c5f5 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 0000000000000..29a7d072a2855 --- /dev/null +++ b/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://moonriver.moonscan.io/token/0xb44a9b6905af7c801311e8f4e76932ee959c663c", + "type": "MOONRIVER", + "symbol": "USDT", + "decimals": 18, + "status": "active", + "id": "0xB44a9B6905aF7c801311e8F4E76932ee959c663C", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Tether_to/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tether/" + } + ] +} \ No newline at end of file diff --git a/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png b/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png new file mode 100644 index 0000000000000..f4c1f1e7ecba0 Binary files /dev/null and b/blockchains/moonriver/assets/0xB44a9B6905aF7c801311e8F4E76932ee959c663C/logo.png differ diff --git a/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/info.json b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/info.json new file mode 100644 index 0000000000000..e0fc82fd009c6 --- /dev/null +++ b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/info.json @@ -0,0 +1,36 @@ +{ + "name": "USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://moonriver.moonscan.io/token/0xe3f5a90f9cb311505cd691a46596599aa1a0ad7d", + "type": "MOONRIVER", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/logo.png b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/logo.png new file mode 100644 index 0000000000000..c4def0472868c Binary files /dev/null and b/blockchains/moonriver/assets/0xE3F5a90F9cb311505cd691a46596599aA1A0AD7D/logo.png differ diff --git a/blockchains/nativecanto/validators/assets/cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u/logo.png b/blockchains/nativecanto/validators/assets/cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/nativecanto/validators/assets/cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u/logo.png differ diff --git a/blockchains/nativecanto/validators/assets/cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz/logo.png b/blockchains/nativecanto/validators/assets/cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/nativecanto/validators/assets/cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz/logo.png differ diff --git a/blockchains/nativecanto/validators/list.json b/blockchains/nativecanto/validators/list.json new file mode 100644 index 0000000000000..43f038c1a44b6 --- /dev/null +++ b/blockchains/nativecanto/validators/list.json @@ -0,0 +1,14 @@ +[ + { + "id": "cantovaloper1ctc7cuvzkwhdnfg87u0fp8746cg5d95zyjcr9u", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "cantovaloper1z2gk5exs2ysh24cwg57eg99wy03y95khjl2qyz", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + } +] \ No newline at end of file diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgw63w87l/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgw63w87l/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgw63w87l/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1hn8u6x03mklzdy69r9khsd9q4yft7gmrkz8qkj/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1hn8u6x03mklzdy69r9khsd9q4yft7gmrkz8qkj/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1hn8u6x03mklzdy69r9khsd9q4yft7gmrkz8qkj/logo.png differ diff --git a/blockchains/nativeevmos/validators/assets/evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w/logo.png b/blockchains/nativeevmos/validators/assets/evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/nativeevmos/validators/assets/evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w/logo.png differ diff --git a/blockchains/nativeevmos/validators/list.json b/blockchains/nativeevmos/validators/list.json index 2f4fa32cc7604..111e451c153b8 100644 --- a/blockchains/nativeevmos/validators/list.json +++ b/blockchains/nativeevmos/validators/list.json @@ -1,4 +1,16 @@ [ + { + "id": "evmosvaloper1k875gxzhegt59na74z5a8ejhen2thhvejk4r2e", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "evmosvaloper1f6m9d94lkenw9fy5wmytatt76l849kx6ugdz70", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, { "id": "evmosvaloper1q3aejvmwj9dxturgk00jv7hkwxld7ny7642tr8", "name": "heisenbug", @@ -23,6 +35,12 @@ "description": "The PoS Validator for SmartContract chains", "website": "http://disperze.network/" }, + { + "id": "evmosvaloper1shvcjzhcxau6qtlz9w82a646ecwp4hq7ayqt0w", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, { "id": "evmosvaloper1f35jtt5m68zlxkpxn75403vv82cchahqvfsrup", "name": "Cosmostation", @@ -44,7 +62,7 @@ { "id": "evmosvaloper1sq9ggymzx02vcp7kf6yyar83scfm4r22swu673", "name": "Stakin", - "description": "Your Trusted Crypto Rewards", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", "website": "https://stakin.com/" }, { @@ -64,5 +82,23 @@ "name": "Allnodes.com⚡️", "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", "website": "https://www.allnodes.com/evmos/staking" + }, + { + "id": "evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "evmosvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgw63w87l", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "evmosvaloper1hn8u6x03mklzdy69r9khsd9q4yft7gmrkz8qkj", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" } ] diff --git a/blockchains/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/info.json b/blockchains/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/info.json new file mode 100644 index 0000000000000..9d30b30ff699e --- /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 0000000000000..5402ed6bc17ad Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd/logo.png differ diff --git a/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/info.json b/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/info.json new file mode 100644 index 0000000000000..4074079536c4d --- /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 0000000000000..4dc87c4c30ad2 Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/logo.png differ diff --git a/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/info.json b/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/info.json new file mode 100644 index 0000000000000..28789d5cbff07 --- /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 0000000000000..7db7a4585f7d5 Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh/logo.png differ diff --git a/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/info.json b/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/info.json new file mode 100644 index 0000000000000..5c36e623c4a32 --- /dev/null +++ b/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/info.json @@ -0,0 +1,37 @@ +{ + "name": "USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://explorer.injective.network/asset/?tokenType=tokenFactory&denom=factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk", + "type": "INJECTIVE", + "symbol": "USDCET", + "decimals": 6, + "status": "active", + "id": "inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/logo.png b/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/logo.png new file mode 100644 index 0000000000000..c4def0472868c Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk/logo.png differ diff --git a/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/info.json b/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/info.json new file mode 100644 index 0000000000000..2402cacd31c5b --- /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 0000000000000..1d045ec77ef4d Binary files /dev/null and b/blockchains/nativeinjective/assets/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3/logo.png differ diff --git a/blockchains/nativeinjective/info/info.json b/blockchains/nativeinjective/info/info.json new file mode 100644 index 0000000000000..0e145d0604a64 --- /dev/null +++ b/blockchains/nativeinjective/info/info.json @@ -0,0 +1,24 @@ +{ + "name": "NativeInjective", + "website": "https://injective.com", + "description": "Injective is an open, interoperable layer-one blockchain for building powerful DeFi applications.", + "explorer": "https://explorer.injective.network", + "research": "https://research.binance.com/en/projects/injective", + "symbol": "INJ", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/InjectiveLabs" + }, + { + "name": "twitter", + "url": "https://twitter.com/Injective_" + } + ], + "tags": [ + "staking-native" + ] +} \ No newline at end of file diff --git a/blockchains/injective/info/logo.png b/blockchains/nativeinjective/info/logo.png similarity index 100% rename from blockchains/injective/info/logo.png rename to blockchains/nativeinjective/info/logo.png diff --git a/blockchains/nativeinjective/validators/assets/injvaloper125fkz3mq6qxxpkmphdl3ep92t0d3y9695mhclt/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper125fkz3mq6qxxpkmphdl3ep92t0d3y9695mhclt/logo.png new file mode 100644 index 0000000000000..60b018002cdc2 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper125fkz3mq6qxxpkmphdl3ep92t0d3y9695mhclt/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper134dct56cq5v7uerxcy2cn4m06mqf4dxrlgpp24/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper134dct56cq5v7uerxcy2cn4m06mqf4dxrlgpp24/logo.png new file mode 100644 index 0000000000000..1288b5884311a Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper134dct56cq5v7uerxcy2cn4m06mqf4dxrlgpp24/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgwg3jckk/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgwg3jckk/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper155yk4wfn0xqye80exlsr6hu4qdfsvsgwg3jckk/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1acgud5qpn3frwzjrayqcdsdr9vkl3p6hrz34ts/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1dyntafvjynns5zyltwgyktej0y5zt84y3npkt4/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1esud09zs5754g5nlkmrgxsfdj276xm64cgmd3w/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1esud09zs5754g5nlkmrgxsfdj276xm64cgmd3w/logo.png new file mode 100644 index 0000000000000..ab27231ce5952 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1esud09zs5754g5nlkmrgxsfdj276xm64cgmd3w/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1ffsdugrhfzdyxltjve8v68n6aazyc6p97uhfn0/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1ffsdugrhfzdyxltjve8v68n6aazyc6p97uhfn0/logo.png new file mode 100644 index 0000000000000..ee70539329ea5 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1ffsdugrhfzdyxltjve8v68n6aazyc6p97uhfn0/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1g4d6dmvnpg7w7yugy6kplndp7jpfmf3krtschp/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1g4d6dmvnpg7w7yugy6kplndp7jpfmf3krtschp/logo.png new file mode 100644 index 0000000000000..e9622798cec65 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1g4d6dmvnpg7w7yugy6kplndp7jpfmf3krtschp/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1h4t5dqenq86znza06thc64pzyxtme7zltyeg8k/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1h4t5dqenq86znza06thc64pzyxtme7zltyeg8k/logo.png new file mode 100644 index 0000000000000..a542ccaa22d50 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1h4t5dqenq86znza06thc64pzyxtme7zltyeg8k/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1hsxaln75wjs033t3spd8a0gawl4jvxawn6v849/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1hsxaln75wjs033t3spd8a0gawl4jvxawn6v849/logo.png new file mode 100644 index 0000000000000..b8e77f1c07be9 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1hsxaln75wjs033t3spd8a0gawl4jvxawn6v849/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1kpfxtqt5cmlew46dem32fqlk5g6k4wyueh4szu/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1kpfxtqt5cmlew46dem32fqlk5g6k4wyueh4szu/logo.png new file mode 100644 index 0000000000000..fd2f07798958f Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1kpfxtqt5cmlew46dem32fqlk5g6k4wyueh4szu/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1lsuqpgm8kgwpq96ewyew26xnfwyn3lh3ncrkrk/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1lsuqpgm8kgwpq96ewyew26xnfwyn3lh3ncrkrk/logo.png new file mode 100644 index 0000000000000..5d160d301f69f Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1lsuqpgm8kgwpq96ewyew26xnfwyn3lh3ncrkrk/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1mwerm24kce7dcl59t6n0caw7c8zxgkrjj9svwj/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1mwerm24kce7dcl59t6n0caw7c8zxgkrjj9svwj/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1mwerm24kce7dcl59t6n0caw7c8zxgkrjj9svwj/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1qkwpk4pf6txgazfs8lnjzj75pc47z9g26lww7r/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1qkwpk4pf6txgazfs8lnjzj75pc47z9g26lww7r/logo.png new file mode 100644 index 0000000000000..9dff7bbedfbee Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1qkwpk4pf6txgazfs8lnjzj75pc47z9g26lww7r/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1r3lgsyq49zvl36cnevjx3q6u2ep897rws9hauk/logo.png differ diff --git a/blockchains/nativeinjective/validators/assets/injvaloper1tly62qxj2t8wz2zw4d7p37jcysvgasqa0zjtlk/logo.png b/blockchains/nativeinjective/validators/assets/injvaloper1tly62qxj2t8wz2zw4d7p37jcysvgasqa0zjtlk/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/nativeinjective/validators/assets/injvaloper1tly62qxj2t8wz2zw4d7p37jcysvgasqa0zjtlk/logo.png differ diff --git a/blockchains/nativeinjective/validators/list.json b/blockchains/nativeinjective/validators/list.json new file mode 100644 index 0000000000000..e7918a3fcfd0a --- /dev/null +++ b/blockchains/nativeinjective/validators/list.json @@ -0,0 +1,98 @@ +[ + { + "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/" + }, + { + "id": "injvaloper1mwerm24kce7dcl59t6n0caw7c8zxgkrjj9svwj", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection & Eligible for airdrops | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + }, + { + "id": "injvaloper1qkwpk4pf6txgazfs8lnjzj75pc47z9g26lww7r", + "name": "Kahuna", + "description": "Kahuna is a tech-focused investment firm dedicated to Blockchain Infrastructure, DeFi, and Gaming startups. Follow us on https://x.com/kahunahq", + "website": "https://www.kahuna.network/" + } +] diff --git a/blockchains/near/info/info.json b/blockchains/near/info/info.json index c11741e51773b..c493ea528e046 100644 --- a/blockchains/near/info/info.json +++ b/blockchains/near/info/info.json @@ -8,6 +8,9 @@ "type": "coin", "decimals": 24, "status": "active", + "tags": [ + "staking-native" + ], "links": [ { "name": "github", diff --git a/blockchains/near/validators/assets/astro-stakers.poolv1.near/logo.png b/blockchains/near/validators/assets/astro-stakers.poolv1.near/logo.png new file mode 100644 index 0000000000000..571f2711a0835 Binary files /dev/null and b/blockchains/near/validators/assets/astro-stakers.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/autostake.poolv1.near/logo.png b/blockchains/near/validators/assets/autostake.poolv1.near/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/near/validators/assets/autostake.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/epic.poolv1.near/logo.png b/blockchains/near/validators/assets/epic.poolv1.near/logo.png new file mode 100644 index 0000000000000..6d612781cc3df Binary files /dev/null and b/blockchains/near/validators/assets/epic.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/everstake.poolv1.near/logo.png b/blockchains/near/validators/assets/everstake.poolv1.near/logo.png new file mode 100644 index 0000000000000..02edac54f305a Binary files /dev/null and b/blockchains/near/validators/assets/everstake.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/lavenderfive.poolv1.near/logo.png b/blockchains/near/validators/assets/lavenderfive.poolv1.near/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/near/validators/assets/lavenderfive.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/meria-staking.poolv1.near/logo.png b/blockchains/near/validators/assets/meria-staking.poolv1.near/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/near/validators/assets/meria-staking.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/p2p-org.poolv1.near/logo.png b/blockchains/near/validators/assets/p2p-org.poolv1.near/logo.png new file mode 100644 index 0000000000000..a0c10f645691b Binary files /dev/null and b/blockchains/near/validators/assets/p2p-org.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/staked.poolv1.near/logo.png b/blockchains/near/validators/assets/staked.poolv1.near/logo.png new file mode 100644 index 0000000000000..74be06fa8dfe2 Binary files /dev/null and b/blockchains/near/validators/assets/staked.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/stakeflow.poolv1.near/logo.png b/blockchains/near/validators/assets/stakeflow.poolv1.near/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/near/validators/assets/stakeflow.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/stakely_io.poolv1.near/logo.png b/blockchains/near/validators/assets/stakely_io.poolv1.near/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/near/validators/assets/stakely_io.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/stakin.poolv1.near/logo.png b/blockchains/near/validators/assets/stakin.poolv1.near/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/near/validators/assets/stakin.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/trust-nodes.poolv1.near/logo.png b/blockchains/near/validators/assets/trust-nodes.poolv1.near/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/near/validators/assets/trust-nodes.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/w3coins.poolv1.near/logo.png b/blockchains/near/validators/assets/w3coins.poolv1.near/logo.png new file mode 100644 index 0000000000000..e407be374c08f Binary files /dev/null and b/blockchains/near/validators/assets/w3coins.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/assets/zavodil.poolv1.near/logo.png b/blockchains/near/validators/assets/zavodil.poolv1.near/logo.png new file mode 100644 index 0000000000000..4cc089433a7ea Binary files /dev/null and b/blockchains/near/validators/assets/zavodil.poolv1.near/logo.png differ diff --git a/blockchains/near/validators/list.json b/blockchains/near/validators/list.json new file mode 100644 index 0000000000000..d4e9dab19c5b8 --- /dev/null +++ b/blockchains/near/validators/list.json @@ -0,0 +1,86 @@ +[ + { + "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/" + }, + { + "id": "stakely_io.poolv1.near", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + }, + { + "id": "meria-staking.poolv1.near", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + } +] diff --git a/blockchains/neblio/info/info.json b/blockchains/neblio/info/info.json new file mode 100644 index 0000000000000..2143f6b4e07fb --- /dev/null +++ b/blockchains/neblio/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Neblio", + "website": "https://nebl.io", + "description": "The Neblio Platform aims to provide fully open-source APIs, tools, and services for enterprises to deploy dApps.", + "explorer": "https://explorer.nebl.io", + "symbol": "NEBL", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neblio/" + }, + { + "name": "twitter", + "url": "https://twitter.com/NeblioTeam" + } + ] +} \ No newline at end of file diff --git a/blockchains/neblio/info/logo.png b/blockchains/neblio/info/logo.png new file mode 100644 index 0000000000000..13f01d403a2aa Binary files /dev/null and b/blockchains/neblio/info/logo.png differ diff --git a/blockchains/neon/info/info.json b/blockchains/neon/info/info.json new file mode 100644 index 0000000000000..88c9cb524d6c8 --- /dev/null +++ b/blockchains/neon/info/info.json @@ -0,0 +1,24 @@ +{ + "name": "Neon EVM", + "website": "https://neonevm.org", + "description": "Neon EVM is a smart contract on Solana. Solana is a fast-growing blockchain, which uses a proof-of-history consensus mechanism.", + "explorer": "https://neonscan.org", + "symbol": "NEON", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/neonlabsorg/neon-evm" + }, + { + "name": "twitter", + "url": "https://twitter.com/Neon_EVM" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/neon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/neon/info/logo.png b/blockchains/neon/info/logo.png new file mode 100644 index 0000000000000..8368ca2e5eccd Binary files /dev/null and b/blockchains/neon/info/logo.png differ diff --git a/blockchains/neutron/info/logo.png b/blockchains/neutron/info/logo.png index a7089aa514db8..b09d390df17f7 100644 Binary files a/blockchains/neutron/info/logo.png and b/blockchains/neutron/info/logo.png differ diff --git a/blockchains/neutrontestnet/info/info.json b/blockchains/neutrontestnet/info/info.json index 90db8baa046c6..7b4671a6b6d68 100644 --- a/blockchains/neutrontestnet/info/info.json +++ b/blockchains/neutrontestnet/info/info.json @@ -1,7 +1,7 @@ { "name": "Neutron Testnet", "type": "coin", - "symbol": "NTRN", + "symbol": "tNTRN", "decimals": 6, "website": "https://neutron.org/", "description": "The most secure CosmWasm platform in Cosmos, Neutron lets smart-contracts leverage bleeding-edge Interchain technology with minimal overhead.", diff --git a/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json b/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/info.json new file mode 100644 index 0000000000000..6fdd822c126ae --- /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 0000000000000..1a880b8aef6b5 Binary files /dev/null and b/blockchains/opbnb/assets/0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb/logo.png differ diff --git a/blockchains/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/info.json b/blockchains/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/info.json new file mode 100644 index 0000000000000..c2f004fe836d0 --- /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 0000000000000..a70aad962615f Binary files /dev/null and b/blockchains/opbnb/assets/0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3/logo.png differ diff --git a/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/info.json b/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/info.json new file mode 100644 index 0000000000000..908b4323e9615 --- /dev/null +++ b/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/info.json @@ -0,0 +1,11 @@ +{ + "name": "CUBISWAP", + "symbol": "CUBI", + "type": "OPBNB", + "decimals": 18, + "description": "CUBISwap is a Decentralized Autonomous Organization (DAO) that offers a full suite of tools to explore and engage with decentralized finance opportunities.", + "website": "https://www.cubiswap.finance/", + "explorer": "https://opbnbscan.com/token/0xb01d49c26416a352fac4fbb3d555d5f2543e3247", + "status": "active", + "id": "0xB01D49C26416a352fac4Fbb3D555d5F2543E3247" +} \ No newline at end of file diff --git a/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/logo.png b/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/logo.png new file mode 100644 index 0000000000000..3d004e499b387 Binary files /dev/null and b/blockchains/opbnb/assets/0xB01D49C26416a352fac4Fbb3D555d5F2543E3247/logo.png differ diff --git a/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/info.json b/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/info.json new file mode 100644 index 0000000000000..43e4c4da1fecd --- /dev/null +++ b/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/info.json @@ -0,0 +1,15 @@ +{ + "name": "Wrapped BNB", + "symbol": "WBNB", + "type": "OPBNB", + "decimals": 18, + "description": "As the native coin of Binance Chain, BNB has multiple use cases: fueling transactions on the Chain, paying for transaction fees on Binance Exchange, making in-store payments, and many more.", + "website": "https://binance.org", + "explorer": "https://opbnbscan.com/token/0xb97fe5f3e5bf1ddac8ea1d2fa77f0a45cdb1dcec", + "research": "https://research.binance.com/en/projects/bnb", + "status": "active", + "id": "0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/logo.png b/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/logo.png new file mode 100644 index 0000000000000..418a0d0271e67 Binary files /dev/null and b/blockchains/opbnb/assets/0xb97fe5f3e5bf1DDAC8Ea1D2Fa77f0a45CDb1DcEC/logo.png differ diff --git a/blockchains/opbnb/info/info.json b/blockchains/opbnb/info/info.json new file mode 100644 index 0000000000000..b760a47e862ba --- /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 0000000000000..840d4766aff82 Binary files /dev/null and b/blockchains/opbnb/info/logo.png differ diff --git a/blockchains/optimism/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json b/blockchains/optimism/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json new file mode 100644 index 0000000000000..8da6a638ea138 --- /dev/null +++ b/blockchains/optimism/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json @@ -0,0 +1,34 @@ +{ +"name": "USDA", +"website": "https://www.angle.money/", +"description": "USDA is an over-collateralized and decentralized USD stablecoin by the Angle Protocol.", +"explorer": "https://optimistic.etherscan.io/token/0x0000206329b97DB379d5E1Bf586BbDB969C63274", +"type": "OPTIMISM", +"symbol": "USDA", +"decimals": 18, +"status": "active", +"tags": ["defi", "stablecoin"], +"id": "0x0000206329b97DB379d5E1Bf586BbDB969C63274", +"links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-usd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } +] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png b/blockchains/optimism/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png new file mode 100644 index 0000000000000..759db2e96cc84 Binary files /dev/null and b/blockchains/optimism/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png differ diff --git a/blockchains/optimism/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json b/blockchains/optimism/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json new file mode 100644 index 0000000000000..56bf5675f16b6 --- /dev/null +++ b/blockchains/optimism/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json @@ -0,0 +1,35 @@ +{ + "name": "Staked USDA", + "website": "https://www.angle.money/", + "description": "stUSD is a USD savings solution built on top of USDA by the Angle Protocol", + "explorer": "https://optimistic.etherscan.io/token/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", + "type": "OPTIMISM", + "symbol": "stUSD", + "decimals": 18, + "status": "active", + "tags": ["defi", "stablecoin"], + "id": "0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-staked-agusd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] + } + \ No newline at end of file diff --git a/blockchains/optimism/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png b/blockchains/optimism/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png new file mode 100644 index 0000000000000..a0fd0bd217403 Binary files /dev/null and b/blockchains/optimism/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png differ diff --git a/blockchains/optimism/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json b/blockchains/optimism/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json new file mode 100644 index 0000000000000..76fdd8fcc30ca --- /dev/null +++ b/blockchains/optimism/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json @@ -0,0 +1,34 @@ +{ + "name": "Staked EURA", + "website": "https://www.angle.money/", + "description": "stEUR is a Euro savings solution built on top of EURA by the Angle Protocol.", + "explorer": "https://optimistic.etherscan.io/token/0x004626A008B1aCdC4c74ab51644093b155e59A23", + "type": "OPTIMISM", + "symbol": "stEUR", + "decimals": 18, + "status": "active", + "tags": ["defi", "stablecoin"], + "id": "0x004626A008B1aCdC4c74ab51644093b155e59A23", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/staked-ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] + } \ No newline at end of file diff --git a/blockchains/optimism/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png b/blockchains/optimism/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png new file mode 100644 index 0000000000000..dbf1b94234fc1 Binary files /dev/null and b/blockchains/optimism/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png differ diff --git a/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/info.json b/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/info.json new file mode 100644 index 0000000000000..359737100dd28 --- /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 0000000000000..b6f150d8a7d46 Binary files /dev/null and b/blockchains/optimism/assets/0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85/logo.png differ diff --git a/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json new file mode 100644 index 0000000000000..8205112f5e145 --- /dev/null +++ b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json @@ -0,0 +1,25 @@ +{ + "name": "CyberConnect", + "type": "OPTIMISM", + "symbol": "CYBER", + "decimals": 18, + "website": "https://cyberconnect.me/", + "description": "CyberConnect is a Web3 social network that enables developers to create social applications empowering users to own their digital identity, content, connections, and interactions.", + "explorer": "https://optimistic.etherscan.io/token/0x14778860e937f509e651192a90589de711fb88a9", + "status": "active", + "id": "0x14778860E937f509e651192a90589dE711Fb88a9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CyberConnectHQ" + }, + { + "name": "github", + "url": "https://github.com/cyberconnecthq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cyberconnect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png new file mode 100644 index 0000000000000..b26b7b808fb16 Binary files /dev/null and b/blockchains/optimism/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png differ diff --git a/blockchains/optimism/assets/0x1DB2466d9F5e10D7090E7152B68d62703a2245F0/info.json b/blockchains/optimism/assets/0x1DB2466d9F5e10D7090E7152B68d62703a2245F0/info.json new file mode 100644 index 0000000000000..e7e3e4d84e914 --- /dev/null +++ b/blockchains/optimism/assets/0x1DB2466d9F5e10D7090E7152B68d62703a2245F0/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sonne", + "website": "https://sonne.finance/", + "description": "Sonne Finance is the first native decentralized lending protocol for individuals, institutions and protocols to access financial services on Optimism. Users can deposit their assets, use them as collateral and borrow against them.", + "explorer": "https://optimistic.etherscan.io/token/0x1db2466d9f5e10d7090e7152b68d62703a2245f0", + "type": "OPTIMISM", + "symbol": "SONNE", + "decimals": 18, + "status": "active", + "id": "0x1DB2466d9F5e10D7090E7152B68d62703a2245F0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SonneFinance" + }, + { + "name": "telegram", + "url": "https://t.me/SonneFin" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x1DB2466d9F5e10D7090E7152B68d62703a2245F0/logo.png b/blockchains/optimism/assets/0x1DB2466d9F5e10D7090E7152B68d62703a2245F0/logo.png new file mode 100644 index 0000000000000..41b99fe6a3acc Binary files /dev/null and b/blockchains/optimism/assets/0x1DB2466d9F5e10D7090E7152B68d62703a2245F0/logo.png differ diff --git a/blockchains/optimism/assets/0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb/info.json b/blockchains/optimism/assets/0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb/info.json new file mode 100644 index 0000000000000..cd725477b1b2a --- /dev/null +++ b/blockchains/optimism/assets/0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped liquid staked Ether 2.0", + "website": "https://lido.fi/", + "description": "Lido is a liquid staking solution for Ethereum. Lido lets users stake their ETH - with no minimum deposits or maintaining of infrastructure - whilst participating in on-chain activities, e.g. lending, to compound returns. LDO is an ERC20 token granting governance rights in the Lido DAO.", + "explorer": "https://optimistic.etherscan.io/token/0x1f32b1c2345538c0c6f582fcb022739c4a194ebb", + "type": "OPTIMISM", + "symbol": "wstETH", + "decimals": 18, + "status": "active", + "id": "0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LidoFinance" + }, + { + "name": "telegram", + "url": "https://t.me/lidofinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb/logo.png b/blockchains/optimism/assets/0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb/logo.png new file mode 100644 index 0000000000000..89a553cdf6f4a Binary files /dev/null and b/blockchains/optimism/assets/0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb/logo.png differ diff --git a/blockchains/optimism/assets/0x1F514A61bcde34F94Bc39731235690ab9da737F7/info.json b/blockchains/optimism/assets/0x1F514A61bcde34F94Bc39731235690ab9da737F7/info.json new file mode 100644 index 0000000000000..614bb836ad829 --- /dev/null +++ b/blockchains/optimism/assets/0x1F514A61bcde34F94Bc39731235690ab9da737F7/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tarot", + "website": "https://www.tarot.to/", + "description": "Tarot is a multi-chain, decentralized lending protocol where users can participate as lenders or borrowers in isolated lending pools.", + "explorer": "https://optimistic.etherscan.io/token/0x1F514A61bcde34F94Bc39731235690ab9da737F7", + "type": "OPTIMISM", + "symbol": "TAROT", + "decimals": 18, + "status": "active", + "id": "0x1F514A61bcde34F94Bc39731235690ab9da737F7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/tarotfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tarot/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x1F514A61bcde34F94Bc39731235690ab9da737F7/logo.png b/blockchains/optimism/assets/0x1F514A61bcde34F94Bc39731235690ab9da737F7/logo.png new file mode 100644 index 0000000000000..37cfe739d8f9c Binary files /dev/null and b/blockchains/optimism/assets/0x1F514A61bcde34F94Bc39731235690ab9da737F7/logo.png differ diff --git a/blockchains/optimism/assets/0x217D47011b23BB961eB6D93cA9945B7501a5BB11/info.json b/blockchains/optimism/assets/0x217D47011b23BB961eB6D93cA9945B7501a5BB11/info.json new file mode 100644 index 0000000000000..9916ea78164d8 --- /dev/null +++ b/blockchains/optimism/assets/0x217D47011b23BB961eB6D93cA9945B7501a5BB11/info.json @@ -0,0 +1,21 @@ +{ + "name": "Thales DAO", + "website": "https://thalesmarket.io/", + "description": "Thales is an Ethereum protocol that allows the creation of peer-to-peer parimutuel markets that anyone can join. This building block is the foundation of novel on-chain initiatives, from a platform for AMM-based positional markets to immersive gamified experiences, and much more.", + "explorer": "https://optimistic.etherscan.io/token/0x217d47011b23bb961eb6d93ca9945b7501a5bb11", + "type": "OPTIMISM", + "symbol": "THALES", + "decimals": 18, + "status": "active", + "id": "0x217D47011b23BB961eB6D93cA9945B7501a5BB11", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/thalesmarket" + }, + { + "name": "telegram", + "url": "https://t.me/thalesprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x217D47011b23BB961eB6D93cA9945B7501a5BB11/logo.png b/blockchains/optimism/assets/0x217D47011b23BB961eB6D93cA9945B7501a5BB11/logo.png new file mode 100644 index 0000000000000..5df04ac0aa8c2 Binary files /dev/null and b/blockchains/optimism/assets/0x217D47011b23BB961eB6D93cA9945B7501a5BB11/logo.png differ diff --git a/blockchains/optimism/assets/0x2513486f18eeE1498D7b6281f668B955181Dd0D9/info.json b/blockchains/optimism/assets/0x2513486f18eeE1498D7b6281f668B955181Dd0D9/info.json new file mode 100644 index 0000000000000..7b4484df41118 --- /dev/null +++ b/blockchains/optimism/assets/0x2513486f18eeE1498D7b6281f668B955181Dd0D9/info.json @@ -0,0 +1,21 @@ +{ + "name": "OpenXSwap Gov", + "website": "https://app.openxswap.exchange/", + "description": "xOpenX is the Governance Token of the OpenX Project. Users who purchase an OpenxReserve NFT will be given the option of locking xOpenX to create a vexOpenX value for governance.", + "explorer": "https://optimistic.etherscan.io/token/0x2513486f18eee1498d7b6281f668b955181dd0d9", + "type": "OPTIMISM", + "symbol": "xOpenX", + "decimals": 18, + "status": "active", + "id": "0x2513486f18eeE1498D7b6281f668B955181Dd0D9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/OpenXSwap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/openxswap-gov-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x2513486f18eeE1498D7b6281f668B955181Dd0D9/logo.png b/blockchains/optimism/assets/0x2513486f18eeE1498D7b6281f668B955181Dd0D9/logo.png new file mode 100644 index 0000000000000..fd73d285d1587 Binary files /dev/null and b/blockchains/optimism/assets/0x2513486f18eeE1498D7b6281f668B955181Dd0D9/logo.png differ diff --git a/blockchains/optimism/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/optimism/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 0000000000000..eafd6974d2f19 --- /dev/null +++ b/blockchains/optimism/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nya", + "type": "OPTIMISM", + "symbol": "NYA", + "decimals": 18, + "website": "https://www.nya.vip", + "description": "Explore the cultural phenomenon of Nya - the playful cat sound that's become a symbol of joy and connection. Discover how this simple word unites fans worldwide.", + "explorer": "https://optimistic.etherscan.io/token/0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "status": "active", + "id": "0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/NyaOnEarth" + }, + { + "name": "telegram", + "url": "https://t.me/NyaOnEarth" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "docs", + "url": "https://wiki.nya.vip" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png b/blockchains/optimism/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png new file mode 100644 index 0000000000000..c34f31c6b2335 Binary files /dev/null and b/blockchains/optimism/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/optimism/assets/0x39FdE572a18448F8139b7788099F0a0740f51205/info.json b/blockchains/optimism/assets/0x39FdE572a18448F8139b7788099F0a0740f51205/info.json new file mode 100644 index 0000000000000..e57a9fede151e --- /dev/null +++ b/blockchains/optimism/assets/0x39FdE572a18448F8139b7788099F0a0740f51205/info.json @@ -0,0 +1,21 @@ +{ + "name": "Oath", + "type": "OPTIMISM", + "symbol": "OATH", + "decimals": 18, + "website": "https://www.bytemasons.com/", + "description": "Byte Masons empower communities with Web3 & DeFi tools to provide financial opportunities for all.", + "explorer": "https://optimistic.etherscan.io/token/0x39FdE572a18448F8139b7788099F0a0740f51205", + "status": "active", + "id": "0x39FdE572a18448F8139b7788099F0a0740f51205", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ByteMasons" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/oath/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x39FdE572a18448F8139b7788099F0a0740f51205/logo.png b/blockchains/optimism/assets/0x39FdE572a18448F8139b7788099F0a0740f51205/logo.png new file mode 100644 index 0000000000000..52c36ce36525c Binary files /dev/null and b/blockchains/optimism/assets/0x39FdE572a18448F8139b7788099F0a0740f51205/logo.png differ diff --git a/blockchains/optimism/assets/0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D/info.json b/blockchains/optimism/assets/0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D/info.json new file mode 100644 index 0000000000000..06a27b0815111 --- /dev/null +++ b/blockchains/optimism/assets/0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D/info.json @@ -0,0 +1,21 @@ +{ + "name": "LERNITAS", + "type": "OPTIMISM", + "symbol": "2192", + "decimals": 18, + "website": "https://www.kenglernitas.wtf/", + "description": "keng uv enchen spartir. derfindor of sinfetiks. 2192.", + "explorer": "https://optimistic.etherscan.io/token/0x3ed9acaac7bd974eb83a8ea6432a239e3c829d5d", + "status": "active", + "id": "0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/KengLernitas" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lernitas/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D/logo.png b/blockchains/optimism/assets/0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D/logo.png new file mode 100644 index 0000000000000..46bc03e1cf82f Binary files /dev/null and b/blockchains/optimism/assets/0x3Ed9AcAac7Bd974eB83a8eA6432a239e3C829D5D/logo.png differ diff --git a/blockchains/optimism/assets/0x46f21fDa29F1339e0aB543763FF683D399e393eC/info.json b/blockchains/optimism/assets/0x46f21fDa29F1339e0aB543763FF683D399e393eC/info.json new file mode 100644 index 0000000000000..c8e439102873d --- /dev/null +++ b/blockchains/optimism/assets/0x46f21fDa29F1339e0aB543763FF683D399e393eC/info.json @@ -0,0 +1,21 @@ +{ + "name": "Perpetually Bonded Velo", + "website": "https://app.openxswap.exchange/PerpetualBonds", + "description": "opxveVELO is an algorithmic synthetic currency pegged to the price of VELO that tokenizes the value of our veVELO position. It is the receipt-token issued for perpetually bonded VELO.", + "explorer": "https://optimistic.etherscan.io/token/0x46f21fda29f1339e0ab543763ff683d399e393ec", + "type": "OPTIMISM", + "symbol": "opxveVELO", + "decimals": 18, + "status": "active", + "id": "0x46f21fDa29F1339e0aB543763FF683D399e393eC", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/OpenXSwap" + }, + { + "name": "telegram", + "url": "https://t.me/OpenXSwap" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x46f21fDa29F1339e0aB543763FF683D399e393eC/logo.png b/blockchains/optimism/assets/0x46f21fDa29F1339e0aB543763FF683D399e393eC/logo.png new file mode 100644 index 0000000000000..6b7d4f51b597c Binary files /dev/null and b/blockchains/optimism/assets/0x46f21fDa29F1339e0aB543763FF683D399e393eC/logo.png differ diff --git a/blockchains/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/info.json b/blockchains/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/info.json new file mode 100644 index 0000000000000..125732897d359 --- /dev/null +++ b/blockchains/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/info.json @@ -0,0 +1,28 @@ +{ + "name": "Synapse", + "website": "https://synapseprotocol.com/", + "description": "Synapse is a cross-chain layer ∞ protocol powering interoperability between blockchains.", + "explorer": "https://optimistic.etherscan.io/token/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655", + "type": "OPTIMISM", + "symbol": "SYN", + "decimals": 18, + "status": "active", + "id": "0x5A5fFf6F753d7C11A56A52FE47a177a87e431655", + "tags": [ + "nft" + ], + "links": [ + { + "name": "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/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/logo.png b/blockchains/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/logo.png new file mode 100644 index 0000000000000..577673c43c6a4 Binary files /dev/null and b/blockchains/optimism/assets/0x5A5fFf6F753d7C11A56A52FE47a177a87e431655/logo.png differ diff --git a/blockchains/optimism/assets/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1/info.json b/blockchains/optimism/assets/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1/info.json new file mode 100644 index 0000000000000..197f740107819 --- /dev/null +++ b/blockchains/optimism/assets/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Molten", + "type": "OPTIMISM", + "symbol": "MOLTEN", + "decimals": 18, + "website": "https://www.unidex.exchange/", + "description": "Molten is the native gas token for the Molten Layer 2 scaling solution.", + "explorer": "https://optimistic.etherscan.io/token/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1", + "status": "active", + "id": "0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MoltenL2" + }, + { + "name": "telegram", + "url": "https://t.me/moltennetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1/logo.png b/blockchains/optimism/assets/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1/logo.png new file mode 100644 index 0000000000000..ee393a33feb22 Binary files /dev/null and b/blockchains/optimism/assets/0x66E535e8D2ebf13F49F3D49e5c50395a97C137b1/logo.png differ diff --git a/blockchains/optimism/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/optimism/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 0000000000000..fc5a0ad67c011 --- /dev/null +++ b/blockchains/optimism/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "LayerZero", + "website": "https://layerzero.network/", + "description": "LayerZero is a technology that enables applications to move data across blockchains, uniquely supporting censorship-resistant messages and permissionless development through immutable smart contracts", + "explorer": "https://optimistic.etherscan.io/token/0x6985884c4392d348587b19cb9eaaf157f13271cd", + "type": "OPTIMISM", + "symbol": "ZRO", + "decimals": 18, + "status": "active", + "id": "0x6985884C4392D348587B19cb9eAAf157F13271cd", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LayerZero_Labs" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/VcqxYkStIDsyN2Rh" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png b/blockchains/optimism/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png new file mode 100644 index 0000000000000..203a846cfdf6b Binary files /dev/null and b/blockchains/optimism/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/optimism/assets/0x6F0fecBC276de8fC69257065fE47C5a03d986394/info.json b/blockchains/optimism/assets/0x6F0fecBC276de8fC69257065fE47C5a03d986394/info.json new file mode 100644 index 0000000000000..ef357c74c08a8 --- /dev/null +++ b/blockchains/optimism/assets/0x6F0fecBC276de8fC69257065fE47C5a03d986394/info.json @@ -0,0 +1,21 @@ +{ + "name": "Popcorn", + "website": "https://www.popcorn.network/", + "description": "Popcorn is a regenerative yield optimizing protocol with soul. Decentralized technology drives the future towards a more inclusive and transparent financial system.", + "explorer": "https://optimistic.etherscan.io/token/0x6F0fecBC276de8fC69257065fE47C5a03d986394", + "type": "OPTIMISM", + "symbol": "POP", + "decimals": 18, + "status": "active", + "id": "0x6F0fecBC276de8fC69257065fE47C5a03d986394", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Popcorn_DAO" + }, + { + "name": "telegram", + "url": "https://t.me/popcorndaochat" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x6F0fecBC276de8fC69257065fE47C5a03d986394/logo.png b/blockchains/optimism/assets/0x6F0fecBC276de8fC69257065fE47C5a03d986394/logo.png new file mode 100644 index 0000000000000..d990417da7e58 Binary files /dev/null and b/blockchains/optimism/assets/0x6F0fecBC276de8fC69257065fE47C5a03d986394/logo.png differ diff --git a/blockchains/optimism/assets/0x73cb180bf0521828d8849bc8CF2B920918e23032/info.json b/blockchains/optimism/assets/0x73cb180bf0521828d8849bc8CF2B920918e23032/info.json new file mode 100644 index 0000000000000..0c6581fbc19e3 --- /dev/null +++ b/blockchains/optimism/assets/0x73cb180bf0521828d8849bc8CF2B920918e23032/info.json @@ -0,0 +1,21 @@ +{ + "name": "USD+", + "website": "https://lido.fi/", + "description": "USD+ is a yield-generating stablecoin yielding 8-12% pa, via daily rebase. It is fully backed by a portfolio of liquid, yield generating, low risk DeFi assets .", + "explorer": "https://optimistic.etherscan.io/token/0x73cb180bf0521828d8849bc8CF2B920918e23032", + "type": "OPTIMISM", + "symbol": "USD+", + "decimals": 6, + "status": "active", + "id": "0x73cb180bf0521828d8849bc8CF2B920918e23032", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/overnight_fi" + }, + { + "name": "telegram", + "url": "https://t.me/overnight_fi" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x73cb180bf0521828d8849bc8CF2B920918e23032/logo.png b/blockchains/optimism/assets/0x73cb180bf0521828d8849bc8CF2B920918e23032/logo.png new file mode 100644 index 0000000000000..ba8cca27a175c Binary files /dev/null and b/blockchains/optimism/assets/0x73cb180bf0521828d8849bc8CF2B920918e23032/logo.png differ diff --git a/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/info.json b/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/info.json index 7edfa12b88d80..cd4da59762e8c 100644 --- a/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/info.json +++ b/blockchains/optimism/assets/0x7F5c764cBc14f9669B88837ca1490cCa17c31607/info.json @@ -1,7 +1,7 @@ { - "name": "USD Coin", + "name": "USD Coin (Bridged from Ethereum)", "type": "OPTIMISM", - "symbol": "USDC", + "symbol": "USDC.e", "decimals": 6, "website": "https://www.centre.io/", "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", diff --git a/blockchains/optimism/assets/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A/info.json b/blockchains/optimism/assets/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A/info.json new file mode 100644 index 0000000000000..887bc7f3d7015 --- /dev/null +++ b/blockchains/optimism/assets/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Collab.Land", + "type": "OPTIMISM", + "symbol": "COLLAB", + "decimals": 18, + "website": "https://www.collab.land/", + "description": "Collab.Land is an automated community management tool that curates membership based on token ownership.", + "explorer": "https://optimistic.etherscan.io/token/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A", + "status": "active", + "id": "0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Collab_Land_" + }, + { + "name": "telegram", + "url": "https://t.me/collablandbot" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A/logo.png b/blockchains/optimism/assets/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A/logo.png new file mode 100644 index 0000000000000..0fe956307dd2c Binary files /dev/null and b/blockchains/optimism/assets/0x8B21e9b7dAF2c4325bf3D18c1BeB79A347fE902A/logo.png differ diff --git a/blockchains/optimism/assets/0x8aE125E8653821E851F12A49F7765db9a9ce7384/info.json b/blockchains/optimism/assets/0x8aE125E8653821E851F12A49F7765db9a9ce7384/info.json new file mode 100644 index 0000000000000..9da7e52556acd --- /dev/null +++ b/blockchains/optimism/assets/0x8aE125E8653821E851F12A49F7765db9a9ce7384/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dola USD Stablecoin", + "website": "https://www.inverse.finance/", + "description": "Dola is a debt and asset backed, capital-efficient, decentralized stablecoin from Inverse Finance", + "explorer": "https://optimistic.etherscan.io/token/0x8aE125E8653821E851F12A49F7765db9a9ce7384", + "type": "OPTIMISM", + "symbol": "DOLA", + "decimals": 18, + "status": "active", + "id": "0x8aE125E8653821E851F12A49F7765db9a9ce7384", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/InverseFinance" + }, + { + "name": "telegram", + "url": "https://t.me/InverseFinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x8aE125E8653821E851F12A49F7765db9a9ce7384/logo.png b/blockchains/optimism/assets/0x8aE125E8653821E851F12A49F7765db9a9ce7384/logo.png new file mode 100644 index 0000000000000..fa34a23f16a0b Binary files /dev/null and b/blockchains/optimism/assets/0x8aE125E8653821E851F12A49F7765db9a9ce7384/logo.png differ diff --git a/blockchains/optimism/assets/0x920Cf626a271321C151D027030D5d08aF699456b/info.json b/blockchains/optimism/assets/0x920Cf626a271321C151D027030D5d08aF699456b/info.json new file mode 100644 index 0000000000000..342ce0712f29a --- /dev/null +++ b/blockchains/optimism/assets/0x920Cf626a271321C151D027030D5d08aF699456b/info.json @@ -0,0 +1,21 @@ +{ + "name": "Kwenta", + "website": "https://kwenta.eth.limo/", + "description": "Kwenta is a decentralized derivatives trading platform built on the Ethereum network.", + "explorer": "https://optimistic.etherscan.io/token/0x920Cf626a271321C151D027030D5d08aF699456b", + "type": "OPTIMISM", + "symbol": "KWENTA", + "decimals": 18, + "status": "active", + "id": "0x920Cf626a271321C151D027030D5d08aF699456b", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/kwenta_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kwenta/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x920Cf626a271321C151D027030D5d08aF699456b/logo.png b/blockchains/optimism/assets/0x920Cf626a271321C151D027030D5d08aF699456b/logo.png new file mode 100644 index 0000000000000..29d48c73d8342 Binary files /dev/null and b/blockchains/optimism/assets/0x920Cf626a271321C151D027030D5d08aF699456b/logo.png differ diff --git a/blockchains/optimism/assets/0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED/info.json b/blockchains/optimism/assets/0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED/info.json new file mode 100644 index 0000000000000..a27e7ec08cd14 --- /dev/null +++ b/blockchains/optimism/assets/0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED/info.json @@ -0,0 +1,34 @@ +{ + "name": "EURA", + "website": "https://www.angle.money/", + "description": "EURA is an over-collateralized and decentralized Euro stablecoin by the Angle Protocol.", + "explorer": "https://optimistic.etherscan.io/token/0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED", + "type": "OPTIMISM", + "symbol": "EURA", + "decimals": 18, + "status": "active", + "tags": ["defi", "stablecoin"], + "id": "0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] + } \ No newline at end of file diff --git a/blockchains/optimism/assets/0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED/logo.png b/blockchains/optimism/assets/0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED/logo.png new file mode 100644 index 0000000000000..b80f4f7f9341b Binary files /dev/null and b/blockchains/optimism/assets/0x9485aca5bbBE1667AD97c7fE7C4531a624C8b1ED/logo.png differ diff --git a/blockchains/optimism/assets/0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db/info.json b/blockchains/optimism/assets/0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db/info.json new file mode 100644 index 0000000000000..32b3cd614e47f --- /dev/null +++ b/blockchains/optimism/assets/0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db/info.json @@ -0,0 +1,21 @@ +{ + "name": "VelodromeV2", + "website": "https://www.velodrome.finance/", + "description": "Velodrome Finance, at its core, is a solution for protocols on Optimism to properly incentivize liquidity for their own use cases. Building on top of the groundwork laid out by Solidly, our team has addressed that first iteration's core issues to realize its full potential.", + "explorer": "https://optimistic.etherscan.io/token/0x9560e827af36c94d2ac33a39bce1fe78631088db", + "type": "OPTIMISM", + "symbol": "VELO", + "decimals": 18, + "status": "active", + "id": "0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/VelodromeFi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/velodrome-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db/logo.png b/blockchains/optimism/assets/0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db/logo.png new file mode 100644 index 0000000000000..a2b9dc42255e6 Binary files /dev/null and b/blockchains/optimism/assets/0x9560e827aF36c94D2Ac33a39bCE1Fe78631088Db/logo.png differ diff --git a/blockchains/optimism/assets/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151/info.json b/blockchains/optimism/assets/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151/info.json new file mode 100644 index 0000000000000..3256200798345 --- /dev/null +++ b/blockchains/optimism/assets/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151/info.json @@ -0,0 +1,65 @@ +{ + "name": "dHEDGE DAO Token", + "website": "https://dhedge.org", + "description": "Decentralized asset management protocol connecting the world’s best investment managers with investors in a permissionless, trustless fashion.", + "explorer": "https://optimistic.etherscan.io/token/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151", + "type": "OPTIMISM", + "symbol": "DHT", + "decimals": 18, + "status": "active", + "id": "0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dHedgeOrg" + }, + { + "name": "github", + "url": "https://github.com/dhedge" + }, + { + "name": "telegram", + "url": "https://t.me/dhedge" + }, + { + "name": "telegram_news", + "url": "https://t.me/dhedge" + }, + { + "name": "blog", + "url": "https://dhedge.ghost.io/" + }, + { + "name": "docs", + "url": "https://docs.dhedge.org/" + }, + { + "name": "forum", + "url": "https://forum.dhedge.org/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/BAWTbRA" + }, + { + "name": "medium", + "url": "https://medium.com/dhedge-org" + }, + { + "name": "youtube", + "url": "https://youtube.com/watch?v=OODm7tJspqk" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dhedge-dao/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dhedge-dao" + } + ], + "tags": [ + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151/logo.png b/blockchains/optimism/assets/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151/logo.png new file mode 100644 index 0000000000000..d00b1adee2bf1 Binary files /dev/null and b/blockchains/optimism/assets/0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151/logo.png differ diff --git a/blockchains/optimism/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json b/blockchains/optimism/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json new file mode 100644 index 0000000000000..d236fc1fe76ca --- /dev/null +++ b/blockchains/optimism/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/info.json @@ -0,0 +1,40 @@ +{ + "name": "BOB", + "type": "OPTIMISM", + "symbol": "BOB", + "decimals": 18, + "website": "https://www.zkbob.com/", + "description": "BOB is a stable token optimized for the zkBob protocol.", + "explorer": "https://optimistic.etherscan.io/token/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B", + "status": "active", + "id": "0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zkBob_" + }, + { + "name": "telegram_news", + "url": "https://t.me/zkbob_news" + }, + { + "name": "telegram", + "url": "https://t.me/zkbobcommunity" + }, + { + "name": "docs", + "url": "https://docs.zkbob.com/" + }, + { + "name": "github", + "url": "https://github.com/zkbob" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/bob" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/logo.png b/blockchains/optimism/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/logo.png new file mode 100644 index 0000000000000..6dd3119873769 Binary files /dev/null and b/blockchains/optimism/assets/0xB0B195aEFA3650A6908f15CdaC7D92F8a5791B0B/logo.png differ diff --git a/blockchains/optimism/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/info.json b/blockchains/optimism/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/info.json new file mode 100644 index 0000000000000..e9ce9cc728e65 --- /dev/null +++ b/blockchains/optimism/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/info.json @@ -0,0 +1,42 @@ +{ + "name": "Dai", + "website": "http://makerdao.com", + "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", + "explorer": "https://optimistic.etherscan.io/token/0xda10009cbd5d07dd0cecc66161fc93d7c9000da1", + "research": "https://research.binance.com/en/projects/dai", + "type": "OPTIMISM", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "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/optimism/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/logo.png b/blockchains/optimism/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/logo.png new file mode 100644 index 0000000000000..6195582c5fa28 Binary files /dev/null and b/blockchains/optimism/assets/0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1/logo.png differ diff --git a/blockchains/optimism/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json b/blockchains/optimism/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/info.json new file mode 100644 index 0000000000000..4a17a288dce6a --- /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 0000000000000..69911caea54fb Binary files /dev/null and b/blockchains/optimism/assets/0xEB466342C4d449BC9f53A865D5Cb90586f405215/logo.png differ diff --git a/blockchains/optimism/assets/0xEc6adef5E1006bb305bB1975333e8fc4071295bf/info.json b/blockchains/optimism/assets/0xEc6adef5E1006bb305bB1975333e8fc4071295bf/info.json new file mode 100644 index 0000000000000..b82c5ff3f3193 --- /dev/null +++ b/blockchains/optimism/assets/0xEc6adef5E1006bb305bB1975333e8fc4071295bf/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cartesi Token", + "symbol": "CTSI", + "type": "OPTIMISM", + "description": "Cartesi Rollups is a modular execution layer that elevates simple smart contracts to decentralized Linux runtime.", + "decimals": 18, + "website": "https://cartesi.io", + "explorer": "https://optimistic.etherscan.io/token/0xEc6adef5E1006bb305bB1975333e8fc4071295bf", + "status": "active", + "id": "0xEc6adef5E1006bb305bB1975333e8fc4071295bf", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/cartesiproject" + }, + { + "name": "telegram", + "url": "https://t.me/cartesiproject" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xEc6adef5E1006bb305bB1975333e8fc4071295bf/logo.png b/blockchains/optimism/assets/0xEc6adef5E1006bb305bB1975333e8fc4071295bf/logo.png new file mode 100644 index 0000000000000..68d0328b0951a Binary files /dev/null and b/blockchains/optimism/assets/0xEc6adef5E1006bb305bB1975333e8fc4071295bf/logo.png differ diff --git a/blockchains/optimism/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json b/blockchains/optimism/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json new file mode 100644 index 0000000000000..b0bb1b83060e2 --- /dev/null +++ b/blockchains/optimism/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/info.json @@ -0,0 +1,11 @@ +{ + "name": "O3 Swap", + "type": "OPTIMISM", + "symbol": "O3", + "decimals": 18, + "website": "https://o3swap.com", + "description": "O3 Swap Token (O3) is a governance token issued by O3 Swap. It is an important mediator to promote the development of the O3 Swap network. All participants and developers are encouraged to participate in the maintenance of the overall ecological network by staking, voting, etc. we are committed to providing a one-stop aggregation & exchange platform for users and offering developers access to an open, distributed, friendly, and secure trading environment.", + "explorer": "https://optimistic.etherscan.io/token/0xEe9801669C6138E84bD50dEB500827b776777d28", + "status": "active", + "id": "0xEe9801669C6138E84bD50dEB500827b776777d28" +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png b/blockchains/optimism/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png new file mode 100644 index 0000000000000..8327b516fef6e Binary files /dev/null and b/blockchains/optimism/assets/0xEe9801669C6138E84bD50dEB500827b776777d28/logo.png differ diff --git a/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/info.json b/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/info.json new file mode 100644 index 0000000000000..bc6f22c13882b --- /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 0000000000000..d565ce6e440a9 Binary files /dev/null and b/blockchains/optimism/assets/0xF1a0DA3367BC7aa04F8D94BA57B862ff37CeD174/logo.png differ diff --git a/blockchains/optimism/assets/0xFA436399d0458Dbe8aB890c3441256E3E09022a8/info.json b/blockchains/optimism/assets/0xFA436399d0458Dbe8aB890c3441256E3E09022a8/info.json new file mode 100644 index 0000000000000..83c989ad333b4 --- /dev/null +++ b/blockchains/optimism/assets/0xFA436399d0458Dbe8aB890c3441256E3E09022a8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zip Token", + "website": "https://zipswap.fi/", + "description": "ZIP is the governance token for ZipSwap. ZipSwap is a gas efficient decentralized exchange deployed to the Optimistic Ethereum blockchain based on a modified UniswapV2 codebase.", + "explorer": "https://optimistic.etherscan.io/token/0xFA436399d0458Dbe8aB890c3441256E3E09022a8", + "type": "OPTIMISM", + "symbol": "ZIP", + "decimals": 18, + "status": "active", + "id": "0xFA436399d0458Dbe8aB890c3441256E3E09022a8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Zip_swap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zipswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xFA436399d0458Dbe8aB890c3441256E3E09022a8/logo.png b/blockchains/optimism/assets/0xFA436399d0458Dbe8aB890c3441256E3E09022a8/logo.png new file mode 100644 index 0000000000000..2f5519f0aac02 Binary files /dev/null and b/blockchains/optimism/assets/0xFA436399d0458Dbe8aB890c3441256E3E09022a8/logo.png differ diff --git a/blockchains/optimism/assets/0xa00E3A3511aAC35cA78530c85007AFCd31753819/info.json b/blockchains/optimism/assets/0xa00E3A3511aAC35cA78530c85007AFCd31753819/info.json new file mode 100644 index 0000000000000..3689f285f4357 --- /dev/null +++ b/blockchains/optimism/assets/0xa00E3A3511aAC35cA78530c85007AFCd31753819/info.json @@ -0,0 +1,15 @@ +{ + "name": "Kyber Network", + "website": "https://kyber.network", + "description": "Kyber Network’s on-chain liquidity protocol allows decentralized token swaps to be integrated into any application, enabling value exchange to be performed seamlessly between all parties in the ecosystem.", + "explorer": "https://optimistic.etherscan.io/token/0xa00E3A3511aAC35cA78530c85007AFCd31753819", + "type": "OPTIMISM", + "symbol": "KNC", + "decimals": 18, + "status": "active", + "id": "0xa00E3A3511aAC35cA78530c85007AFCd31753819", + "tags": [ + "defi", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xa00E3A3511aAC35cA78530c85007AFCd31753819/logo.png b/blockchains/optimism/assets/0xa00E3A3511aAC35cA78530c85007AFCd31753819/logo.png new file mode 100644 index 0000000000000..8f845a1c6bb79 Binary files /dev/null and b/blockchains/optimism/assets/0xa00E3A3511aAC35cA78530c85007AFCd31753819/logo.png differ diff --git a/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/info.json b/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/info.json new file mode 100644 index 0000000000000..ea1dac6b82b11 --- /dev/null +++ b/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/info.json @@ -0,0 +1,29 @@ +{ + "name": "Tellor", + "website": "https://tellor.io", + "description": "Tellor (a decentralized oracle) aims to address the Oracle problem on Ethereum.", + "explorer": "https://optimistic.etherscan.io/token/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888", + "type": "OPTIMISM", + "symbol": "TRB", + "decimals": 18, + "status": "active", + "id": "0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/WeAreTellor" + }, + { + "name": "telegram", + "url": "https://t.me/tellor" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tellor/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tellor/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/logo.png b/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/logo.png new file mode 100644 index 0000000000000..f1295da4329a3 Binary files /dev/null and b/blockchains/optimism/assets/0xaf8cA653Fa2772d58f4368B0a71980e9E3cEB888/logo.png differ diff --git a/blockchains/optimism/assets/0xc3864f98f2a61A7cAeb95b039D031b4E2f55e0e9/info.json b/blockchains/optimism/assets/0xc3864f98f2a61A7cAeb95b039D031b4E2f55e0e9/info.json new file mode 100644 index 0000000000000..160e462e4a37a --- /dev/null +++ b/blockchains/optimism/assets/0xc3864f98f2a61A7cAeb95b039D031b4E2f55e0e9/info.json @@ -0,0 +1,21 @@ +{ + "name": "OpenX Optimism", + "type": "OPTIMISM", + "symbol": "OpenX", + "decimals": 18, + "website": "https://app.openxswap.exchange/info", + "description": "OpenXSwap’s native token, OpenX, provides the foundation for the exchange. Liquidity Providers receive it in exchange for participating in Active Yield Generating Pools. These pools are intended to generate transaction fees then used to buy back and burn OpenX, offsetting its emissions.", + "explorer": "https://optimistic.etherscan.io/token/0xc3864f98f2a61a7caeb95b039d031b4e2f55e0e9", + "status": "active", + "id": "0xc3864f98f2a61A7cAeb95b039D031b4E2f55e0e9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/OpenXSwap" + }, + { + "name": "telegram", + "url": "https://t.me/OpenXSwap" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xc3864f98f2a61A7cAeb95b039D031b4E2f55e0e9/logo.png b/blockchains/optimism/assets/0xc3864f98f2a61A7cAeb95b039D031b4E2f55e0e9/logo.png new file mode 100644 index 0000000000000..2973d314f87b4 Binary files /dev/null and b/blockchains/optimism/assets/0xc3864f98f2a61A7cAeb95b039D031b4E2f55e0e9/logo.png differ diff --git a/blockchains/optimism/assets/0xcdB4bB51801A1F399d4402c61bC098a72c382E65/info.json b/blockchains/optimism/assets/0xcdB4bB51801A1F399d4402c61bC098a72c382E65/info.json new file mode 100644 index 0000000000000..972fa54e17545 --- /dev/null +++ b/blockchains/optimism/assets/0xcdB4bB51801A1F399d4402c61bC098a72c382E65/info.json @@ -0,0 +1,21 @@ +{ + "name": "OPX", + "website": "https://www.opx.finance/", + "description": "OPX (Decentralized Spot & Perpetual Exchange) - the next DEX generation in optimizing investment efficiency & Leverage Trading.", + "explorer": "https://optimistic.etherscan.io/token/0xcdb4bb51801a1f399d4402c61bc098a72c382e65", + "type": "OPTIMISM", + "symbol": "OPX", + "decimals": 18, + "status": "active", + "id": "0xcdB4bB51801A1F399d4402c61bC098a72c382E65", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/opxfinance" + }, + { + "name": "telegram", + "url": "https://t.me/opxfinance" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xcdB4bB51801A1F399d4402c61bC098a72c382E65/logo.png b/blockchains/optimism/assets/0xcdB4bB51801A1F399d4402c61bC098a72c382E65/logo.png new file mode 100644 index 0000000000000..43697be485a7b Binary files /dev/null and b/blockchains/optimism/assets/0xcdB4bB51801A1F399d4402c61bC098a72c382E65/logo.png differ diff --git a/blockchains/optimism/assets/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44/info.json b/blockchains/optimism/assets/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44/info.json new file mode 100644 index 0000000000000..dfa267d9231b6 --- /dev/null +++ b/blockchains/optimism/assets/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44/info.json @@ -0,0 +1,21 @@ +{ + "name": "Layer2DAO", + "type": "OPTIMISM", + "symbol": "L2DAO", + "decimals": 18, + "website": "https://www.layer2dao.org/", + "description": "Layer2DAO is expanding the Ethereum L2 ecosystem and investing in L2 ecosystem projects.", + "explorer": "https://optimistic.etherscan.io/token/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44", + "status": "active", + "id": "0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/TheLayer2DAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/layer2dao/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44/logo.png b/blockchains/optimism/assets/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44/logo.png new file mode 100644 index 0000000000000..14dff9165b3cf Binary files /dev/null and b/blockchains/optimism/assets/0xd52f94DF742a6F4B4C8b033369fE13A41782Bf44/logo.png differ diff --git a/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/info.json b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/info.json new file mode 100644 index 0000000000000..bc934f9a2d05d --- /dev/null +++ b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/info.json @@ -0,0 +1,25 @@ +{ + "name": "Worldcoin", + "website": "https://worldcoin.org/", + "description": "The Worldcoin system revolves around World ID, a privacy-preserving global identity network. World ID enables users to verify their humanness online (`Proof of Personhood`) while maintaining their privacy through zero-knowledge proofs.", + "explorer": "https://optimistic.etherscan.io/token/0xdc6ff44d5d932cbd77b52e5612ba0529dc6226f1", + "type": "OPTIMISM", + "symbol": "WLD", + "decimals": 18, + "status": "active", + "id": "0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/worldcoin" + }, + { + "name": "telegram", + "url": "https://t.me/worldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/worldcoin-org/" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/logo.png b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/logo.png new file mode 100644 index 0000000000000..cb7f6e3935a81 Binary files /dev/null and b/blockchains/optimism/assets/0xdC6fF44d5d932Cbd77B52E5612Ba0529DC6226F1/logo.png differ diff --git a/blockchains/optimism/assets/0xdFA46478F9e5EA86d57387849598dbFB2e964b02/info.json b/blockchains/optimism/assets/0xdFA46478F9e5EA86d57387849598dbFB2e964b02/info.json new file mode 100644 index 0000000000000..261dac6d4990c --- /dev/null +++ b/blockchains/optimism/assets/0xdFA46478F9e5EA86d57387849598dbFB2e964b02/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mai Stablecoin", + "website": "https://www.mai.finance/", + "description": "miMatic is an algorithmic stablecoin that is collateralized with Matic tokens", + "explorer": "https://optimistic.etherscan.io/token/0xdFA46478F9e5EA86d57387849598dbFB2e964b02", + "type": "OPTIMISM", + "symbol": "MAI", + "decimals": 18, + "status": "active", + "id": "0xdFA46478F9e5EA86d57387849598dbFB2e964b02", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/0xLaoZi" + }, + { + "name": "telegram", + "url": "https://t.me/QiDaoProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xdFA46478F9e5EA86d57387849598dbFB2e964b02/logo.png b/blockchains/optimism/assets/0xdFA46478F9e5EA86d57387849598dbFB2e964b02/logo.png new file mode 100644 index 0000000000000..52dc3ec3f6f15 Binary files /dev/null and b/blockchains/optimism/assets/0xdFA46478F9e5EA86d57387849598dbFB2e964b02/logo.png differ diff --git a/blockchains/optimism/assets/0xe4dE4B87345815C71aa843ea4841bCdc682637bb/info.json b/blockchains/optimism/assets/0xe4dE4B87345815C71aa843ea4841bCdc682637bb/info.json new file mode 100644 index 0000000000000..0e9f8cbd10c94 --- /dev/null +++ b/blockchains/optimism/assets/0xe4dE4B87345815C71aa843ea4841bCdc682637bb/info.json @@ -0,0 +1,21 @@ +{ + "name": "Build ", + "type": "OPTIMISM", + "symbol": "BUILD", + "decimals": 18, + "website": "https://app.radioshack.org/swap", + "description": "RadioShack is positioned to bridge the gap and 'cross the chasm' of mainstream usage for Cryptocurrency.", + "explorer": "https://optimistic.etherscan.io/token/0xe4dE4B87345815C71aa843ea4841bCdc682637bb", + "status": "active", + "id": "0xe4dE4B87345815C71aa843ea4841bCdc682637bb", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/radioshack" + }, + { + "name": "telegram", + "url": "https://t.me/radioshackswap" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xe4dE4B87345815C71aa843ea4841bCdc682637bb/logo.png b/blockchains/optimism/assets/0xe4dE4B87345815C71aa843ea4841bCdc682637bb/logo.png new file mode 100644 index 0000000000000..7cdf4a0fd8c48 Binary files /dev/null and b/blockchains/optimism/assets/0xe4dE4B87345815C71aa843ea4841bCdc682637bb/logo.png differ diff --git a/blockchains/optimism/assets/0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE/info.json b/blockchains/optimism/assets/0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE/info.json new file mode 100644 index 0000000000000..978bf481ee063 --- /dev/null +++ b/blockchains/optimism/assets/0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE/info.json @@ -0,0 +1,21 @@ +{ + "name": "Elk ", + "type": "OPTIMISM", + "symbol": "ELK", + "decimals": 18, + "website": "https://elk.finance/", + "description": "Elk Finance is building a peer-to-peer network for cross-chain value transfers and blockchain interoperability.", + "explorer": "https://optimistic.etherscan.io/token/0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE", + "status": "active", + "id": "0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/elk_finance" + }, + { + "name": "telegram", + "url": "https://t.me/elk_finance_chat" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE/logo.png b/blockchains/optimism/assets/0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE/logo.png new file mode 100644 index 0000000000000..7ec7570e274f7 Binary files /dev/null and b/blockchains/optimism/assets/0xeEeEEb57642040bE42185f49C52F7E9B38f8eeeE/logo.png differ diff --git a/blockchains/optimism/assets/0xf899e3909B4492859d44260E1de41A9E663e70F5/info.json b/blockchains/optimism/assets/0xf899e3909B4492859d44260E1de41A9E663e70F5/info.json new file mode 100644 index 0000000000000..d026ef766c0dd --- /dev/null +++ b/blockchains/optimism/assets/0xf899e3909B4492859d44260E1de41A9E663e70F5/info.json @@ -0,0 +1,21 @@ +{ + "name": "RadioShack", + "type": "OPTIMISM", + "symbol": "RADIO", + "decimals": 18, + "website": "https://www.radioshack.org/", + "description": "RadioShack is a 100 year old brand embedded into the global consciousness, now on a mission to be the first protocol to bridge the gap to mainstream usage of blockchain and cryptocurrencies.", + "explorer": "https://optimistic.etherscan.io/token/0xf899e3909B4492859d44260E1de41A9E663e70F5", + "status": "active", + "id": "0xf899e3909B4492859d44260E1de41A9E663e70F5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/radioshack" + }, + { + "name": "telegram", + "url": "https://t.me/radioshackfairlaunch" + } + ] +} \ No newline at end of file diff --git a/blockchains/optimism/assets/0xf899e3909B4492859d44260E1de41A9E663e70F5/logo.png b/blockchains/optimism/assets/0xf899e3909B4492859d44260E1de41A9E663e70F5/logo.png new file mode 100644 index 0000000000000..a429e36123a94 Binary files /dev/null and b/blockchains/optimism/assets/0xf899e3909B4492859d44260E1de41A9E663e70F5/logo.png differ diff --git a/blockchains/optimism/info/info.json b/blockchains/optimism/info/info.json index 8bb2e265b6f5b..64c91b39ca005 100644 --- a/blockchains/optimism/info/info.json +++ b/blockchains/optimism/info/info.json @@ -10,5 +10,8 @@ "decimals": 18, "status": "active", "rpc_url": "https://mainnet.optimism.io", - "links": [] + "links": [], + "tags": [ + "dapp" + ] } diff --git a/blockchains/optimismgoerli/info/info.json b/blockchains/optimismgoerli/info/info.json index 08fefa115e415..5f25772ca779a 100644 --- a/blockchains/optimismgoerli/info/info.json +++ b/blockchains/optimismgoerli/info/info.json @@ -5,7 +5,7 @@ "explorer": "https://blockscout.com/optimism/goerli/", "research": "https://goerli.net/#about", "symbol": "ETH", - "rpc_url": "https://goerli.optimism.io", + "rpc_url": "https://optimism-goerli.public.blastapi.io", "type": "coin", "decimals": 18, "status": "active", diff --git a/blockchains/osmosis/validators/assets/evmosvaloper1k875gxzhegt59na74z5a8ejhen2thhvejk4r2e/logo.png b/blockchains/osmosis/validators/assets/evmosvaloper1k875gxzhegt59na74z5a8ejhen2thhvejk4r2e/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/osmosis/validators/assets/evmosvaloper1k875gxzhegt59na74z5a8ejhen2thhvejk4r2e/logo.png differ diff --git a/blockchains/osmosis/validators/assets/evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9/logo.png b/blockchains/osmosis/validators/assets/evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/osmosis/validators/assets/evmosvaloper1mh2lvhy0clzlx645yet4340ra0p5hh2zjyptj9/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt/logo.png b/blockchains/osmosis/validators/assets/osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98gfer6u/logo.png b/blockchains/osmosis/validators/assets/osmovaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98gfer6u/logo.png new file mode 100644 index 0000000000000..9dff7bbedfbee Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98gfer6u/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1f7jtv9sd3g9jay64zrydfqh7l3eqdzgs289m8u/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1f7jtv9sd3g9jay64zrydfqh7l3eqdzgs289m8u/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1f7jtv9sd3g9jay64zrydfqh7l3eqdzgs289m8u/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n/logo.png index 1d1512c79d718..9b28ec000f281 100644 Binary files a/blockchains/osmosis/validators/assets/osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n/logo.png and b/blockchains/osmosis/validators/assets/osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1q5xvvmf03dx8amz66ku6z0x4u39f0aphqf42wc/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1q5xvvmf03dx8amz66ku6z0x4u39f0aphqf42wc/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1q5xvvmf03dx8amz66ku6z0x4u39f0aphqf42wc/logo.png differ diff --git a/blockchains/osmosis/validators/assets/osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme/logo.png b/blockchains/osmosis/validators/assets/osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme/logo.png new file mode 100644 index 0000000000000..194e9693e1011 Binary files /dev/null and b/blockchains/osmosis/validators/assets/osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme/logo.png differ diff --git a/blockchains/osmosis/validators/list.json b/blockchains/osmosis/validators/list.json index 5202586d7c096..7c0725c53082e 100644 --- a/blockchains/osmosis/validators/list.json +++ b/blockchains/osmosis/validators/list.json @@ -1,16 +1,28 @@ [ { - "id": "osmovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww24nrlnx", - "name": "Swiss Staking", - "description": "Experienced validator based in Switzerland. We offer a highly secure and stable staking infrastructure.", - "website": "https://swiss-staking.ch" + "id": "osmovaloper1f7jtv9sd3g9jay64zrydfqh7l3eqdzgs289m8u", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + }, + { + "id": "osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" }, { "id": "osmovaloper1cm83xqns9sqhv9a8vd6fggt6mvuu8mmzszknae", - "name": "Best APR ❤️ NodesByGirls", + "name": "NodesByGirls", "description": "We are a professional team with many years of experience in the crypto industry. Stake with us to get the best APR!", "website": "https://nodesbygirls.com/" }, + { + "id": "osmovaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww24nrlnx", + "name": "Swiss Staking", + "description": "Experienced validator based in Switzerland. We offer a highly secure and stable staking infrastructure.", + "website": "https://swiss-staking.ch" + }, { "id": "osmovaloper1x2e2pnenh0mmc99cnp7sukngnt8lc4saljavr3", "name": "Atomic Nodes", @@ -50,8 +62,8 @@ { "id": "osmovaloper1glmy88g0uf6vmw29pyxu3yq0pxpjqtzqr5e57n", "name": "Lavender.Five Nodes 🐝", - "description": "Lavender.Five Nodes is committed to providing world class validator services to make your life easy, including 100% slash protection. Come say hi! https://twitter.com/lavender_five", - "website": "https://www.lavenderfive.com/" + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" }, { "id": "osmovaloper1xgqr7pn80g6w398wzdmye3lu6wsgk32sw670ec", @@ -71,6 +83,12 @@ "description": "Transparent & professional staking validator with automated monitoring tools.", "website": "https://smartstake.io" }, + { + "id": "osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm", + "name": "AutoStake 🛡️ Slash Protected", + "description": "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", @@ -109,7 +127,7 @@ }, { "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" }, @@ -124,5 +142,23 @@ "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" + }, + { + "id": "osmovaloper1q5xvvmf03dx8amz66ku6z0x4u39f0aphqf42wc", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + }, + { + "id": "osmovaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98gfer6u", + "name": "Kahuna", + "description": "Kahuna is a tech-focused investment firm dedicated to Blockchain Infrastructure, DeFi, and Gaming startups. Follow us on https://x.com/kahunahq", + "website": "https://www.kahuna.network/" } ] diff --git a/blockchains/persistence/validators/assets/persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty/logo.png b/blockchains/persistence/validators/assets/persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper16jd664rd04j5lyckykjedt7vrha7k822vlkxty/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1cp4rjdsuyhzhgvrkswsay44tt8207s487jcu59/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1cp4rjdsuyhzhgvrkswsay44tt8207s487jcu59/logo.png new file mode 100644 index 0000000000000..bed0251921f16 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1cp4rjdsuyhzhgvrkswsay44tt8207s487jcu59/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1hmugz9ge5kmfvfaf3ljjzz4phl0rd3mks00v9z/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1hmugz9ge5kmfvfaf3ljjzz4phl0rd3mks00v9z/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1hmugz9ge5kmfvfaf3ljjzz4phl0rd3mks00v9z/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1r7gdc8ag4ktmrvhed2xp09n3klrjuznwdzsru2/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1xykmyvzk88qrlqh3wuw4jckewleyygupsumyj5/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1xykmyvzk88qrlqh3wuw4jckewleyygupsumyj5/logo.png new file mode 100644 index 0000000000000..4b09813738a9d Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1xykmyvzk88qrlqh3wuw4jckewleyygupsumyj5/logo.png differ diff --git a/blockchains/persistence/validators/assets/persistencevaloper1y9h20gplhj55agqe3ntgch666yjx4qy0yr3mhu/logo.png b/blockchains/persistence/validators/assets/persistencevaloper1y9h20gplhj55agqe3ntgch666yjx4qy0yr3mhu/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/persistence/validators/assets/persistencevaloper1y9h20gplhj55agqe3ntgch666yjx4qy0yr3mhu/logo.png differ diff --git a/blockchains/persistence/validators/list.json b/blockchains/persistence/validators/list.json new file mode 100644 index 0000000000000..fd357b32f6668 --- /dev/null +++ b/blockchains/persistence/validators/list.json @@ -0,0 +1,38 @@ +[ + { + "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/" + }, + { + "id": "persistencevaloper1hmugz9ge5kmfvfaf3ljjzz4phl0rd3mks00v9z", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + }, + { + "id": "persistencevaloper1cp4rjdsuyhzhgvrkswsay44tt8207s487jcu59", + "name": "Meria", + "description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.", + "website": "https://stake.meria.com/" + } +] \ No newline at end of file diff --git a/blockchains/pivx/info/info.json b/blockchains/pivx/info/info.json new file mode 100644 index 0000000000000..6271362e81a37 --- /dev/null +++ b/blockchains/pivx/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "PIVX", + "website": "https://pivx.org", + "description": "Protected Instant Verified Transaction (or eXchange) (PIVX), launched January 30th, 2016, is a decentralized, MIT licensed open-source, fair-launch blockchain/cryptocurrency project managed, developed, governed, and stewarded by a community driven decentralized autonomous organization (DAO). It has been designed, engineered, and tested using advanced cryptography protocols to provide, first and foremost, user Financial Data Protection.", + "explorer": "https://chainz.cryptoid.info/pivx/", + "symbol": "PIVX", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pivx/" + }, + { + "name": "twitter", + "url": "https://twitter.com/_pivx" + } + ] +} \ No newline at end of file diff --git a/blockchains/pivx/info/logo.png b/blockchains/pivx/info/logo.png new file mode 100644 index 0000000000000..03f851d6cb284 Binary files /dev/null and b/blockchains/pivx/info/logo.png differ diff --git a/blockchains/polkadot/validators/assets/13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61/logo.png b/blockchains/polkadot/validators/assets/13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/polkadot/validators/assets/13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61/logo.png differ diff --git a/blockchains/polkadot/validators/assets/14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb/logo.png b/blockchains/polkadot/validators/assets/14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/polkadot/validators/assets/14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb/logo.png differ diff --git a/blockchains/polkadot/validators/assets/16cDjCXSYGRDpEett39taTgMAN7LKnyaafa5MgfbUmpsERW8/logo.png b/blockchains/polkadot/validators/assets/16cDjCXSYGRDpEett39taTgMAN7LKnyaafa5MgfbUmpsERW8/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/polkadot/validators/assets/16cDjCXSYGRDpEett39taTgMAN7LKnyaafa5MgfbUmpsERW8/logo.png differ diff --git a/blockchains/polkadot/validators/list.json b/blockchains/polkadot/validators/list.json index b3513e877e8bb..32b1377544304 100644 --- a/blockchains/polkadot/validators/list.json +++ b/blockchains/polkadot/validators/list.json @@ -148,5 +148,23 @@ "name": "Allnodes.com ⚡️ 0% fee", "description": "Reliable non-custodial Validator run by the industry leader - Allnodes.", "website": "https://wwww.allnodes.com/dot/staking" + }, + { + "id": "13K6QTYBPMUFTbhZzqToKcfCiWbt4wDPHr3rUPyUessiPR61", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "14GrUvsPq8TXbwY1CE4piCbVcqBtm5wZKvecY7hTGfmh6mGb", + "name": "Stakeflow/2", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "16cDjCXSYGRDpEett39taTgMAN7LKnyaafa5MgfbUmpsERW8", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" } ] \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json b/blockchains/polygon/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json new file mode 100644 index 0000000000000..adffa2e0eb86b --- /dev/null +++ b/blockchains/polygon/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/info.json @@ -0,0 +1,34 @@ +{ + "name": "USDA", + "website": "https://www.angle.money/", + "description": "USDA is an over-collateralized and decentralized USD stablecoin by the Angle Protocol.", + "explorer": "https://polygonscan.com/token/0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "type": "POLYGON", + "symbol": "USDA", + "decimals": 18, + "status": "active", + "tags": ["defi", "stablecoin"], + "id": "0x0000206329b97DB379d5E1Bf586BbDB969C63274", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-usd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] + } \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png b/blockchains/polygon/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png new file mode 100644 index 0000000000000..759db2e96cc84 Binary files /dev/null and b/blockchains/polygon/assets/0x0000206329b97DB379d5E1Bf586BbDB969C63274/logo.png differ diff --git a/blockchains/polygon/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json b/blockchains/polygon/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json new file mode 100644 index 0000000000000..33fe9454158ea --- /dev/null +++ b/blockchains/polygon/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/info.json @@ -0,0 +1,35 @@ +{ + "name": "Staked USDA", + "website": "https://www.angle.money/", + "description": "stUSD is a USD savings solution built on top of USDA by the Angle Protocol", + "explorer": "https://polygonscan.com/token/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", + "type": "POLYGON", + "symbol": "stUSD", + "decimals": 18, + "status": "active", + "tags": ["defi", "stablecoin"], + "id": "0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/angle-staked-agusd" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] + } + \ No newline at end of file diff --git a/blockchains/polygon/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png b/blockchains/polygon/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png new file mode 100644 index 0000000000000..a0fd0bd217403 Binary files /dev/null and b/blockchains/polygon/assets/0x0022228a2cc5E7eF0274A7Baa600d44da5aB5776/logo.png differ diff --git a/blockchains/polygon/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json b/blockchains/polygon/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json new file mode 100644 index 0000000000000..c17805838d381 --- /dev/null +++ b/blockchains/polygon/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/info.json @@ -0,0 +1,34 @@ +{ + "name": "Staked EURA", + "website": "https://www.angle.money/", + "description": "stEUR is a Euro savings solution built on top of EURA by the Angle Protocol.", + "explorer": "https://polygonscan.com/token/0x004626A008B1aCdC4c74ab51644093b155e59A23", + "type": "POLYGON", + "symbol": "stEUR", + "decimals": 18, + "status": "active", + "tags": ["defi", "stablecoin"], + "id": "0x004626A008B1aCdC4c74ab51644093b155e59A23", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/staked-ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] + } \ No newline at end of file diff --git a/blockchains/polygon/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png b/blockchains/polygon/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png new file mode 100644 index 0000000000000..dbf1b94234fc1 Binary files /dev/null and b/blockchains/polygon/assets/0x004626A008B1aCdC4c74ab51644093b155e59A23/logo.png differ diff --git a/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/info.json b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/info.json new file mode 100644 index 0000000000000..f55c4ce5a44ff --- /dev/null +++ b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/info.json @@ -0,0 +1,25 @@ +{ + "name": "Golem", + "website": "https://golem.network", + "description": "Golem is a peer-to-peer decentralized marketplace for computing power. The project aims to be an alternative to centralized cloud service providers with its lower price point and open-source community of developers.", + "explorer": "https://polygonscan.com/token/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf", + "type": "POLYGON", + "symbol": "GLM", + "decimals": 18, + "status": "active", + "id": "0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/golemproject" + }, + { + "name": "github", + "url": "https://github.com/golemfactory/golem" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/golem-network-tokens/" + } + ] +} diff --git a/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/logo.png b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/logo.png new file mode 100644 index 0000000000000..644070628b3d6 Binary files /dev/null and b/blockchains/polygon/assets/0x0B220b82F3eA3B7F6d9A1D8ab58930C064A2b5Bf/logo.png differ diff --git a/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json b/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json new file mode 100644 index 0000000000000..7e0cda078b6f5 --- /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 0000000000000..5dd9cbe12c479 Binary files /dev/null and b/blockchains/polygon/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png differ diff --git a/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/info.json b/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/info.json new file mode 100644 index 0000000000000..89b880a33b92a --- /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 0000000000000..65f79b0b67d8e Binary files /dev/null and b/blockchains/polygon/assets/0x0CfC9a713A5C17Bc8a5fF0379467f6558bAcD0e0/logo.png differ diff --git a/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/info.json b/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/info.json index 7bfdede5e51a1..1b99626343ada 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 c3045348fbd1c..5bc8414cd2469 100644 Binary files a/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/logo.png and b/blockchains/polygon/assets/0x1631244689EC1fEcbDD22fb5916E920dFC9b8D30/logo.png differ diff --git a/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/info.json b/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/info.json new file mode 100644 index 0000000000000..fbd47787b2e85 --- /dev/null +++ b/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/info.json @@ -0,0 +1,25 @@ +{ + "name": "Nabox Token", + "website": "https://nabox.io/", + "description": "Nabox aims to allow users to utilize their digital assets across chains at the click of a button.", + "explorer": "https://polygonscan.com/token/0x16e72fd009e6c4b99ea8e2b08dd1af4ba3a23787", + "type": "POLYGON", + "symbol": "NABOX", + "decimals": 18, + "status": "active", + "id": "0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787", + "links": [ + { + "name": "telegram", + "url": "https://t.me/naboxcommunity" + }, + { + "name": "twitter", + "url": "https://twitter.com/naboxwallet" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/nabox/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/logo.png b/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/logo.png new file mode 100644 index 0000000000000..ee3475dce8027 Binary files /dev/null and b/blockchains/polygon/assets/0x16E72fd009E6c4B99EA8E2b08dD1Af4Ba3a23787/logo.png differ diff --git a/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/info.json b/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/info.json new file mode 100644 index 0000000000000..6e1999448a13f --- /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 0000000000000..6c8acd08e00bb Binary files /dev/null and b/blockchains/polygon/assets/0x1A49E59aB7101D6a66D6B2Fa6d09932079cC80EC/logo.png differ diff --git a/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/info.json b/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/info.json new file mode 100644 index 0000000000000..ff38544cc120a --- /dev/null +++ b/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped Ixs", + "website": "https://ixswap.io/", + "description": "IX Swap is the “Uniswap” for security tokens (STO) and tokenized stocks (TSO). IX Swap will be the FIRST platform to provide liquidity pools and automated market making functions for the security token (STO) & tokenized stock industry (TSO).", + "explorer": "https://polygonscan.com/token/0x1ba17c639bdaecd8dc4aac37df062d17ee43a1b8", + "type": "POLYGON", + "symbol": "WIXS", + "decimals": 18, + "status": "active", + "id": "0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8", + "links": [ + { + "name": "github", + "url": "https://github.com/IX-Swap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ix-swap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/logo.png b/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/logo.png new file mode 100644 index 0000000000000..cd5ca43626308 Binary files /dev/null and b/blockchains/polygon/assets/0x1BA17C639BdaeCd8DC4AAc37df062d17ee43a1b8/logo.png differ diff --git a/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/info.json b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/info.json new file mode 100644 index 0000000000000..c54e571a1a0b9 --- /dev/null +++ b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/info.json @@ -0,0 +1,28 @@ +{ + "name": "(PoS) Wrapped BTC", + "type": "POLYGON", + "symbol": "WBTC", + "decimals": 8, + "website": "https://wbtc.network/", + "description": "Wrapped Bitcoin (WBTC) is the first ERC20 token backed 1:1 with Bitcoin.", + "explorer": "https://polygonscan.com/token/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6", + "status": "active", + "id": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6", + "links": [ + { + "name": "whitepaper", + "url": "https://wbtc.network/assets/wrapped-tokens-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin/" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/logo.png b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/logo.png new file mode 100644 index 0000000000000..702d64a2e040a Binary files /dev/null and b/blockchains/polygon/assets/0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6/logo.png differ diff --git a/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json b/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json index 7b74faeb1e238..392763cae7f41 100644 --- a/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json +++ b/blockchains/polygon/assets/0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174/info.json @@ -1,10 +1,10 @@ { - "name": "USD Coin (PoS)", + "name": "Bridged USD Coin (PoS)", "website": "https://centre.io/usdc", "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", "explorer": "https://polygonscan.com/token/0x2791bca1f2de4661ed88a30c99a7a9449aa84174", "type": "POLYGON", - "symbol": "USDC", + "symbol": "USDC.e", "decimals": 6, "status": "active", "id": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", diff --git a/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/info.json b/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/info.json new file mode 100644 index 0000000000000..a0a841f059b91 --- /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 0000000000000..a995169b7f600 Binary files /dev/null and b/blockchains/polygon/assets/0x2F3E306d9F02ee8e8850F9040404918d0b345207/logo.png differ diff --git a/blockchains/polygon/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/polygon/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 0000000000000..6a78a77dcbf08 --- /dev/null +++ b/blockchains/polygon/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nya", + "type": "POLYGON", + "symbol": "NYA", + "decimals": 18, + "website": "https://www.nya.vip", + "description": "Explore the cultural phenomenon of Nya - the playful cat sound that's become a symbol of joy and connection. Discover how this simple word unites fans worldwide.", + "explorer": "https://polygonscan.com/token/0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "status": "active", + "id": "0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/NyaOnEarth" + }, + { + "name": "telegram", + "url": "https://t.me/NyaOnEarth" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "docs", + "url": "https://wiki.nya.vip" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png b/blockchains/polygon/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png new file mode 100644 index 0000000000000..c34f31c6b2335 Binary files /dev/null and b/blockchains/polygon/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/polygon/assets/0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b/info.json b/blockchains/polygon/assets/0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b/info.json new file mode 100644 index 0000000000000..447a6b34b4bc4 --- /dev/null +++ b/blockchains/polygon/assets/0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b/info.json @@ -0,0 +1,37 @@ +{ + "name": "Film.io", + "type": "POLYGON", + "symbol": "FAN", + "decimals": 8, + "website": "https://film.io", + "description": "Film.io is a decentralized filmmaking ecosystem, placing Hollywood decision-making into the hands of creators and fans. Film.io leverages blockchain technology and fan collaboration to provide filmmakers with an end-to-end solution for creating, funding and distributing their projects.", + "explorer": "https://polygonscan.com/token/0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b", + "status": "active", + "id": "0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Filmio_Official" + }, + { + "name": "telegram", + "url": "https://t.me/officialfilmio" + }, + { + "name": "facebook", + "url": "https://facebook.com/filmioofficial" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/filmio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/filmio/" + } + ], + "tags": [ + "dapp", + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b/logo.png b/blockchains/polygon/assets/0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b/logo.png new file mode 100644 index 0000000000000..592e27dccbb6a Binary files /dev/null and b/blockchains/polygon/assets/0x3B9E9100Db1389c518d47c635D80a90ad4C4f41b/logo.png differ diff --git a/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json new file mode 100644 index 0000000000000..7a26200401847 --- /dev/null +++ b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/info.json @@ -0,0 +1,33 @@ +{ + "name": "Native USD Coin (PoS)", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://polygonscan.com/token/0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "type": "POLYGON", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359", + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} diff --git a/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/logo.png b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/logo.png new file mode 100644 index 0000000000000..2460919c3efbe Binary files /dev/null and b/blockchains/polygon/assets/0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359/logo.png differ diff --git a/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/info.json b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/info.json new file mode 100644 index 0000000000000..db95827834091 --- /dev/null +++ b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/info.json @@ -0,0 +1,25 @@ +{ + "name": " SwissCheese", + "website": "https://swisscheese.finance/", + "description": "$SWCH is the native token of Swisscheese, the world's first decentralized exchange dedicated to trading tokenized stocks. Standing at the forefront of the DeFi revolution, Swisscheese merges the realms of traditional stock trading and blockchain. With $SWCH at its core, the platform offers users unparalleled opportunities to trade, stake, and experience finance like never before, marking a true evolution in the DeFi space. Now available on Trust Wallet, users can easily trade and manage their $SWCH holdings in one of the most trusted and user-friendly crypto wallets in the industry.", + "explorer": "https://polygonscan.com/token/0x3ce1327867077b551ae9a6987bf10c9fd08edce1", + "type": "POLYGON", + "symbol": "SWCH", + "decimals": 18, + "status": "active", + "id": "0x3ce1327867077B551ae9A6987bF10C9fd08edCE1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Swisscheese_fn" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/swisscheese/" + }, + { + "name": "telegram", + "url": "https://t.me/swisscheesegroup" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/logo.png b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/logo.png new file mode 100644 index 0000000000000..2cb920697bf85 Binary files /dev/null and b/blockchains/polygon/assets/0x3ce1327867077B551ae9A6987bF10C9fd08edCE1/logo.png differ diff --git a/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/info.json b/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/info.json new file mode 100644 index 0000000000000..6d63d4caa7731 --- /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 0000000000000..34190371893af Binary files /dev/null and b/blockchains/polygon/assets/0x431CD3C9AC9Fc73644BF68bF5691f4B83F9E104f/logo.png differ diff --git a/blockchains/polygon/assets/0x433E39CE74aEF8F409182541269e417AD9B56011/info.json b/blockchains/polygon/assets/0x433E39CE74aEF8F409182541269e417AD9B56011/info.json new file mode 100644 index 0000000000000..56aff568d010a --- /dev/null +++ b/blockchains/polygon/assets/0x433E39CE74aEF8F409182541269e417AD9B56011/info.json @@ -0,0 +1,32 @@ +{ + "name": "FlickerPro", + "type": "POLYGON", + "symbol": "FKRPRO", + "decimals": 18, + "website": "https://flickertechnology.com/", + "description": "FlickerPro where we introduce an innovative crypto token designed to revolutionize finance, real estate, e-commerce, and the traveling & hospitality sectors. offering high-speed transactions and low fees. This whitepaper outlines the key aspects of FlickerPro including its token overview, project details, future plans, staking program, tokenomics, roadmap, and the profiles of its creators.", + "explorer": "https://polygonscan.com/token/0x433e39ce74aef8f409182541269e417ad9b56011", + "status": "active", + "id": "0x433E39CE74aEF8F409182541269e417AD9B56011", + "links": [ + { + "name": "telegram", + "url": "https://t.me/FlickerProOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/flickerpro/" + }, + { + "name": "facebook", + "url": "https://facebook.com/flickertechnology" + }, + { + "name": "whitepaper", + "url": "https://flickertechnology.com/flicker/uploads/whitepaper.pdf" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/polygon/assets/0x433E39CE74aEF8F409182541269e417AD9B56011/logo.png b/blockchains/polygon/assets/0x433E39CE74aEF8F409182541269e417AD9B56011/logo.png new file mode 100644 index 0000000000000..1fe67a8d65f25 Binary files /dev/null and b/blockchains/polygon/assets/0x433E39CE74aEF8F409182541269e417AD9B56011/logo.png differ diff --git a/blockchains/polygon/assets/0x4597c8A59Ab28B36840B82B3A674994A279593D0/info.json b/blockchains/polygon/assets/0x4597c8A59Ab28B36840B82B3A674994A279593D0/info.json new file mode 100644 index 0000000000000..c21b04b64dc70 --- /dev/null +++ b/blockchains/polygon/assets/0x4597c8A59Ab28B36840B82B3A674994A279593D0/info.json @@ -0,0 +1,21 @@ +{ + "name": "CircuitsOfValue", + "symbol": "Coval", + "type": "POLYGON", + "decimals": 8, + "description": "Combine different blockchain tokens into a single token. Tradable DeFi Pools. Make any token a privacy token. Make Tradable Portfolios. ", + "website": "https://circuitsofvalue.com/", + "explorer": "https://polygonscan.com/token/0x4597c8a59ab28b36840b82b3a674994a279593d0", + "status": "active", + "id": "0x4597c8A59Ab28B36840B82B3A674994A279593D0", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/circuits-of-value/" + }, + { + "name": "twitter", + "url": "https://twitter.com/circuitsofvalue" + } + ] + } \ No newline at end of file diff --git a/blockchains/polygon/assets/0x4597c8A59Ab28B36840B82B3A674994A279593D0/logo.png b/blockchains/polygon/assets/0x4597c8A59Ab28B36840B82B3A674994A279593D0/logo.png new file mode 100644 index 0000000000000..fa6dfaeca5218 Binary files /dev/null and b/blockchains/polygon/assets/0x4597c8A59Ab28B36840B82B3A674994A279593D0/logo.png differ diff --git a/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/info.json b/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/info.json index 25ff48b39dfdc..addf371a5b21f 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 4275e858c1910..b0d3e287349fe 100644 Binary files a/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/logo.png and b/blockchains/polygon/assets/0x48cBc913dE09317dF2365e6827Df50dA083701D5/logo.png differ diff --git a/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/info.json b/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/info.json index 400aa609d0ae4..7b664f0d7e527 100644 --- a/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/info.json +++ b/blockchains/polygon/assets/0x564906ec1DF8399F00e4ad32c0eCAC0404a27A1c/info.json @@ -30,17 +30,13 @@ "name": "telegram", "url": "https://t.me/AmbireOfficial" }, - { - "name": "discord", - "url": "https://discord.com/invite/nMBGJsb" - }, { "name": "facebook", "url": "https://facebook.com/AmbireAdEx" }, { "name": "whitepaper", - "url": "https://ambire.notion.site/ambire/Ambire-Wallet-Whitepaper-d502e54caf584fe7a67f9b0a018cd10f" + "url": "https://ambire.com/whitepaper" }, { "name": "coinmarketcap", diff --git a/blockchains/polygon/assets/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA/info.json b/blockchains/polygon/assets/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA/info.json new file mode 100644 index 0000000000000..b006113729dda --- /dev/null +++ b/blockchains/polygon/assets/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA/info.json @@ -0,0 +1,24 @@ +{ + "name": "Farcana", + "type": "POLYGON", + "symbol": "FAR", + "decimals": 18, + "website": "https://www.farcana.com/", + "description": "The FAR token is the utility token for the Farcana ecosystem. Farcana is a multiplayer arena hero shooter powered by a Web3 economy", + "explorer": "https://polygonscan.com/token/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA", + "status": "active", + "id": "0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/FarcanaOfficial" + }, + { + "name": "youtube", + "url": "https://youtube.com/@Farcana" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA/logo.png b/blockchains/polygon/assets/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA/logo.png new file mode 100644 index 0000000000000..96bef9f206cd5 Binary files /dev/null and b/blockchains/polygon/assets/0x5F32AbeeBD3c2fac1E7459A27e1AE9f1C16ccccA/logo.png differ diff --git a/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/info.json b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/info.json new file mode 100644 index 0000000000000..f745431012b42 --- /dev/null +++ b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/info.json @@ -0,0 +1,37 @@ +{ + "name": "Graph Token (PoS)", + "website": "https://thegraph.com", + "description": "The Graph is an indexing protocol and global API for organizing blockchain data and making it easily accessible with GraphQL. Developers can use Graph Explorer to search, find, and publish all the public data they need to build decentralized applications. The Graph Network makes it possible to build serverless dApps that run entirely on public infrastructure.", + "explorer": "https://polygonscan.com/token/0x5fe2B58c013d7601147DcdD68C143A77499f5531", + "research": "https://github.com/graphprotocol/research", + "type": "POLYGON", + "symbol": "GRT", + "decimals": 18, + "status": "active", + "id": "0x5fe2B58c013d7601147DcdD68C143A77499f5531", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/graphprotocol/graph-node" + }, + { + "name": "twitter", + "url": "https://twitter.com/graphprotocol" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/thegraph" + }, + { + "name": "telegram", + "url": "https://t.me/graphprotocol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/the-graph/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/logo.png b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/logo.png new file mode 100644 index 0000000000000..9cbb487ce1294 Binary files /dev/null and b/blockchains/polygon/assets/0x5fe2B58c013d7601147DcdD68C143A77499f5531/logo.png differ diff --git a/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/info.json b/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/info.json new file mode 100644 index 0000000000000..e23e9c0e27db8 --- /dev/null +++ b/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/info.json @@ -0,0 +1,25 @@ +{ + "name": "Orbs", + "website": "https://orbs.com", + "description": "Orbs is a blockchain infrastructure-as-a-service built for large scale consumer applications to meet their business and technological requirements.", + "explorer": "https://polygonscan.com/token/0x614389eaae0a6821dc49062d56bda3d9d45fa2ff", + "type": "POLYGON", + "symbol": "ORBS", + "decimals": 18, + "status": "active", + "id": "0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/orbs_network" + }, + { + "name": "github", + "url": "https://github.com/orbs-network" + }, + { + "name": "telegram", + "url": "https://t.me/orbs_network" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/logo.png b/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/logo.png new file mode 100644 index 0000000000000..ba89f2dd8dd05 Binary files /dev/null and b/blockchains/polygon/assets/0x614389EaAE0A6821DC49062D56BDA3d9d45Fa2ff/logo.png differ diff --git a/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json b/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json new file mode 100644 index 0000000000000..2db15863906a6 --- /dev/null +++ b/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json @@ -0,0 +1,45 @@ +{ + "id": "0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC", + "name": "IDRX", + "type": "POLYGON", + "symbol": "IDRX", + "decimals": 0, + "website": "https://idrx.co/", + "description": "IDRX is a stable token pegged to the value of the Indonesian Rupiah (IDR). As a cryptocurrency, IDRX offers users the benefits of blockchain technology, including security, transparency, and decentralized control. At the same time, as a stable token, IDRX offers price stability by maintaining a fixed exchange rate with the IDR, which is the national currency of Indonesia.", + "explorer": "https://polygonscan.com/token/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC", + "status": "active", + "tags": [ + "stablecoin", + "staking" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/idrx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/idrx/" + }, + { + "name": "github", + "url": "https://github.com/idrx-co/" + }, + { + "name": "docs", + "url": "https://docs.idrx.co/" + }, + { + "name": "whitepaper", + "url": "https://idrx.co/docs/Whitepaper%20IDRX.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/officialidrx" + }, + { + "name": "medium", + "url": "https://idrx.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png b/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png new file mode 100644 index 0000000000000..444a5d98ac889 Binary files /dev/null and b/blockchains/polygon/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png differ diff --git a/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/info.json b/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/info.json new file mode 100644 index 0000000000000..f85565ff03acc --- /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 0000000000000..d565ce6e440a9 Binary files /dev/null and b/blockchains/polygon/assets/0x65A05DB8322701724c197AF82C9CaE41195B0aA8/logo.png differ diff --git a/blockchains/polygon/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/polygon/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 0000000000000..816bcee89c3de --- /dev/null +++ b/blockchains/polygon/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "LayerZero", + "website": "https://layerzero.network/", + "description": "LayerZero is a technology that enables applications to move data across blockchains, uniquely supporting censorship-resistant messages and permissionless development through immutable smart contracts", + "explorer": "https://polygonscan.com/token/0x6985884c4392d348587b19cb9eaaf157f13271cd", + "type": "POLYGON", + "symbol": "ZRO", + "decimals": 18, + "status": "active", + "id": "0x6985884C4392D348587B19cb9eAAf157F13271cd", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LayerZero_Labs" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/VcqxYkStIDsyN2Rh" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png b/blockchains/polygon/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png new file mode 100644 index 0000000000000..203a846cfdf6b Binary files /dev/null and b/blockchains/polygon/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/info.json b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/info.json new file mode 100644 index 0000000000000..8e01a46287e23 --- /dev/null +++ b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/info.json @@ -0,0 +1,32 @@ +{ + "name": "World$tateCoin", + "type": "POLYGON", + "symbol": "W$C", + "decimals": 18, + "website": "https://wsc.theworldstate.io/", + "description": "Official crypto currency of The World State", + "explorer": "https://polygonscan.com/token/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0", + "status": "active", + "id": "0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/theworldstateio" + }, + { + "name": "telegram", + "url": "https://t.me/TheWorldState" + }, + { + "name": "youtube", + "url": "https://youtube.com/@the_world_state" + }, + { + "name": "discord", + "url": "https://discord.com/invite/theworldstate" + } + ], + "tags": [ + "deflationary" + ] +} diff --git a/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/logo.png b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/logo.png new file mode 100644 index 0000000000000..b4844cb34fce0 Binary files /dev/null and b/blockchains/polygon/assets/0x77A6f2e9A9E44fd5D5C3F9bE9E52831fC1C3C0A0/logo.png differ diff --git a/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/info.json b/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/info.json index 995db8d7c44f1..50a998db027ae 100644 --- a/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/info.json +++ b/blockchains/polygon/assets/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a/info.json @@ -1,10 +1,10 @@ { - "name": "AVAX (Portal)", + "name": "Wrapped AVAX (Wormhole)", "type": "POLYGON", - "symbol": "AVAX", + "symbol": "WAVAX", "decimals": 18, "description": "Cross Chain Portal Bridged Token", - "website": "https://www.avax.network/", + "website": "https://portalbridge.com/", "explorer": "https://polygonscan.com/token/0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a", "status": "active", "id": "0x7Bb11E7f8b10E9e571E5d8Eace04735fDFB2358a", diff --git a/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/info.json b/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/info.json new file mode 100644 index 0000000000000..746e018bf7ce2 --- /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 0000000000000..e1b39b392b94b Binary files /dev/null and b/blockchains/polygon/assets/0x7FBc10850caE055B27039aF31bD258430e714c62/logo.png differ diff --git a/blockchains/polygon/assets/0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2/info.json b/blockchains/polygon/assets/0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2/info.json new file mode 100644 index 0000000000000..5e1cc8b0355f2 --- /dev/null +++ b/blockchains/polygon/assets/0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2/info.json @@ -0,0 +1,24 @@ +{ + "name": "THE BULLS ARMY", + "type": "POLYGON", + "symbol": "TBA", + "decimals": 18, + "website": "https://thebullsarmy.com/", + "description": "The Bulls Army is a meme coin with no utility or inherent value, built on Polygon's Matic Network. Its purpose is to showcase the speed and affordability of the Matic blockchain to crypto users. Despite its lack of functionality, it serves as a playful representation of the bullish sentiment in the crypto market.", + "explorer": "https://polygonscan.com/token/0x7e1ae068ac4e0ffd7a84750c2fb093a0eae9aea2", + "status": "active", + "id": "0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/thebullsarmy1" + }, + { + "name": "telegram", + "url": "https://t.me/thebullsarmy1" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2/logo.png b/blockchains/polygon/assets/0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2/logo.png new file mode 100644 index 0000000000000..2b38fde17d54e Binary files /dev/null and b/blockchains/polygon/assets/0x7e1AE068Ac4e0ffD7a84750c2FB093A0EAE9aEa2/logo.png differ diff --git a/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/info.json b/blockchains/polygon/assets/0x831753DD7087CaC61aB5644b308642cc1c33Dc13/info.json index ecbfd4e0514a5..3ed49f2cb9c45 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 0000000000000..5033d89b5cc78 --- /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 0000000000000..e1b3a7d15902c Binary files /dev/null and b/blockchains/polygon/assets/0x8DE5B80a0C1B02Fe4976851D030B36122dbb8624/logo.png differ diff --git a/blockchains/polygon/assets/0x8EB187a55B701F8990539bF219b7921d5D3BdadD/info.json b/blockchains/polygon/assets/0x8EB187a55B701F8990539bF219b7921d5D3BdadD/info.json new file mode 100644 index 0000000000000..f3f2cc1234215 --- /dev/null +++ b/blockchains/polygon/assets/0x8EB187a55B701F8990539bF219b7921d5D3BdadD/info.json @@ -0,0 +1,21 @@ +{ + "name": "Realm ID", + "type": "POLYGON", + "symbol": "RID", + "decimals": 18, + "website": "https://www.mocaverse.xyz/moca-id", + "description": "Moca ID is an on-chain DID (decentralized identity) that gives you the identity to travel among the meta layer of Animoca Brands' network of and beyond 400+ portfolio companies, alongside our ever-growing partner ecosystem.", + "explorer": "https://polygonscan.com/token/0x8eb187a55b701f8990539bf219b7921d5d3bdadd", + "status": "active", + "id": "0x8EB187a55B701F8990539bF219b7921d5D3BdadD", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MocaverseNFT" + }, + { + "name": "discord", + "url": "https://discord.com/invite/MocaverseNFT" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x8EB187a55B701F8990539bF219b7921d5D3BdadD/logo.png b/blockchains/polygon/assets/0x8EB187a55B701F8990539bF219b7921d5D3BdadD/logo.png new file mode 100644 index 0000000000000..f951984996419 Binary files /dev/null and b/blockchains/polygon/assets/0x8EB187a55B701F8990539bF219b7921d5D3BdadD/logo.png differ diff --git a/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json b/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json index 34f4e1f6962aa..1e0fb57b6eb30 100644 --- a/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json +++ b/blockchains/polygon/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json @@ -31,7 +31,6 @@ } ], "tags": [ - "staking-native", "wrapped" ] } diff --git a/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json new file mode 100644 index 0000000000000..75588293e20ce --- /dev/null +++ b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/info.json @@ -0,0 +1,41 @@ +{ + "name": "BNB pegged BUSD", + "website": "https://paxos.com/busd", + "description": "BNB pegged BUSD is a token issued by Binance on Smart Chain; its price is pegged to BUSD (BUSD ERC20) at a ratio of 1:1.", + "explorer": "https://polygonscan.com/token/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39", + "research": "https://research.binance.com/en/projects/binance-usd", + "type": "POLYGON", + "symbol": "BUSD", + "decimals": 18, + "status": "active", + "id": "0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39", + "tags": [ + "binance-peg" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/binance-chain/" + }, + { + "name": "twitter", + "url": "https://twitter.com/binance_dex" + }, + { + "name": "blog", + "url": "https://binance.org/en/blog/" + }, + { + "name": "telegram", + "url": "https://t.me/BinanceDEXchange" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binance-usd/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binance-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png new file mode 100644 index 0000000000000..76d02e370b6d6 Binary files /dev/null and b/blockchains/polygon/assets/0x9C9e5fD8bbc25984B178FdCE6117Defa39d2db39/logo.png differ diff --git a/blockchains/polygon/assets/0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8/info.json b/blockchains/polygon/assets/0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8/info.json new file mode 100644 index 0000000000000..a1527de77c0b4 --- /dev/null +++ b/blockchains/polygon/assets/0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8/info.json @@ -0,0 +1,36 @@ +{ + "name": "Opex", + "type": "POLYGON", + "symbol": "OPX", + "decimals": 6, + "website": "https://opxtoken.com", + "description": "Opex OPX is a stablecoin, a digital asset pegged to the Kyrgyz som (KGS), and is designed to facilitate payment transactions, as well as to protect against the volatility common to many other cryptocurrencies. ", + "explorer": "https://polygonscan.com/token/0xa3fb72cbf2e07dc1b34aea569ed40755fd978bd8", + "status": "active", + "id": "0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Opxtoken" + }, + { + "name": "telegram", + "url": "https://t.me/opextokencom" + }, + { + "name": "github", + "url": "https://github.com/OPXToken/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/opex/" + }, + { + "name": "medium", + "url": "https://medium.com/@opxtoken" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/polygon/assets/0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8/logo.png b/blockchains/polygon/assets/0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8/logo.png new file mode 100644 index 0000000000000..1797500b83217 Binary files /dev/null and b/blockchains/polygon/assets/0xA3fB72CBF2e07dC1b34AEA569Ed40755fd978BD8/logo.png differ diff --git a/blockchains/polygon/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/info.json b/blockchains/polygon/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/info.json new file mode 100644 index 0000000000000..3d1dada50ca08 --- /dev/null +++ b/blockchains/polygon/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/info.json @@ -0,0 +1,75 @@ +{ + "name": "Vita Inu", + "type": "POLYGON", + "symbol": "VINU", + "decimals": 18, + "website": "https://vitainu.org", + "description": "Vita Inu is the world’s first fast and feeless dog coin with high TPS and native smart contracts. VINU is the powerful multi-chain currency and governance token of the Vinuverse. The VINU community believes cryptocurrencies should be moved around freely, securely, and efficiently.", + "explorer": "https://polygonscan.com/token/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9", + "status": "active", + "id": "0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/vitainucoin" + }, + { + "name": "github", + "url": "https://github.com/vita-inu" + }, + { + "name": "telegram", + "url": "https://t.me/vitainu" + }, + { + "name": "telegram_news", + "url": "https://t.me/vinu_news" + }, + { + "name": "medium", + "url": "https://medium.com/vitainu" + }, + { + "name": "discord", + "url": "https://discord.com/invite/vinu" + }, + { + "name": "whitepaper", + "url": "https://vitainu.org/whitepaper" + }, + { + "name": "facebook", + "url": "https://facebook.com/vitainucoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/vitainucoin" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/vitainu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vita-inu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vita-inu" + }, + { + "name": "source_code", + "url": "https://polygonscan.com/address/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9#code" + } + ], + "tags": [ + "memes", + "defi", + "deflationary", + "gamefi", + "staking", + "nft", + "governance", + "wrapped" + ] +} diff --git a/blockchains/polygon/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/logo.png b/blockchains/polygon/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/logo.png new file mode 100644 index 0000000000000..281119d19c3d9 Binary files /dev/null and b/blockchains/polygon/assets/0xAFCdd4f666c84Fed1d8BD825aA762e3714F652c9/logo.png differ diff --git a/blockchains/polygon/assets/0xB5C064F955D8e7F38fE0460C556a72987494eE17/info.json b/blockchains/polygon/assets/0xB5C064F955D8e7F38fE0460C556a72987494eE17/info.json new file mode 100644 index 0000000000000..c84f320345a99 --- /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/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/info.json b/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/info.json new file mode 100644 index 0000000000000..f529d862428ac --- /dev/null +++ b/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/info.json @@ -0,0 +1,36 @@ +{ + "name": "MANTRA", + "website": "http://mantradao.com", + "description": "MANTRA DAO leverages the wisdom of the crowd to create a community-governed, transparent, and decentralized ecosystem for Web 3.0", + "explorer": "https://polygonscan.com/token/0xc3ec80343d2bae2f8e680fdadde7c17e71e114ea", + "type": "POLYGON", + "symbol": "OM", + "decimals": 18, + "status": "active", + "id": "0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea", + "links": [ + { + "name": "github", + "url": "https://github.com/Mantradao" + }, + { + "name": "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/" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/logo.png b/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/logo.png new file mode 100644 index 0000000000000..2c15abc9469bc Binary files /dev/null and b/blockchains/polygon/assets/0xC3Ec80343D2bae2F8E680FDADDe7C17E71E114ea/logo.png differ diff --git a/blockchains/polygon/assets/0xDD75542611D57C4b6e68168B14C3591C539022eD/info.json b/blockchains/polygon/assets/0xDD75542611D57C4b6e68168B14C3591C539022eD/info.json new file mode 100644 index 0000000000000..1186f857801e8 --- /dev/null +++ b/blockchains/polygon/assets/0xDD75542611D57C4b6e68168B14C3591C539022eD/info.json @@ -0,0 +1,33 @@ +{ + "name": "Unizen", + "website": "https://unizen.io", + "description": "Seamless omni-chain enabled swapping with industry leading rates and access to millions of digital assets, from the moment of their inception.", + "explorer": "https://polygonscan.com/token/0xdd75542611d57c4b6e68168b14c3591c539022ed", + "research": "https://docs.unizen.io", + "symbol": "pZCX", + "type": "POLYGON", + "decimals": 18, + "status": "active", + "tags": [ + "staking-native" + ], + "id": "0xDD75542611D57C4b6e68168B14C3591C539022eD", + "links": [ + { + "name": "github", + "url": "https://github.com/unizen-io/" + }, + { + "name": "twitter", + "url": "https://twitter.com/unizen_io" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/unizen/" + }, + { + "name": "whitepaper", + "url": "https://docs.unizen.io" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xDD75542611D57C4b6e68168B14C3591C539022eD/logo.png b/blockchains/polygon/assets/0xDD75542611D57C4b6e68168B14C3591C539022eD/logo.png new file mode 100644 index 0000000000000..4077cfed07720 Binary files /dev/null and b/blockchains/polygon/assets/0xDD75542611D57C4b6e68168B14C3591C539022eD/logo.png differ diff --git a/blockchains/polygon/assets/0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4/info.json b/blockchains/polygon/assets/0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4/info.json new file mode 100644 index 0000000000000..d5a2f5699fdaa --- /dev/null +++ b/blockchains/polygon/assets/0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4/info.json @@ -0,0 +1,34 @@ +{ + "name": "EURA", + "website": "https://www.angle.money/", + "description": "EURA is an over-collateralized and decentralized Euro stablecoin by the Angle Protocol.", + "explorer": "https://polygonscan.com/token/0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4", + "type": "POLYGON", + "symbol": "EURA", + "decimals": 18, + "status": "active", + "tags": ["defi", "stablecoin"], + "id": "0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4", + "links": [ + { + "name": "github", + "url": "https://github.com/AngleProtocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/AngleProtocol" + }, + { + "name": "docs", + "url": "https://docs.angle.money" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/ageur" + }, + { + "name": "discord", + "url": "https://discord.com/invite/ZheVAnFt6h" + } + ] + } \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4/logo.png b/blockchains/polygon/assets/0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4/logo.png new file mode 100644 index 0000000000000..b80f4f7f9341b Binary files /dev/null and b/blockchains/polygon/assets/0xE0B52e49357Fd4DAf2c15e02058DCE6BC0057db4/logo.png differ diff --git a/blockchains/polygon/assets/0xE1b3eb06806601828976e491914e3De18B5d6b28/info.json b/blockchains/polygon/assets/0xE1b3eb06806601828976e491914e3De18B5d6b28/info.json new file mode 100644 index 0000000000000..47a13645c9606 --- /dev/null +++ b/blockchains/polygon/assets/0xE1b3eb06806601828976e491914e3De18B5d6b28/info.json @@ -0,0 +1,28 @@ +{ + "name": "zkRace", + "website": "https://zkrace.com/", + "description": "zkRace is a complete NFT horse racing ecosystem where you can participate in horse races, breed NFT horses with unique characteristics, build your own NFT hippodrome", + "explorer": "https://polygonscan.com/token/0xE1b3eb06806601828976e491914e3De18B5d6b28", + "type": "POLYGON", + "symbol": "ZERC", + "decimals": 18, + "status": "active", + "id": "0xE1b3eb06806601828976e491914e3De18B5d6b28", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zk_race" + }, + { + "name": "telegram", + "url": "https://t.me/zk_Race" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/derace/" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/polygon/assets/0xE1b3eb06806601828976e491914e3De18B5d6b28/logo.png b/blockchains/polygon/assets/0xE1b3eb06806601828976e491914e3De18B5d6b28/logo.png new file mode 100644 index 0000000000000..e428af9216608 Binary files /dev/null and b/blockchains/polygon/assets/0xE1b3eb06806601828976e491914e3De18B5d6b28/logo.png differ diff --git a/blockchains/polygon/assets/0xE238Ecb42C424E877652AD82d8A939183A04C35f/info.json b/blockchains/polygon/assets/0xE238Ecb42C424E877652AD82d8A939183A04C35f/info.json new file mode 100644 index 0000000000000..bcf83c7635766 --- /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 0000000000000..66b1b3ccf7d2e Binary files /dev/null and b/blockchains/polygon/assets/0xE238Ecb42C424E877652AD82d8A939183A04C35f/logo.png differ diff --git a/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/info.json b/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/info.json new file mode 100644 index 0000000000000..7b306f17152a8 --- /dev/null +++ b/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/info.json @@ -0,0 +1,29 @@ +{ + "name": "Tellor", + "website": "https://tellor.io", + "description": "Tellor (a decentralized oracle) aims to address the Oracle problem on Ethereum.", + "explorer": "https://polygonscan.com/token/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1", + "type": "POLYGON", + "symbol": "TRB", + "decimals": 18, + "status": "active", + "id": "0xE3322702BEdaaEd36CdDAb233360B939775ae5f1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/WeAreTellor" + }, + { + "name": "telegram", + "url": "https://t.me/tellor" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tellor/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tellor/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/logo.png b/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/logo.png new file mode 100644 index 0000000000000..f1295da4329a3 Binary files /dev/null and b/blockchains/polygon/assets/0xE3322702BEdaaEd36CdDAb233360B939775ae5f1/logo.png differ diff --git a/blockchains/polygon/assets/0xE77aBB1E75D2913B2076DD16049992FFeACa5235/info.json b/blockchains/polygon/assets/0xE77aBB1E75D2913B2076DD16049992FFeACa5235/info.json new file mode 100644 index 0000000000000..1985f6c8be1ae --- /dev/null +++ b/blockchains/polygon/assets/0xE77aBB1E75D2913B2076DD16049992FFeACa5235/info.json @@ -0,0 +1,28 @@ +{ + "name": "Decentrawood", + "type": "POLYGON", + "symbol": "Deod", + "decimals": 18, + "website": "https://www.decentrawood.com/", + "description": "Decentrawood is a metaverse token, designed and built on the Polygon network for enhanced scalability and efficiency in virtual worlds.", + "explorer": "https://polygonscan.com/token/0xe77abb1e75d2913b2076dd16049992ffeaca5235", + "status": "active", + "id": "0xE77aBB1E75D2913B2076DD16049992FFeACa5235", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/decentrawood" + }, + { + "name": "telegram", + "url": "https://t.me/decentrawood_platform" + }, + { + "name": "facebook", + "url": "https://facebook.com/decentrawood" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/polygon/assets/0xE77aBB1E75D2913B2076DD16049992FFeACa5235/logo.png b/blockchains/polygon/assets/0xE77aBB1E75D2913B2076DD16049992FFeACa5235/logo.png new file mode 100644 index 0000000000000..6657c1fd7157c Binary files /dev/null and b/blockchains/polygon/assets/0xE77aBB1E75D2913B2076DD16049992FFeACa5235/logo.png differ diff --git a/blockchains/polygon/assets/0xF36f79feb5d97e18C69078d8D13d941CaE447A04/info.json b/blockchains/polygon/assets/0xF36f79feb5d97e18C69078d8D13d941CaE447A04/info.json new file mode 100644 index 0000000000000..03d2e949206cf --- /dev/null +++ b/blockchains/polygon/assets/0xF36f79feb5d97e18C69078d8D13d941CaE447A04/info.json @@ -0,0 +1,21 @@ +{ + "name": "b0rder1ess", + "type": "POLYGON", + "symbol": "b01", + "decimals": 18, + "website": "https://borderless.art", + "description": "Wicked NFT collection & token | Instant & guaranteed NFT sellback", + "explorer": "https://polygonscan.com/token/0xF36f79feb5d97e18C69078d8D13d941CaE447A04", + "status": "active", + "id": "0xF36f79feb5d97e18C69078d8D13d941CaE447A04", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/b0rder1ess" + }, + { + "name": "discord", + "url": "https://discord.com/invite/b0rder1ess" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xF36f79feb5d97e18C69078d8D13d941CaE447A04/logo.png b/blockchains/polygon/assets/0xF36f79feb5d97e18C69078d8D13d941CaE447A04/logo.png new file mode 100644 index 0000000000000..093ddde55ab40 Binary files /dev/null and b/blockchains/polygon/assets/0xF36f79feb5d97e18C69078d8D13d941CaE447A04/logo.png differ diff --git a/blockchains/polygon/assets/0xa1428174F516F527fafdD146b883bB4428682737/info.json b/blockchains/polygon/assets/0xa1428174F516F527fafdD146b883bB4428682737/info.json new file mode 100644 index 0000000000000..cb964a794cc31 --- /dev/null +++ b/blockchains/polygon/assets/0xa1428174F516F527fafdD146b883bB4428682737/info.json @@ -0,0 +1,30 @@ +{ + "name": "SuperVerse", + "symbol": "SUPER", + "type": "POLYGON", + "decimals": 18, + "description": "SuperVerse is a cross-chain DeFi protocol that allows users to deploy crypto and NFT farms with no code required!", + "website": "https://www.superverse.co", + "explorer": "https://polygonscan.com/token/0xa1428174f516f527fafdd146b883bb4428682737", + "status": "active", + "id": "0xa1428174F516F527fafdD146b883bB4428682737", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SuperVerseDAO" + }, + { + "name": "twitter", + "url": "https://twitter.com/SuperVerseDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/superfarm/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/superfarm/" + } + ], + "tags": ["gamefi", "staking", "governance"] + } \ No newline at end of file diff --git a/blockchains/polygon/assets/0xa1428174F516F527fafdD146b883bB4428682737/logo.png b/blockchains/polygon/assets/0xa1428174F516F527fafdD146b883bB4428682737/logo.png new file mode 100644 index 0000000000000..d74002d831d02 Binary files /dev/null and b/blockchains/polygon/assets/0xa1428174F516F527fafdD146b883bB4428682737/logo.png differ diff --git a/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/info.json b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/info.json new file mode 100644 index 0000000000000..647a6e0cc6a67 --- /dev/null +++ b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Banano", + "website": "https://bsc.banano.cc/", + "description": "Wrapped Banano is a token pegged to Banano, enabling to wrap/unwrap your Banano on the Polygon network.", + "explorer": "https://polygonscan.com/token/0xe20b9e246db5a0d21bf9209e4858bc9a3ff7a034", + "type": "POLYGON", + "symbol": "wBAN", + "decimals": 18, + "status": "active", + "id": "0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bananocoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/banano/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/logo.png b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/logo.png new file mode 100644 index 0000000000000..cc05199544a7e Binary files /dev/null and b/blockchains/polygon/assets/0xe20B9e246db5a0d21BF9209E4858Bc9A3ff7A034/logo.png differ diff --git a/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 0000000000000..fb1000f0b4acf --- /dev/null +++ b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Matic ABBC", + "type": "POLYGON", + "symbol": "MABBC", + "decimals": 8, + "website": "https://abbcswap.com/", + "description": "ABBC Swap is a platform that allows users to seamlessly swap their ABBC from the ABBC mainnet using Aladdin Wallet and Aladdin Pro wallet apps into Polygon ABBC pegged.", + "explorer": "https://polygonscan.com/token/0xe83ce6bfb580583bd6a62b4be7b34fc25f02910d", + "status": "active", + "id": "0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/abbcfoundation" + }, + { + "name": "twitter", + "url": "https://twitter.com/abbcfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbc-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png new file mode 100644 index 0000000000000..9259df4c30a91 Binary files /dev/null and b/blockchains/polygon/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png differ diff --git a/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json b/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json index 2f16f323e4460..c19215b5e606a 100644 --- a/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json +++ b/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/info.json @@ -6,7 +6,7 @@ "website": "https://revolt.cultdao.io/", "description": "Revolt is CULT DAOs first ecosystem token, and has been built on the Polygon network with 0.4% taxation. RVLT seeks to support The Many individuals who are working towards the same goal of helping the CULT ecosystem.", "explorer": "https://polygonscan.com/token/0xf0f9D895aCa5c8678f706FB8216fa22957685A13", - "status": "active", + "status": "abandoned", "id": "0xf0f9D895aCa5c8678f706FB8216fa22957685A13", "links": [ { diff --git a/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png b/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png deleted file mode 100644 index e57ca28fc9381..0000000000000 Binary files a/blockchains/polygon/assets/0xf0f9D895aCa5c8678f706FB8216fa22957685A13/logo.png and /dev/null differ diff --git a/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/info.json b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/info.json new file mode 100644 index 0000000000000..24b45f5e12a62 --- /dev/null +++ b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sirius by Humanity", + "type": "POLYGON", + "symbol": "SRS", + "decimals": 18, + "website": "https://humanity-protocol.com", + "description": "Sirius (SRS) is the native token of the revolutionary Humanity Protocol ecosystem, designed to transform Africa's economy and empower millions of people. SRS is at the core of our decentralized platform, facilitating seamless transactions, fueling various services, and providing access to a wealth of opportunities.", + "explorer": "https://polygonscan.com/token/0xf8dda7b3748254d562f476119b0ae6044bad10a5", + "status": "active", + "id": "0xf8DDA7b3748254d562f476119B0aE6044bAd10a5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/HmntyProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/SRSbyHumanity" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/logo.png b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/logo.png new file mode 100644 index 0000000000000..0aa4eded67753 Binary files /dev/null and b/blockchains/polygon/assets/0xf8DDA7b3748254d562f476119B0aE6044bAd10a5/logo.png differ diff --git a/blockchains/polygon/assets/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C/info.json b/blockchains/polygon/assets/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C/info.json new file mode 100644 index 0000000000000..9dc0312be36ea --- /dev/null +++ b/blockchains/polygon/assets/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C/info.json @@ -0,0 +1,66 @@ +{ + "name": "LandRocker", + "type": "POLYGON", + "symbol": "LRT", + "decimals": 18, + "website": "https://landrocker.io/", + "description": "LandRocker offers an infinite universe for discovery, space exploration, and combat in a free-to-play, multiplayer game. Players embark on missions across over 79 quintillion unique planets, each with distinct environments, ecosystems, and wildlife. They engage in battles against alien forces and gather rewards such as crypto tokens and crafting materials. Audited by Certik: https://skynet.certik.com/projects/landrocker", + "explorer": "https://polygonscan.com/token/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C", + "status": "active", + "id": "0xfb7f8A2C0526D01BFB00192781B7a7761841B16C", + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/landrocker" + }, + { + "name": "medium", + "url": "https://landrocker.medium.com/" + }, + { + "name": "telegram", + "url": "https://t.me/landrockerchat" + }, + { + "name": "github", + "url": "https://github.com/LandRocker/" + }, + { + "name": "telegram_news", + "url": "https://t.me/landrockerchat/180109" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.landrocker.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/landrocker/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/landrocker" + }, + { + "name": "youtube", + "url": "https://youtube.com/LandRocker" + }, + { + "name": "forum", + "url": "https://forum.landrocker.io/" + }, + { + "name": "blog", + "url": "https://landrocker.io/news" + }, + { + "name": "facebook", + "url": "https://facebook.com/LandRockergame" + } + ], + "tags": [ + "gamefi", + "nft", + "dapp" + ] +} diff --git a/blockchains/polygon/assets/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C/logo.png b/blockchains/polygon/assets/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C/logo.png new file mode 100644 index 0000000000000..5c4fa21dc098b Binary files /dev/null and b/blockchains/polygon/assets/0xfb7f8A2C0526D01BFB00192781B7a7761841B16C/logo.png differ diff --git a/blockchains/polygon/info/info.json b/blockchains/polygon/info/info.json index d88d2caa39dd4..ef0b65169faaf 100644 --- a/blockchains/polygon/info/info.json +++ b/blockchains/polygon/info/info.json @@ -1,12 +1,12 @@ { - "name": "Polygon", + "name": "POL (ex-MATIC)", "website": "https://polygon.technology/", "short_description": "Polygon (Matic) strives to solve the scalability and usability issues, while not compromising on decentralization and leveraging the existing developer community and ecosystem", "description": "Polygon (Matic) strives to solve the scalability and usability issues, while not compromising on decentralization and leveraging the existing developer community and ecosystem", "explorer": "https://polygonscan.com/", "research": "https://docs.matic.network/", "type": "coin", - "symbol": "MATIC", + "symbol": "POL", "rpc_url": "https://polygon-rpc.com", "decimals": 18, "status": "active", diff --git a/blockchains/polygon/tokenlist.json b/blockchains/polygon/tokenlist.json index f612ba4ee99b0..073698b43c375 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 index a6fcc70c5f63b..9f574b9317c50 100644 --- a/blockchains/polygonmumbai/info/info.json +++ b/blockchains/polygonmumbai/info/info.json @@ -3,8 +3,8 @@ "website": "https://polygon.technology", "description": "The Alchemy Goerli faucet is free, fast, and does not require authentication, though you can optionally login to Alchemy to get an increased drip.", "explorer": "https://mumbai.polygonscan.com/", - "symbol": "MATIC", - "rpc_url": "https://matic-mumbai.chainstacklabs.com", + "symbol": "tMATIC", + "rpc_url": "https://polygon-testnet.public.blastapi.io", "type": "coin", "decimals": 18, "status": "active" diff --git a/blockchains/polygonzkevm/assets/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D/info.json b/blockchains/polygonzkevm/assets/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D/info.json new file mode 100644 index 0000000000000..7b127fda73373 --- /dev/null +++ b/blockchains/polygonzkevm/assets/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Polygon Ecosystem Token", + "type": "ZKEVM", + "symbol": "POL", + "decimals": 18, + "website": "https://polygon.technology/", + "description": "Polygon is a protocol and a framework for building and connecting Ethereum-compatible blockchain networks. Aggregating scalable solutions on Ethereum supporting a multi-chain Ethereum ecosystem.", + "explorer": "https://zkevm.polygonscan.com/token/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D", + "status": "active", + "id": "0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/polygonofficial" + }, + { + "name": "twitter", + "url": "https://twitter.com/0xPolygon" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/polygon/" + } + ] +} \ No newline at end of file diff --git a/blockchains/polygonzkevm/assets/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D/logo.png b/blockchains/polygonzkevm/assets/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D/logo.png new file mode 100644 index 0000000000000..fbd01afc251d4 Binary files /dev/null and b/blockchains/polygonzkevm/assets/0x22B21BedDef74FE62F031D2c5c8F7a9F8a4b304D/logo.png differ diff --git a/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/info.json b/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/info.json index 3d3578df688a5..8e08035f71c3b 100644 --- a/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/info.json +++ b/blockchains/polygonzkevm/assets/0xa2036f0538221a77A3937F1379699f44945018d0/info.json @@ -3,9 +3,9 @@ "type": "ZKEVM", "symbol": "MATIC", "decimals": 18, - "website": "https://app.radiant.capital/", + "website": "https://polygon.technology/", "description": "Polygon is a protocol and a framework for building and connecting Ethereum-compatible blockchain networks. Aggregating scalable solutions on Ethereum supporting a multi-chain Ethereum ecosystem.", - "explorer": "https://explorer.public.zkevm-test.net/address/0xa2036f0538221a77a3937f1379699f44945018d0", + "explorer": "https://zkevm.polygonscan.com/token/0xa2036f0538221a77A3937F1379699f44945018d0", "status": "active", "id": "0xa2036f0538221a77A3937F1379699f44945018d0", "links": [ diff --git a/blockchains/polygonzkevm/info/info.json b/blockchains/polygonzkevm/info/info.json index b2acc492eb96e..1326db7820668 100644 --- a/blockchains/polygonzkevm/info/info.json +++ b/blockchains/polygonzkevm/info/info.json @@ -4,12 +4,15 @@ "description": "Polygon zkEVM is the leading zero knowledge scaling solution that’s fully equivalent with the Ethereum Virtual Machine: all existing smart contracts, developer tools, and wallets work seamlessly.", "explorer": "https://polygon.technology/polygon-zkevm", "research": "https://github.com/0xpolygonhermez", - "symbol": "ETH", + "symbol": "tETH", "rpc_url": "https://rpc.ankr.com/polygon_zkevm", "type": "coin", "coin_type": 10001101, "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "twitter", diff --git a/blockchains/quasar/validators/assets/quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj/logo.png b/blockchains/quasar/validators/assets/quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj/logo.png new file mode 100644 index 0000000000000..d3477a03445f6 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper137977wrgvu4uy7e5l7w7lella483rrygaw5lqj/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zxyedrk/logo.png b/blockchains/quasar/validators/assets/quasarvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zxyedrk/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zxyedrk/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper14mugyqxjvtzk39au6klgpcyz4vpxgxsjf7c5uk/logo.png b/blockchains/quasar/validators/assets/quasarvaloper14mugyqxjvtzk39au6klgpcyz4vpxgxsjf7c5uk/logo.png new file mode 100644 index 0000000000000..28a98c6eaba18 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper14mugyqxjvtzk39au6klgpcyz4vpxgxsjf7c5uk/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98scge77/logo.png b/blockchains/quasar/validators/assets/quasarvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98scge77/logo.png new file mode 100644 index 0000000000000..9dff7bbedfbee Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98scge77/logo.png differ diff --git a/blockchains/quasar/validators/assets/quasarvaloper1yhh4r96kvl9tzucq5dn69gu2242hn2d9gsscvw/logo.png b/blockchains/quasar/validators/assets/quasarvaloper1yhh4r96kvl9tzucq5dn69gu2242hn2d9gsscvw/logo.png new file mode 100644 index 0000000000000..f6dfe9162fd43 Binary files /dev/null and b/blockchains/quasar/validators/assets/quasarvaloper1yhh4r96kvl9tzucq5dn69gu2242hn2d9gsscvw/logo.png differ diff --git a/blockchains/quasar/validators/list.json b/blockchains/quasar/validators/list.json new file mode 100644 index 0000000000000..ea0f47dc770f6 --- /dev/null +++ b/blockchains/quasar/validators/list.json @@ -0,0 +1,32 @@ +[ + { + "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/" + }, + { + "id": "quasarvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98scge77", + "name": "Kahuna", + "description": "Kahuna is a tech-focused investment firm dedicated to Blockchain Infrastructure, DeFi, and Gaming startups. Follow us on https://x.com/kahunahq", + "website": "https://www.kahuna.network/" + } +] \ No newline at end of file diff --git a/blockchains/rootstock/info/info.json b/blockchains/rootstock/info/info.json new file mode 100644 index 0000000000000..dca420a8c486e --- /dev/null +++ b/blockchains/rootstock/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Rootstock", + "website": "https://rootstock.io/", + "description": "Deploy EVM compatible smart contracts on Rootstock and leverage the security of the Bitcoin network.", + "explorer": "https://explorer.rootstock.io/", + "symbol": "ROOTSTOCK", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/rootstock_io" + }, + { + "name": "telegram", + "url": "https://t.me/rskofficialcommunity" + } + ] +} diff --git a/blockchains/rootstock/info/logo.png b/blockchains/rootstock/info/logo.png new file mode 100644 index 0000000000000..0c5b0719373fc Binary files /dev/null and b/blockchains/rootstock/info/logo.png differ diff --git a/blockchains/scroll/assets/0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4/info.json b/blockchains/scroll/assets/0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4/info.json new file mode 100644 index 0000000000000..14bf92f1d1dfa --- /dev/null +++ b/blockchains/scroll/assets/0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4/info.json @@ -0,0 +1,36 @@ +{ + "name": "USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://scrollscan.com/token/0x06efdbff2a14a7c8e15944d1f4a48f9f95f663a4", + "type": "SCROLL", + "symbol": "USDC", + "decimals": 6, + "status": "active", + "id": "0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4/logo.png b/blockchains/scroll/assets/0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4/logo.png new file mode 100644 index 0000000000000..c8e3f9b240840 Binary files /dev/null and b/blockchains/scroll/assets/0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4/logo.png differ diff --git a/blockchains/scroll/assets/0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c/info.json b/blockchains/scroll/assets/0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c/info.json new file mode 100644 index 0000000000000..d8121f6d4476d --- /dev/null +++ b/blockchains/scroll/assets/0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c/info.json @@ -0,0 +1,37 @@ +{ + "name": "PancakeSwap Token", + "website": "https://pancakeswap.finance", + "description": "PancakeSwap is a yield farming project whereby users can get FLIP (LP token) for staking and get CAKE token as reward.", + "explorer": "https://scrollscan.com/token/0x1b896893dfc86bb67cf57767298b9073d2c1ba2c", + "research": "https://research.binance.com/en/projects/pancakeswap", + "type": "SCROLL", + "symbol": "CAKE", + "decimals": 18, + "status": "active", + "id": "0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/pancakeswap" + }, + { + "name": "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/en/coins/pancakeswap-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c/logo.png b/blockchains/scroll/assets/0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c/logo.png new file mode 100644 index 0000000000000..685fbc4249857 Binary files /dev/null and b/blockchains/scroll/assets/0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c/logo.png differ diff --git a/blockchains/scroll/assets/0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1/info.json b/blockchains/scroll/assets/0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1/info.json new file mode 100644 index 0000000000000..55cc95b3c4b0e --- /dev/null +++ b/blockchains/scroll/assets/0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1/info.json @@ -0,0 +1,29 @@ +{ + "name": "Wrapped Bitcoin", + "website": "https://wbtc.network", + "description": "Wrapped Bitcoin (WBTC) is the first ERC20 token backed 1:1 with Bitcoin.", + "explorer": "https://scrollscan.com/token/0x3c1bca5a656e69edcd0d4e36bebb3fcdaca60cf1", + "type": "SCROLL", + "symbol": "WBTC", + "decimals": 8, + "status": "active", + "id": "0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1", + "tags": [ + "defi", + "wrapped" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://wbtc.network/assets/wrapped-tokens-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1/logo.png b/blockchains/scroll/assets/0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1/logo.png new file mode 100644 index 0000000000000..702d64a2e040a Binary files /dev/null and b/blockchains/scroll/assets/0x3C1BCa5a656e69edCD0D4E36BEbb3FcDAcA60Cf1/logo.png differ diff --git a/blockchains/scroll/assets/0x434cdA25E8a2CA5D9c1C449a8Cb6bCbF719233E8/info.json b/blockchains/scroll/assets/0x434cdA25E8a2CA5D9c1C449a8Cb6bCbF719233E8/info.json new file mode 100644 index 0000000000000..48dc77ccf2525 --- /dev/null +++ b/blockchains/scroll/assets/0x434cdA25E8a2CA5D9c1C449a8Cb6bCbF719233E8/info.json @@ -0,0 +1,38 @@ +{ + "name": "Uniswap", + "website": "https://uniswap.org", + "description": "UNI is the Uniswap protocol token. Uniswap is a decentralized protocol for automated liquidity provision on Ethereum.", + "explorer": "https://scrollscan.com/token/0x434cda25e8a2ca5d9c1c449a8cb6bcbf719233e8", + "research": "https://research.binance.com/en/projects/uniswap", + "type": "SCROLL", + "symbol": "UNI", + "decimals": 18, + "status": "active", + "id": "0x434cdA25E8a2CA5D9c1C449a8Cb6bCbF719233E8", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "discord", + "url": "https://discord.com/invite/XErMcTq" + }, + { + "name": "twitter", + "url": "https://twitter.com/UniswapProtocol" + }, + { + "name": "blog", + "url": "https://uniswap.org/blog/uni/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uniswap/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uniswap/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0x434cdA25E8a2CA5D9c1C449a8Cb6bCbF719233E8/logo.png b/blockchains/scroll/assets/0x434cdA25E8a2CA5D9c1C449a8Cb6bCbF719233E8/logo.png new file mode 100644 index 0000000000000..893ef55cb23c0 Binary files /dev/null and b/blockchains/scroll/assets/0x434cdA25E8a2CA5D9c1C449a8Cb6bCbF719233E8/logo.png differ diff --git a/blockchains/scroll/assets/0x5300000000000000000000000000000000000004/info.json b/blockchains/scroll/assets/0x5300000000000000000000000000000000000004/info.json new file mode 100644 index 0000000000000..3930684f576e1 --- /dev/null +++ b/blockchains/scroll/assets/0x5300000000000000000000000000000000000004/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped Ether", + "symbol": "WETH", + "type": "SCROLL", + "decimals": 18, + "description": "wETH is wrapped ETH", + "website": "https://weth.io/", + "explorer": "https://scrollscan.com/token/0x5300000000000000000000000000000000000004", + "status": "active", + "id": "0x5300000000000000000000000000000000000004", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/weth/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/weth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0x5300000000000000000000000000000000000004/logo.png b/blockchains/scroll/assets/0x5300000000000000000000000000000000000004/logo.png new file mode 100644 index 0000000000000..f9328d9550a06 Binary files /dev/null and b/blockchains/scroll/assets/0x5300000000000000000000000000000000000004/logo.png differ diff --git a/blockchains/scroll/assets/0x79379C0E09a41d7978f883a56246290eE9a8c4d3/info.json b/blockchains/scroll/assets/0x79379C0E09a41d7978f883a56246290eE9a8c4d3/info.json new file mode 100644 index 0000000000000..0858c992a6c06 --- /dev/null +++ b/blockchains/scroll/assets/0x79379C0E09a41d7978f883a56246290eE9a8c4d3/info.json @@ -0,0 +1,50 @@ +{ + "name": "Aave", + "website": "https://aave.com", + "description": "Aave Protocol is a decentralised liquidity protocol where people can lend and borrow digital assets. The AAVE token is the governance token of the protocol, so AAVE holders can vote on proposals for updates. AAVE holders can also stake their AAVE in the protocol Safety Module and earn Safety Incentives for securing the protocol", + "explorer": "https://scrollscan.com/token/0x79379c0e09a41d7978f883a56246290ee9a8c4d3", + "research": "https://research.binance.com/en/projects/aave-protocol", + "type": "SCROLL", + "symbol": "AAVE", + "decimals": 18, + "status": "active", + "id": "0x79379C0E09a41d7978f883a56246290eE9a8c4d3", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/aave/aave-protocol" + }, + { + "name": "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/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0x79379C0E09a41d7978f883a56246290eE9a8c4d3/logo.png b/blockchains/scroll/assets/0x79379C0E09a41d7978f883a56246290eE9a8c4d3/logo.png new file mode 100644 index 0000000000000..1e7cef36a8aaa Binary files /dev/null and b/blockchains/scroll/assets/0x79379C0E09a41d7978f883a56246290eE9a8c4d3/logo.png differ diff --git a/blockchains/scroll/assets/0x9735fb1126B521A913697A541f768376011bCcF9/info.json b/blockchains/scroll/assets/0x9735fb1126B521A913697A541f768376011bCcF9/info.json new file mode 100644 index 0000000000000..d428d6fc4ac7b --- /dev/null +++ b/blockchains/scroll/assets/0x9735fb1126B521A913697A541f768376011bCcF9/info.json @@ -0,0 +1,41 @@ +{ + "name": "Chess", + "website": "https://tranchess.com/", + "description": "Tranchess Protocol is a tokenized asset management and derivatives trading protocol. Inspired by tranches fund that caters investors with different risk appetite, Tranchess aims to provide different risk/return matrix out of a single main fund that tracks a specific underlying asset.", + "type": "SCROLL", + "symbol": "CHESS", + "decimals": 18, + "status": "active", + "explorer": "https://scrollscan.com/token/0x9735fb1126b521a913697a541f768376011bccf9", + "id": "0x9735fb1126B521A913697A541f768376011bCcF9", + "links": [ + { + "name": "github", + "url": "https://github.com/tranchess/contract-core" + }, + { + "name": "twitter", + "url": "https://twitter.com/tranchess" + }, + { + "name": "medium", + "url": "https://medium.com/@tranchess" + }, + { + "name": "telegram", + "url": "https://t.me/tranchess" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/tranchess" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tranchess" + }, + { + "name": "discord", + "url": "https://discord.com/invite/tKxAq78VBr" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0x9735fb1126B521A913697A541f768376011bCcF9/logo.png b/blockchains/scroll/assets/0x9735fb1126B521A913697A541f768376011bCcF9/logo.png new file mode 100644 index 0000000000000..ab05582a52c3a Binary files /dev/null and b/blockchains/scroll/assets/0x9735fb1126B521A913697A541f768376011bCcF9/logo.png differ diff --git a/blockchains/scroll/assets/0xB755039eDc7910C1F1BD985D48322E55A31AC0bF/info.json b/blockchains/scroll/assets/0xB755039eDc7910C1F1BD985D48322E55A31AC0bF/info.json new file mode 100644 index 0000000000000..428ee18ca45bd --- /dev/null +++ b/blockchains/scroll/assets/0xB755039eDc7910C1F1BD985D48322E55A31AC0bF/info.json @@ -0,0 +1,34 @@ +{ + "name": "Curve DAO Token", + "website": "https://curve.fi", + "description": "CRV is a governance token on the Curve platform with time-weighted voting and value accrual mechanisms.", + "explorer": "https://scrollscan.com/token/0xb755039edc7910c1f1bd985d48322e55a31ac0bf", + "research": "https://research.binance.com/en/projects/curve", + "type": "SCROLL", + "symbol": "CRV", + "decimals": 18, + "status": "active", + "id": "0xB755039eDc7910C1F1BD985D48322E55A31AC0bF", + "tags": [ + "defi", + "governance" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/curvefi/curve-contract" + }, + { + "name": "twitter", + "url": "https://twitter.com/CurveFinance" + }, + { + "name": "telegram", + "url": "https://t.me/curvefi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/curve-dao-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0xB755039eDc7910C1F1BD985D48322E55A31AC0bF/logo.png b/blockchains/scroll/assets/0xB755039eDc7910C1F1BD985D48322E55A31AC0bF/logo.png new file mode 100644 index 0000000000000..b820f250c2d3b Binary files /dev/null and b/blockchains/scroll/assets/0xB755039eDc7910C1F1BD985D48322E55A31AC0bF/logo.png differ diff --git a/blockchains/scroll/assets/0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97/info.json b/blockchains/scroll/assets/0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97/info.json new file mode 100644 index 0000000000000..1dc6121f1d724 --- /dev/null +++ b/blockchains/scroll/assets/0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97/info.json @@ -0,0 +1,42 @@ +{ + "name": "Dai", + "website": "http://makerdao.com", + "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", + "explorer": "https://scrollscan.com/token/0xca77eb3fefe3725dc33bccb54edefc3d9f764f97", + "research": "https://research.binance.com/en/projects/dai", + "type": "SCROLL", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "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/scroll/assets/0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97/logo.png b/blockchains/scroll/assets/0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97/logo.png new file mode 100644 index 0000000000000..a20d88cd59763 Binary files /dev/null and b/blockchains/scroll/assets/0xcA77eB3fEFe3725Dc33bccB54eDEFc3D9f764f97/logo.png differ diff --git a/blockchains/scroll/assets/0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df/info.json b/blockchains/scroll/assets/0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df/info.json new file mode 100644 index 0000000000000..9af622ac95873 --- /dev/null +++ b/blockchains/scroll/assets/0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://scrollscan.com/token/0xf55bec9cafdbe8730f096aa55dad6d22d44099df", + "type": "SCROLL", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "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/scroll/assets/0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df/logo.png b/blockchains/scroll/assets/0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df/logo.png new file mode 100644 index 0000000000000..fd99f630b1d07 Binary files /dev/null and b/blockchains/scroll/assets/0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df/logo.png differ diff --git a/blockchains/scroll/assets/0xf610A9dfB7C89644979b4A0f27063E9e7d7Cda32/info.json b/blockchains/scroll/assets/0xf610A9dfB7C89644979b4A0f27063E9e7d7Cda32/info.json new file mode 100644 index 0000000000000..95e47863e7505 --- /dev/null +++ b/blockchains/scroll/assets/0xf610A9dfB7C89644979b4A0f27063E9e7d7Cda32/info.json @@ -0,0 +1,25 @@ +{ + "name": "Curve DAO Token", + "website": "https://www.lido.fi/", + "description": "wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.", + "explorer": "https://scrollscan.com/token/0xf610a9dfb7c89644979b4a0f27063e9e7d7cda32", + "type": "SCROLL", + "symbol": "wstETH", + "decimals": 18, + "status": "active", + "id": "0xf610A9dfB7C89644979b4A0f27063E9e7d7Cda32", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/lidofinance" + }, + { + "name": "telegram", + "url": "https://t.me/lidofinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lido-finance-wsteth/" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0xf610A9dfB7C89644979b4A0f27063E9e7d7Cda32/logo.png b/blockchains/scroll/assets/0xf610A9dfB7C89644979b4A0f27063E9e7d7Cda32/logo.png new file mode 100644 index 0000000000000..62a1628e2fa58 Binary files /dev/null and b/blockchains/scroll/assets/0xf610A9dfB7C89644979b4A0f27063E9e7d7Cda32/logo.png differ diff --git a/blockchains/scroll/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/scroll/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 0000000000000..9cfd9a4dd6972 --- /dev/null +++ b/blockchains/scroll/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lorenzo stBTC", + "type": "SCROLL", + "symbol": "stBTC", + "decimals": 18, + "website": "https://www.lorenzo-protocol.xyz/", + "description": "To be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "explorer": "https://scrollscan.com/token/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "status": "active", + "id": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LorenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/lorenzoprotocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png b/blockchains/scroll/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png new file mode 100644 index 0000000000000..d0c4e5f85eb2b Binary files /dev/null and b/blockchains/scroll/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/scroll/info/info.json b/blockchains/scroll/info/info.json new file mode 100644 index 0000000000000..160c9cf0f4731 --- /dev/null +++ b/blockchains/scroll/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Scroll", + "website": "https://scroll.io", + "description": "Scroll is a zkEVM-based zkRollup on Ethereum that enables native compatibility for existing Ethereum applications and tools.", + "explorer": "https://blockscout.scroll.io", + "symbol": "ETH", + "type": "coin", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/scroll-tech" + }, + { + "name": "twitter", + "url": "https://twitter.com/Scroll_ZKP" + } + ] +} \ No newline at end of file diff --git a/blockchains/scroll/info/logo.png b/blockchains/scroll/info/logo.png new file mode 100644 index 0000000000000..1fbbc2104db1f Binary files /dev/null and b/blockchains/scroll/info/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper12y30xefd0wg53xtyv9lw7mjcdvf8nxgzzva3sr/logo.png b/blockchains/secret/validators/assets/secretvaloper12y30xefd0wg53xtyv9lw7mjcdvf8nxgzzva3sr/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper12y30xefd0wg53xtyv9lw7mjcdvf8nxgzzva3sr/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper16w5hlcf389le2n60t32eqf43plp539ged9sruy/logo.png b/blockchains/secret/validators/assets/secretvaloper16w5hlcf389le2n60t32eqf43plp539ged9sruy/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper16w5hlcf389le2n60t32eqf43plp539ged9sruy/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper19z74520tdw5gps5sp5tr8y2mxr40artly6rsw3/logo.png b/blockchains/secret/validators/assets/secretvaloper19z74520tdw5gps5sp5tr8y2mxr40artly6rsw3/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper19z74520tdw5gps5sp5tr8y2mxr40artly6rsw3/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1hjd20hjvkx06y8p42xl0uzr3gr3ue3nkvd79jj/logo.png b/blockchains/secret/validators/assets/secretvaloper1hjd20hjvkx06y8p42xl0uzr3gr3ue3nkvd79jj/logo.png new file mode 100644 index 0000000000000..821e30b0e283c Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1hjd20hjvkx06y8p42xl0uzr3gr3ue3nkvd79jj/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1t5wtcuwjkdct9qkw2h6m48zu2hectpd6ulmekk/logo.png b/blockchains/secret/validators/assets/secretvaloper1t5wtcuwjkdct9qkw2h6m48zu2hectpd6ulmekk/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1t5wtcuwjkdct9qkw2h6m48zu2hectpd6ulmekk/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1vzkdmu0sa8gaj686jh5all7hpmmsp8x87vyz8z/logo.png b/blockchains/secret/validators/assets/secretvaloper1vzkdmu0sa8gaj686jh5all7hpmmsp8x87vyz8z/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1vzkdmu0sa8gaj686jh5all7hpmmsp8x87vyz8z/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1x76f2c2cuwa4e3lttjgqeqva0725ftmqvgvfnv/logo.png b/blockchains/secret/validators/assets/secretvaloper1x76f2c2cuwa4e3lttjgqeqva0725ftmqvgvfnv/logo.png new file mode 100644 index 0000000000000..3345b271b7197 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1x76f2c2cuwa4e3lttjgqeqva0725ftmqvgvfnv/logo.png differ diff --git a/blockchains/secret/validators/assets/secretvaloper1xj5ykuzn0mkq9642yxgqmh4ycplzhr2pza25mk/logo.png b/blockchains/secret/validators/assets/secretvaloper1xj5ykuzn0mkq9642yxgqmh4ycplzhr2pza25mk/logo.png new file mode 100644 index 0000000000000..0615d014ea874 Binary files /dev/null and b/blockchains/secret/validators/assets/secretvaloper1xj5ykuzn0mkq9642yxgqmh4ycplzhr2pza25mk/logo.png differ diff --git a/blockchains/secret/validators/list.json b/blockchains/secret/validators/list.json new file mode 100644 index 0000000000000..77c85c5fb625e --- /dev/null +++ b/blockchains/secret/validators/list.json @@ -0,0 +1,50 @@ +[ + { + "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/" + }, + { + "id": "secretvaloper1vzkdmu0sa8gaj686jh5all7hpmmsp8x87vyz8z", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + } +] diff --git a/blockchains/sei/info/info.json b/blockchains/sei/info/info.json new file mode 100644 index 0000000000000..ed96c6de9fdbd --- /dev/null +++ b/blockchains/sei/info/info.json @@ -0,0 +1,27 @@ +{ + "name": "Sei", + "website": "https://sei.io", + "description": "Sei is the fastest blockchain to finality, magnitudes faster than the rest.", + "explorer": "https://www.mintscan.io/sei/", + "symbol": "SEI", + "type": "coin", + "decimals": 6, + "status": "active", + "tags": [ + "staking-native" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SeiNetwork" + }, + { + "name": "github", + "url": "https://github.com/sei-protocol/sei-chain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sei/" + } + ] +} \ No newline at end of file diff --git a/blockchains/sei/info/logo.png b/blockchains/sei/info/logo.png new file mode 100644 index 0000000000000..b473b2c487a0a Binary files /dev/null and b/blockchains/sei/info/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zl6nups/logo.png b/blockchains/sei/validators/assets/seivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zl6nups/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zl6nups/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1eqgnd7ey0hnha8rrfukjrsawulhna0zagcg6a4/logo.png b/blockchains/sei/validators/assets/seivaloper1eqgnd7ey0hnha8rrfukjrsawulhna0zagcg6a4/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1eqgnd7ey0hnha8rrfukjrsawulhna0zagcg6a4/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8/logo.png b/blockchains/sei/validators/assets/seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8/logo.png new file mode 100644 index 0000000000000..e5e20afbb46b8 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1mpe9rdk7ycujge7r9ncjt4ekamgrdcygvzwqe8/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qnkypla/logo.png b/blockchains/sei/validators/assets/seivaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qnkypla/logo.png new file mode 100644 index 0000000000000..f78bfbfb1dfe7 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qnkypla/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1t9fq3qfm7ngau5gr8qgf5dpfzjqg79kf65cu04/logo.png b/blockchains/sei/validators/assets/seivaloper1t9fq3qfm7ngau5gr8qgf5dpfzjqg79kf65cu04/logo.png new file mode 100644 index 0000000000000..975d9113e179c Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1t9fq3qfm7ngau5gr8qgf5dpfzjqg79kf65cu04/logo.png differ diff --git a/blockchains/sei/validators/assets/seivaloper1zv9z2wqt348dhxqn38xv8dvsu78cle4xs2cdf4/logo.png b/blockchains/sei/validators/assets/seivaloper1zv9z2wqt348dhxqn38xv8dvsu78cle4xs2cdf4/logo.png new file mode 100644 index 0000000000000..7a2c0c8a85ed8 Binary files /dev/null and b/blockchains/sei/validators/assets/seivaloper1zv9z2wqt348dhxqn38xv8dvsu78cle4xs2cdf4/logo.png differ diff --git a/blockchains/sei/validators/list.json b/blockchains/sei/validators/list.json new file mode 100644 index 0000000000000..d1326aef61df3 --- /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/smartchain/assets/0x0000028a2eB8346cd5c0267856aB7594B7a55308/info.json b/blockchains/smartchain/assets/0x0000028a2eB8346cd5c0267856aB7594B7a55308/info.json new file mode 100644 index 0000000000000..0e4f664018ac2 --- /dev/null +++ b/blockchains/smartchain/assets/0x0000028a2eB8346cd5c0267856aB7594B7a55308/info.json @@ -0,0 +1,21 @@ +{ + "name": "Zeta", + "type": "BEP20", + "symbol": "ZETA", + "decimals": 18, + "website": "https://www.zetachain.com/", + "description": "ZetaChain is a public, decentralized blockchain and smart contract platform that enables message passing and value transfer between any blockchain.", + "explorer": "https://bscscan.com/token/0x0000028a2eb8346cd5c0267856ab7594b7a55308", + "status": "active", + "id": "0x0000028a2eB8346cd5c0267856aB7594B7a55308", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zetablockchain" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zetachain/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0000028a2eB8346cd5c0267856aB7594B7a55308/logo.png b/blockchains/smartchain/assets/0x0000028a2eB8346cd5c0267856aB7594B7a55308/logo.png new file mode 100644 index 0000000000000..b1372629fb38d Binary files /dev/null and b/blockchains/smartchain/assets/0x0000028a2eB8346cd5c0267856aB7594B7a55308/logo.png differ diff --git a/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/info.json b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/info.json new file mode 100644 index 0000000000000..5fb016f6b8fd7 --- /dev/null +++ b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/info.json @@ -0,0 +1,62 @@ +{ + "name": "Scotty Beam", + "type": "BEP20", + "symbol": "SCOTTY", + "decimals": 18, + "website": "https://scottybeam.io/", + "description": "Scotty Beam is the world's first cross-chain NFT platform – here to help cryptonians move NFTs across blockchain galaxies; exchange tokens and NFTs via P2P deals; participate in cool INOs; connecting Metaverses, games and marketplaces; maximize value and fun throughout the voyage.", + "explorer": "https://bscscan.com/token/0x000351d035d8bbf2aa3131ebfecd66fb21836f6c", + "status": "active", + "id": "0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ScottyBeamIO" + }, + { + "name": "github", + "url": "https://github.com/ScottyBeam/" + }, + { + "name": "telegram", + "url": "https://t.me/ScottyBeamChat" + }, + { + "name": "telegram_news", + "url": "https://t.me/ScottyBeamIO" + }, + { + "name": "docs", + "url": "https://github.com/ScottyBeam/rest-api-docs" + }, + { + "name": "discord", + "url": "https://discord.com/channels/1004044243112824862/1004307545541836800" + }, + { + "name": "medium", + "url": "https://scottybeam.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCmyh7PXvwE4iBD4TljRt-EQ" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/scottybeam/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/scotty-beam" + }, + { + "name": "whitepaper", + "url": "https://scottybeam.io/assets/scotty-beam-pitch.pdf" + } + ], + "tags": [ + "nft", + "synthetics", + "memes" + ] +} diff --git a/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/logo.png b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/logo.png new file mode 100644 index 0000000000000..43b67546bc289 Binary files /dev/null and b/blockchains/smartchain/assets/0x000351d035D8BBf2aa3131EbFECD66Fb21836f6c/logo.png differ diff --git a/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/info.json b/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/info.json new file mode 100644 index 0000000000000..99364447298bb --- /dev/null +++ b/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/info.json @@ -0,0 +1,48 @@ +{ + "name": "Develocity", + "type": "BEP20", + "symbol": "DEVE", + "decimals": 18, + "website": "https://develocity.finance", + "description": "Develocity, your gateway to decentralized finance. Our ecosystem includes DV Wallet for secure asset management, DV Scan for blockchain security, DV Swap for token exchanges, DV Bridge for cross-chain transactions, and DV DEX for decentralized trading.", + "explorer": "https://bscscan.com/token/0x00f9928315196cdFBeE0205520A8ebe60D9172F0", + "status": "active", + "id": "0x00f9928315196cdFBeE0205520A8ebe60D9172F0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/develocitygroup" + }, + { + "name": "github", + "url": "https://github.com/DevelocityLLC/" + }, + { + "name": "telegram", + "url": "https://t.me/Develocity" + }, + { + "name": "telegram_news", + "url": "https://t.me/DevelocityToken" + }, + { + "name": "youtube", + "url": "https://youtube.com/@develocitygroup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/develocity-finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/develocity" + }, + { + "name": "whitepaper", + "url": "https://develocity.finance/whitepaper.pdf" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/logo.png b/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/logo.png new file mode 100644 index 0000000000000..7e7dc1442dfee Binary files /dev/null and b/blockchains/smartchain/assets/0x00f9928315196cdFBeE0205520A8ebe60D9172F0/logo.png differ diff --git a/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/info.json b/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/info.json index 76ba465909fe9..d9d675cb4c076 100644 --- a/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/info.json +++ b/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/info.json @@ -6,7 +6,7 @@ "website": "https://gulfofficial.com/", "description": "Gulf, A gem rising to the surface of the fourth industrial revolution. Today, we are living through an industrial and a technological revolution going at a pace that will fundamentally alter the way we live.", "explorer": "https://bscscan.com/token/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a", - "status": "active", + "status": "abandoned", "id": "0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a", "links": [ { diff --git a/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/logo.png b/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/logo.png deleted file mode 100644 index d937afa9dcf94..0000000000000 Binary files a/blockchains/smartchain/assets/0x014a087b646Bd90E7DCEad3993F49EB1F4B5f30a/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json index 9fe373321a684..c58ab25b18f49 100644 --- a/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json +++ b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/info.json @@ -1,17 +1,37 @@ { - "name": "DEXE", + "name": "DeXe (Old)", "type": "BEP20", "symbol": "DEXE", "decimals": 18, "website": "https://dexe.network/", - "description": "Dexe.network or Dexe (Decentralized Social Trading Platform) – an online, decentralized and autonomous cryptocurrency assets portfolio environment which operates via autonomous smart contracts, that includes tools for virtual currency allocation, automatic rebalancing and eliminates the risks of transferring digital wallet details such as private keys and API or any virtual currency data to a third party.", + "description": "DeXe Protocol is a decentralized suite of permissionless tools for managing assets, products, and communities governed by $DEXE holders within DeXe Protocol DAO. It offers a no-code environment on blockchain for launching DAOs, tokens, and fundraises; AI-powered automation for decision-making; on/off-chain in a seamless space; account abstraction acting as a DAO, multi-sig or single party with numerous features for managing assets and payouts, and(or) communities.", "explorer": "https://bscscan.com/token/0x039cb485212f996a9dbb85a9a75d898f94d38da6", "id": "0x039cB485212f996A9DBb85A9a75d898F94d38dA6", "status": "active", "links": [ { "name": "github", - "url": "https://github.com/dexe-network/dexe" + "url": "https://github.com/dexe-network/DeXe-Protocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/DexeNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dexe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dexe" + }, + { + "name": "telegram", + "url": "https://t.me/dexe_network_official_chat" } + ], + "tags": [ + "governance", + "defi" ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/logo.png b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/logo.png index 0ca575a8134dc..9b717a971bca4 100644 Binary files a/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/logo.png and b/blockchains/smartchain/assets/0x039cB485212f996A9DBb85A9a75d898F94d38dA6/logo.png differ diff --git a/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/info.json b/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/info.json index e300973430745..e6816790fd4ba 100644 --- a/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/info.json +++ b/blockchains/smartchain/assets/0x04756126F044634C9a0f0E985e60c88a51ACC206/info.json @@ -20,7 +20,6 @@ ], "tags": [ "defi", - "staking", - "staking-native" + "staking" ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/info.json b/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/info.json new file mode 100644 index 0000000000000..a8d25f443c9a4 --- /dev/null +++ b/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/info.json @@ -0,0 +1,33 @@ +{ + "id": "0x05311d9aA0E17D1071986146CeD510C85c71B52f", + "name": "DOGITA", + "website": "https://dogita.io", + "description": "It emerged on the market to become the biggest Memecoin than other dogs. Everyone else will lick their own asses with jealousy.", + "explorer": "https://bscscan.com/token/0x05311d9aA0E17D1071986146CeD510C85c71B52f", + "symbol": "DOGA", + "type": "BEP20", + "decimals": 18, + "holders": 10078, + "status": "active", + "tags": [ + "memes" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/dogita" + }, + { + "name": "twitter", + "url": "https://twitter.com/missdogita" + }, + { + "name": "telegram", + "url": "https://t.me/Dogitaofficial" + }, + { + "name": "whitepaper", + "url": "https://dogita.gitbook.io/dogita-whitepaper/" + } + ] +} diff --git a/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/logo.png b/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/logo.png new file mode 100644 index 0000000000000..63c3e14390294 Binary files /dev/null and b/blockchains/smartchain/assets/0x05311d9aA0E17D1071986146CeD510C85c71B52f/logo.png differ diff --git a/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/info.json b/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/info.json index b97f4217b2e1b..fb5c24c53e854 100644 --- a/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/info.json +++ b/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/info.json @@ -1,21 +1,21 @@ { - "name": "Hay Stablecoin", + "name": "Lista USD", "type": "BEP20", - "symbol": "HAY", + "symbol": "lisUSD", "decimals": 18, - "website": "https://helio.money/", - "description": "The Helio.Money protocol, powered by the BNB chain, introduces an innovative architecture to stablecoin minting. Helio’s stablecoin is called HAY, and it is over-collateralized with BNB tokens. To obtain HAY, the user will need to provide BNB collateral and borrow HAY against it. After that, HAY can be staked for long-term yield and transferred to other protocols to generate additional yield. HAY is over-collateralized, making its peg highly secure and comparable to the MakerDAO DAI token.", + "website": "https://lista.org/", + "description": "TWhat is Lista DAO (lisUSD)Lista DAO is a decentralized over-collateralized lending and liquid staking platform on the BNB chain.", "explorer": "https://bscscan.com/token/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5", "status": "active", "id": "0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5", "links": [ { "name": "twitter", - "url": "https://twitter.com/Helio_Money" + "url": "https://twitter.com/Lista_DAO" }, { - "name": "github", - "url": "https://github.com/helio-money" + "name": "telegram", + "url": "https://t.me/ListaDAO" } ], "tags": [ diff --git a/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/logo.png b/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/logo.png index 7ecbaf9ae621c..280d63b83b8fb 100644 Binary files a/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/logo.png and b/blockchains/smartchain/assets/0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5/logo.png differ diff --git a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json b/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json index 193894818bc29..e80b759d37866 100644 --- a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json +++ b/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/info.json @@ -6,7 +6,7 @@ "website": "https://www.aquagoat.finance/", "description": "AquaGoat Finance is a decentralized community-led eco-DeFi project, with AquaGoat acting as its DeFi alternative to conventional high-interest savings accounts.", "explorer": "https://bscscan.com/token/0x07af67b392b7a202fad8e0fbc64c34f33102165b", - "status": "active", + "status": "abandoned", "id": "0x07af67b392B7A202fAD8E0FBc64C34F33102165B", "links": [ { diff --git a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/logo.png b/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/logo.png deleted file mode 100644 index 0d294f23beb6e..0000000000000 Binary files a/blockchains/smartchain/assets/0x07af67b392B7A202fAD8E0FBc64C34F33102165B/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x08BC237aA00F275b758542c9F5c125b568bc390A/info.json b/blockchains/smartchain/assets/0x08BC237aA00F275b758542c9F5c125b568bc390A/info.json new file mode 100644 index 0000000000000..e5181f048a841 --- /dev/null +++ b/blockchains/smartchain/assets/0x08BC237aA00F275b758542c9F5c125b568bc390A/info.json @@ -0,0 +1,21 @@ +{ + "name": "Quidax Token", + "website": "https://quidax.com", + "description": "Quidax is an Africa-focused and globally accessible crypto exchange and the global home of BEP20 tokens.", + "explorer": "https://bscscan.com/token/0x08bc237aa00f275b758542c9f5c125b568bc390a", + "type": "BEP20", + "symbol": "QDX", + "decimals": 18, + "status": "active", + "id": "0x08BC237aA00F275b758542c9F5c125b568bc390A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/QuidaxGlobal" + }, + { + "name": "telegram", + "url": "https://t.me/QDXToken" + } + ] +} diff --git a/blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/logo.png b/blockchains/smartchain/assets/0x08BC237aA00F275b758542c9F5c125b568bc390A/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/logo.png rename to blockchains/smartchain/assets/0x08BC237aA00F275b758542c9F5c125b568bc390A/logo.png diff --git a/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/info.json b/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/info.json new file mode 100644 index 0000000000000..6d3ff8fd69087 --- /dev/null +++ b/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/info.json @@ -0,0 +1,21 @@ +{ + "name": "Childrens Aid Foundation", + "type": "BEP20", + "symbol": "CAF", + "decimals": 18, + "website": "https://childaidfund.com/", + "description": "Children's Aid Foundation is a public welfare MEME coin that uses transaction tax revenue to assist children or organizations needing assistance.", + "explorer": "https://bscscan.com/token/0x096985703F584B9444CE9730B600fC39De29ccc8", + "status": "active", + "id": "0x096985703F584B9444CE9730B600fC39De29ccc8", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/childrens-aid-foundation/" + }, + { + "name": "twitter", + "url": "https://twitter.com/ChildAidFund" + } + ] + } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/logo.png b/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/logo.png new file mode 100644 index 0000000000000..64db6f6f3838d Binary files /dev/null and b/blockchains/smartchain/assets/0x096985703F584B9444CE9730B600fC39De29ccc8/logo.png differ diff --git a/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/info.json b/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/info.json index 1447690840340..508a64a0e88a5 100644 --- a/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/info.json +++ b/blockchains/smartchain/assets/0x09E889BB4D5b474f561db0491C38702F367A4e4d/info.json @@ -8,9 +8,6 @@ "decimals": 18, "status": "active", "id": "0x09E889BB4D5b474f561db0491C38702F367A4e4d", - "tags": [ - "staking-native" - ], "links": [ { "name": "github", @@ -25,4 +22,4 @@ "url": "https://medium.com/@clv_org" } ] -} +} diff --git a/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json b/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/info.json new file mode 100644 index 0000000000000..8e68d0a01bc3c --- /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 0000000000000..5dd9cbe12c479 Binary files /dev/null and b/blockchains/smartchain/assets/0x0B6f3eA2814F3FFf804bA5D5c237aebbc364fba9/logo.png differ diff --git a/blockchains/smartchain/assets/0x0DF0587216a4a1bB7d5082fdc491d93d2dD4B413/info.json b/blockchains/smartchain/assets/0x0DF0587216a4a1bB7d5082fdc491d93d2dD4B413/info.json new file mode 100644 index 0000000000000..ff88550f8c4d9 --- /dev/null +++ b/blockchains/smartchain/assets/0x0DF0587216a4a1bB7d5082fdc491d93d2dD4B413/info.json @@ -0,0 +1,17 @@ +{ + "name": "Cheems", + "type": "BEP20", + "symbol": "Cheems", + "decimals": 18, + "website": "https://cheems.pet/", + "description": "“Cheems” is the lord of memes, a small, pitiful, helpless Shiba Inu.", + "explorer": "https://bscscan.com/token/0x0df0587216a4a1bb7d5082fdc491d93d2dd4b413", + "status": "active", + "id": "0x0DF0587216a4a1bB7d5082fdc491d93d2dD4B413", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LordCheems_bsc" + } + ] +} diff --git a/blockchains/smartchain/assets/0x0DF0587216a4a1bB7d5082fdc491d93d2dD4B413/logo.png b/blockchains/smartchain/assets/0x0DF0587216a4a1bB7d5082fdc491d93d2dD4B413/logo.png new file mode 100644 index 0000000000000..423837600e608 Binary files /dev/null and b/blockchains/smartchain/assets/0x0DF0587216a4a1bB7d5082fdc491d93d2dD4B413/logo.png differ diff --git a/blockchains/smartchain/assets/0x0DbCec4214d7E9c316e0eB53991a43F42F432e15/info.json b/blockchains/smartchain/assets/0x0DbCec4214d7E9c316e0eB53991a43F42F432e15/info.json new file mode 100644 index 0000000000000..4520692e89ff9 --- /dev/null +++ b/blockchains/smartchain/assets/0x0DbCec4214d7E9c316e0eB53991a43F42F432e15/info.json @@ -0,0 +1,62 @@ +{ + "name": "FxBox", + "type": "BEP20", + "symbol": "FXB", + "decimals": 18, + "website": "https://fxbox.io", + "description": "FxBox.io - Play 2 Earn Financial Games. Investing, Mining NFTs, Trading, Lottery, Market Predictions.", + "explorer": "https://bscscan.com/token/0x0dbcec4214d7e9c316e0eb53991a43f42f432e15", + "status": "active", + "id": "0x0DbCec4214d7E9c316e0eB53991a43F42F432e15", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/FxBox_Official" + }, + { + "name": "telegram", + "url": "https://t.me/FxBox_Official" + }, + { + "name": "forum", + "url": "https://bitcointalk.org/index.php?topic=5450582.msg62166360#msg62166360" + }, + { + "name": "telegram_news", + "url": "https://t.me/FxBox_news" + }, + { + "name": "docs", + "url": "https://docs.fxbox.io/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@FxBox_io" + }, + { + "name": "discord", + "url": "https://discord.com/invite/mwQ4UUbdN3" + }, + { + "name": "github", + "url": "https://github.com/fxbox-io" + }, + { + "name": "whitepaper", + "url": "https://docs.fxbox.io/" + }, + { + "name": "medium", + "url": "https://medium.com/@fxbox" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fxbox-io" + } + ], + "tags": [ + "gamefi", + "nft", + "dapp" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0DbCec4214d7E9c316e0eB53991a43F42F432e15/logo.png b/blockchains/smartchain/assets/0x0DbCec4214d7E9c316e0eB53991a43F42F432e15/logo.png new file mode 100644 index 0000000000000..6c2bae27a9dfb Binary files /dev/null and b/blockchains/smartchain/assets/0x0DbCec4214d7E9c316e0eB53991a43F42F432e15/logo.png differ diff --git a/blockchains/smartchain/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/info.json b/blockchains/smartchain/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/info.json new file mode 100644 index 0000000000000..36df376c0339a --- /dev/null +++ b/blockchains/smartchain/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Catboy", + "type": "BEP20", + "symbol": "CATBOY", + "decimals": 18, + "website": "https://www.catboy.io/", + "description": "Catboy is an NFT project with a fusion of meme & anime, while 'catified.' With reward utilities & innovative and Interactive NFTs with AI integration.", + "explorer": "https://bscscan.com/token/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6", + "status": "active", + "id": "0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/catboy_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cat-boy/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/logo.png b/blockchains/smartchain/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/logo.png new file mode 100644 index 0000000000000..585e18c89e9c2 Binary files /dev/null and b/blockchains/smartchain/assets/0x0DceE5F694E492F0DD842a7FBE5BEd4C6E4665a6/logo.png differ diff --git a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json b/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json index 2e00d5ae1a36e..0d35200ff257a 100644 --- a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json +++ b/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/info.json @@ -6,6 +6,6 @@ "website": "https://www.ryoshitoken.com", "description": "Ryoshi is a deflationary, community driven meme token that came to take over the meme game. With 10% burn from every transaction that decreases the supply and increases the demand you can kick back and watch your RYOSHI value grow.", "explorer": "https://bscscan.com/token/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9", - "status": "active", + "status": "abandoned", "id": "0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/logo.png b/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/logo.png deleted file mode 100644 index f1767d54665b1..0000000000000 Binary files a/blockchains/smartchain/assets/0x0E5f989ce525acC4ee45506AF91964F7f4C9f2e9/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/info.json b/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/info.json new file mode 100644 index 0000000000000..bdbb9b85d0463 --- /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 0000000000000..2df3d0f8b9662 Binary files /dev/null and b/blockchains/smartchain/assets/0x0F9E4D49f25de22c2202aF916B681FBB3790497B/logo.png differ diff --git a/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/info.json b/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/info.json index 547ebaa9edd10..c1962c8104859 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 f531280f54fb3..0000000000000 Binary files a/blockchains/smartchain/assets/0x0b33542240d6fA323c796749F6D6869fdB7F13cA/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5/info.json b/blockchains/smartchain/assets/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5/info.json new file mode 100644 index 0000000000000..520c53b1b8a53 --- /dev/null +++ b/blockchains/smartchain/assets/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5/info.json @@ -0,0 +1,32 @@ +{ + "name": "SportPoint", + "type": "BEP20", + "symbol": "POINT", + "decimals": 18, + "website": "https://sportpoint.app/", + "description": "Sport and Booking: SportPoint offers a unified subscription for all gyms and sports activities. Enjoy easy booking of training sessions worldwide and find the most convenient sports locations using GPS. Pay only for actual visits.", + "explorer": "https://bscscan.com/token/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5", + "status": "active", + "id": "0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SportPoint_app" + }, + { + "name": "youtube", + "url": "https://youtube.com/watch?v=Fem9Bnsh37c" + }, + { + "name": "telegram", + "url": "https://t.me/SportPoint_Token" + }, + { + "name": "docs", + "url": "https://sportpoint.app/docs/wp_sportpoint.pdf" + } + ], + "tags": [ + "staking-native" + ] +} diff --git a/blockchains/smartchain/assets/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5/logo.png b/blockchains/smartchain/assets/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5/logo.png new file mode 100644 index 0000000000000..ac668f14a8df1 Binary files /dev/null and b/blockchains/smartchain/assets/0x0cF453DC7EA21ef8FdfFC1B14Cb848E1e3884Be5/logo.png differ diff --git a/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json b/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/info.json index d1d85124e3878..c79469c281ca1 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 a5ad8a61f1d77..0000000000000 Binary files a/blockchains/smartchain/assets/0x10f6f2b97F3aB29583D9D38BaBF2994dF7220C21/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json b/blockchains/smartchain/assets/0x1294f4183763743c7c9519Bec51773fb3aCD78FD/info.json new file mode 100644 index 0000000000000..111f30c736b67 --- /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 0000000000000..9939ad9e03215 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 52cdc7da27fd1..58a03890f560f 100644 --- a/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/info.json +++ b/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/info.json @@ -7,6 +7,6 @@ "type": "BEP20", "symbol": "AVA", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/logo.png b/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/logo.png deleted file mode 100644 index f0cfeef3b5e97..0000000000000 Binary files a/blockchains/smartchain/assets/0x13616F44Ba82D63c8C0DC3Ff843D36a8ec1c05a9/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595/info.json b/blockchains/smartchain/assets/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595/info.json new file mode 100644 index 0000000000000..7b020b512e0d1 --- /dev/null +++ b/blockchains/smartchain/assets/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595/info.json @@ -0,0 +1,32 @@ +{ + "name": "Moriarty", + "type": "BEP20", + "symbol": "///M3GA", + "decimals": 18, + "website": "https://m3ga.group", + "description": "My first coin... Professor Moriarty", + "explorer": "https://bscscan.com/token/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595", + "status": "active", + "id": "0x13aAC25C16a8c1FA93D78C4026CEE7166403A595", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Moriarty_M3GA" + }, + { + "name": "github", + "url": "https://github.com/Moriartycoin" + }, + { + "name": "telegram", + "url": "https://t.me/m3ga_coin" + }, + { + "name": "docs", + "url": "https://m3ga.group/whitepepar" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595/logo.png b/blockchains/smartchain/assets/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595/logo.png new file mode 100644 index 0000000000000..6b7db50243b61 Binary files /dev/null and b/blockchains/smartchain/assets/0x13aAC25C16a8c1FA93D78C4026CEE7166403A595/logo.png differ diff --git a/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json b/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json index 305717929a76f..2024d547851f6 100644 --- a/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json +++ b/blockchains/smartchain/assets/0x14016E85a25aeb13065688cAFB43044C2ef86784/info.json @@ -1,9 +1,9 @@ { - "name": "BNB pegged TrueUSD", + "name": "BNB pegged TrueUSD Old", "website": "https://www.trueusd.com/", "description": "BNB pegged TrueUSD (TUSDP BEP20) is a token issued by Binance on Smart Chain; its price is pegged to TrueUSD (TUSD ERC20) at a ratio of 1:1.", "explorer": "https://bscscan.com/token/0x14016e85a25aeb13065688cafb43044c2ef86784", - "symbol": "TUSD", + "symbol": "TUSDOLD", "type": "BEP20", "decimals": 18, "status": "active", diff --git a/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json new file mode 100644 index 0000000000000..9f82501ede979 --- /dev/null +++ b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/info.json @@ -0,0 +1,25 @@ +{ + "name": "CyberConnect", + "type": "BEP20", + "symbol": "CYBER", + "decimals": 18, + "website": "https://cyberconnect.me/", + "description": "CyberConnect is a Web3 social network that enables developers to create social applications empowering users to own their digital identity, content, connections, and interactions.", + "explorer": "https://bscscan.com/token/0x14778860e937f509e651192a90589de711fb88a9", + "status": "active", + "id": "0x14778860E937f509e651192a90589dE711Fb88a9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CyberConnectHQ" + }, + { + "name": "github", + "url": "https://github.com/cyberconnecthq" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cyberconnect/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png new file mode 100644 index 0000000000000..b26b7b808fb16 Binary files /dev/null and b/blockchains/smartchain/assets/0x14778860E937f509e651192a90589dE711Fb88a9/logo.png differ diff --git a/blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/info.json b/blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/info.json index 786a37022bd81..d4b5cc94f4f71 100644 --- a/blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/info.json +++ b/blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/info.json @@ -6,7 +6,7 @@ "website": "https://revomon.io/", "description": "Revomon is an exciting online RPG that combines an immersive virtual reality experience with groundbreaking NFT blockchain technology.", "explorer": "https://bscscan.com/token/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409", - "status": "active", + "status": "abandoned", "id": "0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409", "links": [ { diff --git a/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/info.json b/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/info.json new file mode 100644 index 0000000000000..04d74844bd8ad --- /dev/null +++ b/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/info.json @@ -0,0 +1,54 @@ +{ + "name": "GAMER", + "type": "BEP20", + "symbol": "GMR", + "decimals": 18, + "website": "https://gmr.center", + "description": "GMR: The nexus of gaming and blockchain. Trade, play, interact, and thrive in a digital world powered by the $GMR token.", + "explorer": "https://bscscan.com/token/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a", + "status": "active", + "id": "0x168e3b1746Aa249a9b3603B70605924fE255Ee1a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GMRCenter" + }, + { + "name": "github", + "url": "https://github.com/gmr-center" + }, + { + "name": "telegram", + "url": "https://t.me/gmrcenter" + }, + { + "name": "docs", + "url": "https://whitepaper.gmr.center/" + }, + { + "name": "discord", + "url": "https://discord.com/invite/gmrcenter" + }, + { + "name": "facebook", + "url": "https://facebook.com/gmrcenterofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gamer" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gamer" + }, + { + "name": "youtube", + "url": "https://youtube.com/GMRCenter" + } + ], + "tags": [ + "nft", + "defi", + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/logo.png b/blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/logo.png rename to blockchains/smartchain/assets/0x168e3b1746Aa249a9b3603B70605924fE255Ee1a/logo.png diff --git a/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/logo.png b/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/logo.png index dadb7d64ac019..7d878a83e07b4 100644 Binary files a/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/logo.png and b/blockchains/smartchain/assets/0x16E79E09b3B56BCBBA83667aFf88dc6ca727Af2e/logo.png differ diff --git a/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/info.json b/blockchains/smartchain/assets/0x16faF9DAa401AA42506AF503Aa3d80B871c467A3/info.json new file mode 100644 index 0000000000000..eac07c646a0a8 --- /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 0000000000000..6bdb6e723dfcf 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 0000000000000..fd5f3e7c36544 --- /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 0000000000000..865b51baa5010 Binary files /dev/null and b/blockchains/smartchain/assets/0x19e6BfC1A6e4B042Fb20531244D47E252445df01/logo.png differ diff --git a/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json b/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/info.json new file mode 100644 index 0000000000000..eb33d4eaf3e8b --- /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 0000000000000..b86b0fca332ad Binary files /dev/null and b/blockchains/smartchain/assets/0x1a3264F2e7b1CFC6220ec9348d33cCF02Af7aaa4/logo.png differ diff --git a/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/info.json b/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/info.json new file mode 100644 index 0000000000000..b83105fced9f0 --- /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 0000000000000..06aaba01c44a9 Binary files /dev/null and b/blockchains/smartchain/assets/0x201bC9F242f74C47Bbd898a5DC99cDCD81A21943/logo.png differ diff --git a/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/info.json b/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/info.json new file mode 100644 index 0000000000000..3a5989fdab093 --- /dev/null +++ b/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/info.json @@ -0,0 +1,21 @@ +{ + "name": "CREDI", + "website": "https://credefi.finance/", + "description": "Credefi connects crypto lenders with SME borrowers from the fiat economy. Their platform enables decentralized and secured lending to portfolios of businesses, protecting lenders while providing them fixed APY that is uncorrelated with crypto markets’ volatility.", + "explorer": "https://bscscan.com/token/0x2235e79086dd23135119366da45851c741874e5b", + "type": "BEP20", + "symbol": "CREDI", + "decimals": 18, + "status": "active", + "id": "0x2235e79086dd23135119366da45851c741874e5B", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/credefi_finance" + }, + { + "name": "telegram", + "url": "https://t.me/credefi" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/logo.png b/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/logo.png new file mode 100644 index 0000000000000..7054bba0e5bea Binary files /dev/null and b/blockchains/smartchain/assets/0x2235e79086dd23135119366da45851c741874e5B/logo.png differ diff --git a/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/info.json b/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/info.json new file mode 100644 index 0000000000000..b0514fb2aa9a0 --- /dev/null +++ b/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/info.json @@ -0,0 +1,28 @@ +{ + "name": "Dalarnia", + "type": "BEP20", + "symbol": "DAR", + "decimals": 6, + "website": "https://www.minesofdalarnia.com", + "description": "Mines of Dalarnia is an action-adventure game. Players mine and combine various in-game items, improving their skills and gear to unlock the MoD universe's secrets while fighting enemies and searching for rare relics and artifacts.", + "explorer": "https://bscscan.com/token/0x23ce9e926048273ef83be0a3a8ba9cb6d45cd978", + "status": "active", + "id": "0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MinesOfDalarnia" + }, + { + "name": "twitter", + "url": "https://twitter.com/MinesOfDalarnia" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mines-of-dalarnia/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/logo.png b/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/logo.png new file mode 100644 index 0000000000000..c8e37a57ef89c Binary files /dev/null and b/blockchains/smartchain/assets/0x23CE9e926048273eF83be0A3A8Ba9Cb6D45cd978/logo.png differ diff --git a/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/info.json b/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/info.json new file mode 100644 index 0000000000000..b6faae92ae148 --- /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 0000000000000..244e0aba97ab0 Binary files /dev/null and b/blockchains/smartchain/assets/0x2598c30330D5771AE9F983979209486aE26dE875/logo.png differ diff --git a/blockchains/smartchain/assets/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1/info.json b/blockchains/smartchain/assets/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1/info.json new file mode 100644 index 0000000000000..db0e0578442de --- /dev/null +++ b/blockchains/smartchain/assets/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1/info.json @@ -0,0 +1,36 @@ +{ + "name": "WibeGram", + "type": "BEP20", + "symbol": "WIBE", + "decimals": 18, + "website": "https://wibegram.com/", + "description": "Wibegram offers advanced encryption to protect your conversations from unauthorized access. Our end-to-end encryption ensures that only you and the intended recipient can read your messages.", + "explorer": "https://bscscan.com/token/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1", + "status": "active", + "id": "0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/wibegram" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wibegram/" + }, + { + "name": "telegram", + "url": "https://t.me/wibegram" + }, + { + "name": "github", + "url": "https://github.com/Wibegram/" + }, + { + "name": "docs", + "url": "https://wibegram.com/WhitePaper.pdf" + } + ], + "tags": [ + "dapp" + ] +} diff --git a/blockchains/smartchain/assets/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1/logo.png b/blockchains/smartchain/assets/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1/logo.png new file mode 100644 index 0000000000000..681d66443ceb2 Binary files /dev/null and b/blockchains/smartchain/assets/0x25d624E571d6d7B32729B11DdbbD96Fe89Af44E1/logo.png differ diff --git a/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/info.json b/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/info.json new file mode 100644 index 0000000000000..4afb4e3700041 --- /dev/null +++ b/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/info.json @@ -0,0 +1,36 @@ +{ + "name": "Evin Token", + "type": "BEP20", + "symbol": "EVIN", + "decimals": 18, + "website": "https://www.evintoken.com", + "description": "Evin Token is AI Based Healty Life Assistant. Withness to Power of the Community !", + "explorer": "https://bscscan.com/token/0x269b7a30497f92ebf307e7467fd4f1210a6c36b6", + "status": "active", + "id": "0x269B7A30497F92EBf307e7467fD4F1210a6C36b6", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/evintoken" + }, + { + "name": "telegram", + "url": "https://t.me/KriptoEvin" + }, + { + "name": "whitepaper", + "url": "https://www.evintoken.com/documents/WhitePaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/evin-token/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@EvinToken" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/logo.png b/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/logo.png new file mode 100644 index 0000000000000..9eed81da95852 Binary files /dev/null and b/blockchains/smartchain/assets/0x269B7A30497F92EBf307e7467fD4F1210a6C36b6/logo.png differ diff --git a/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/info.json b/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/info.json new file mode 100644 index 0000000000000..6a24098a89529 --- /dev/null +++ b/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/info.json @@ -0,0 +1,24 @@ +{ + "name": "YO EXCHANGE", + "type": "BEP20", + "symbol": "YOEX", + "decimals": 12, + "website": "https://yoex.io/", + "description": " WE BUILT A CRYPTO PLATFORM TO BUY & SELL Crypto Asset. And this is quite understandable. However, there is a fine point that often gets neglected - the coins or tokens without strong project support are very unlikely to reach the moon with YOEX. That’s why we are here - to make this real. We combined a substantial tokenomic and true projects that have use cases.", + "explorer": "https://bscscan.com/token/0x26c98b27ab51af12c616d2d2eb99909b6bde6dde", + "status": "active", + "id": "0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/yo_exchange" + }, + { + "name": "telegram", + "url": "https://t.me/yoexchange" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/logo.png b/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/logo.png new file mode 100644 index 0000000000000..c11bf96e67591 Binary files /dev/null and b/blockchains/smartchain/assets/0x26C98b27aB51Af12C616d2D2Eb99909B6BDE6dde/logo.png differ diff --git a/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/info.json b/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/info.json index 7068adf7df11f..821cedf302f1e 100644 --- a/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/info.json +++ b/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/info.json @@ -1,7 +1,7 @@ { "name": "CumRocket", "website": "https://cumrocket.io", - "description": "CumRocket (CUMMIES) is a deflationary token used for purchasing adult content on their NSFW platform. Users are able to buy, sell and collect 18+ NFTs from their favourite models, as well as chat, tip and subscribe to exclusive content. 5% tax on every transaction - 2.5% burn, 2.5% redistribution.", + "description": "One of the most viral coins in history!", "explorer": "https://bscscan.com/token/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d", "type": "BEP20", "symbol": "CUMMIES", @@ -9,7 +9,6 @@ "status": "active", "id": "0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d", "tags": [ - "deflationary" ], "links": [ { @@ -29,8 +28,8 @@ "url": "https://reddit.com/r/CumRocket/" }, { - "name": "medium", - "url": "https://cumrocket.medium.com/" + "name": "docs", + "url": "https://cumrocket.gitbook.io/cumrocket" } ] -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/logo.png b/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/logo.png index 4662728d3648e..d41c7ff827e4b 100644 Binary files a/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/logo.png and b/blockchains/smartchain/assets/0x27Ae27110350B98d564b9A3eeD31bAeBc82d878d/logo.png differ diff --git a/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json b/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json index a6f7eb11088c8..5b9783b8bb259 100644 --- a/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json +++ b/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/info.json @@ -6,6 +6,6 @@ "description": "Decentralized system designed to build a data oracle network based on an open protocol for interaction between participants and a sustainable economy.", "website": "https://odinprotocol.io/", "explorer": "https://bscscan.com/token/0x2802eb3a20f5892956d5b9528f6bf13e648534db", - "status": "active", + "status": "abandoned", "id": "0x2802eb3a20f5892956D5B9528F6Bf13E648534DB" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/logo.png b/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/logo.png deleted file mode 100644 index 3793f994e3a0f..0000000000000 Binary files a/blockchains/smartchain/assets/0x2802eb3a20f5892956D5B9528F6Bf13E648534DB/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E/info.json b/blockchains/smartchain/assets/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E/info.json new file mode 100644 index 0000000000000..51607d063c1c5 --- /dev/null +++ b/blockchains/smartchain/assets/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E/info.json @@ -0,0 +1,21 @@ +{ + "name": "BlackCardCoin", + "website": "https://blackcardcoin.com/", + "description": "$BCCoin BlackCardCoin is the essential cryptocurrency you need to get your hands on a BlackCard, offering a unique approach to spending and earning in the digital age.", + "explorer": "https://bscscan.com/token/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E", + "type": "BEP20", + "symbol": "BCCoin", + "decimals": 18, + "status": "active", + "id": "0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BlackCardCoin" + }, + { + "name": "telegram", + "url": "https://t.me/official_BCcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E/logo.png b/blockchains/smartchain/assets/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E/logo.png new file mode 100644 index 0000000000000..3f7a083b9212c Binary files /dev/null and b/blockchains/smartchain/assets/0x2940566Eb50F15129238f4Dc599ADC4F742D7d8E/logo.png differ diff --git a/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/info.json b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/info.json new file mode 100644 index 0000000000000..bd96d89c46f0d --- /dev/null +++ b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/info.json @@ -0,0 +1,48 @@ +{ + "name": "X AI", + "type": "BEP20", + "symbol": "X", + "decimals": 9, + "website": "https://xai.cx", + "description": "X AI is an application that leverages artificial intelligence and machine learning algorithms to create distinct digital assets that can be sold as Non-Fungible Tokens.", + "explorer": "https://bscscan.com/token/0x2A45a892877Ef383c5fc93A5206546c97496da9e", + "status": "active", + "id": "0x2A45a892877Ef383c5fc93A5206546c97496da9e", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/xai_tech" + }, + { + "name": "github", + "url": "https://github.com/xai-cx" + }, + { + "name": "telegram", + "url": "https://t.me/xai_english" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x2a45a892877ef383c5fc93a5206546c97496da9e#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/x-ai-cx/" + }, + { + "name": "docs", + "url": "https://docs.xai.cx" + }, + { + "name": "whitepaper", + "url": "https://docs.xai.cx" + }, + { + "name": "medium", + "url": "https://medium.com/@XAI_tech" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/logo.png b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/logo.png new file mode 100644 index 0000000000000..31887729ff3aa Binary files /dev/null and b/blockchains/smartchain/assets/0x2A45a892877Ef383c5fc93A5206546c97496da9e/logo.png differ diff --git a/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/info.json b/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/info.json new file mode 100644 index 0000000000000..17d578df13669 --- /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 0000000000000..224d299befbfb Binary files /dev/null and b/blockchains/smartchain/assets/0x2B72867c32CF673F7b02d208B26889fEd353B1f8/logo.png differ diff --git a/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/info.json b/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/info.json new file mode 100644 index 0000000000000..8c9ec01608a66 --- /dev/null +++ b/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/info.json @@ -0,0 +1,62 @@ +{ + "name": "VinuChain", + "type": "BEP20", + "symbol": "VC", + "decimals": 18, + "website": "https://vinuchain.org", + "description": "VinuChain (VC) is a groundbreaking layer-1 blockchain project that encompasses the best of both worlds - innovation and scalability. As a DAG-based EVM chain, VinuChain boasts one-second finality and near-infinite scalability at a fraction of the cost of traditional blockchains, or zero cost to users who stake.", + "explorer": "https://bscscan.com/token/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751", + "status": "active", + "id": "0x2Bf83D080d8Bc4715984e75E5b3D149805d11751", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/vinuchain" + }, + { + "name": "github", + "url": "https://github.com/vinuchain" + }, + { + "name": "telegram", + "url": "https://t.me/vitainu" + }, + { + "name": "telegram_news", + "url": "https://t.me/vinu_news" + }, + { + "name": "medium", + "url": "https://medium.com/vinuchain" + }, + { + "name": "discord", + "url": "https://discord.com/invite/vinu" + }, + { + "name": "whitepaper", + "url": "https://vinu.gitbook.io/vinuchain/whitepaper/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vinuchain/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vinuchain" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751#code" + } + ], + "tags": [ + "memes", + "defi", + "staking", + "staking-native", + "nft", + "governance", + "wrapped" + ] +} diff --git a/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/logo.png b/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/logo.png new file mode 100644 index 0000000000000..8bd1c642f9e42 Binary files /dev/null and b/blockchains/smartchain/assets/0x2Bf83D080d8Bc4715984e75E5b3D149805d11751/logo.png differ diff --git a/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/info.json b/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/info.json new file mode 100644 index 0000000000000..d41f682747695 --- /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 0000000000000..5e3bf6cc275a1 Binary files /dev/null and b/blockchains/smartchain/assets/0x2D060Ef4d6BF7f9e5edDe373Ab735513c0e4F944/logo.png differ diff --git a/blockchains/smartchain/assets/0x2D8269Dae518e78D95110dbFADf1fb479b8152e7/info.json b/blockchains/smartchain/assets/0x2D8269Dae518e78D95110dbFADf1fb479b8152e7/info.json new file mode 100644 index 0000000000000..ffb27e27f0c06 --- /dev/null +++ b/blockchains/smartchain/assets/0x2D8269Dae518e78D95110dbFADf1fb479b8152e7/info.json @@ -0,0 +1,36 @@ +{ + "name": "GCCOIN", + "website": "https://www.gccoin.io/", + "description": "GCCoin aims to bring the excitement of cryptocurrency to users worldwide. With GCCoin, you can buy and sell over 400+ cryptocurrencies, send funds globally within seconds, and enjoy peer-to-peer transactions in your local currency. Our mission is to create a decentralized ecosystem that becomes the number one crypto exchange, ensuring seamless and secure transactions.", + "explorer": "https://bscscan.com/token/0x2d8269dae518e78d95110dbfadf1fb479b8152e7", + "type": "BEP20", + "symbol": "GCC", + "decimals": 9, + "status": "active", + "id": "0x2D8269Dae518e78D95110dbFADf1fb479b8152e7", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/thegccoin" + }, + { + "name": "twitter", + "url": "https://twitter.com/theGCCOIN" + }, + { + "name": "whitepaper", + "url": "https://gccoin-whitepaper.gitbook.io/gccoin-whitepaper/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/gccoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gccoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2D8269Dae518e78D95110dbFADf1fb479b8152e7/logo.png b/blockchains/smartchain/assets/0x2D8269Dae518e78D95110dbFADf1fb479b8152e7/logo.png new file mode 100644 index 0000000000000..a78838d3d24f6 Binary files /dev/null and b/blockchains/smartchain/assets/0x2D8269Dae518e78D95110dbFADf1fb479b8152e7/logo.png differ diff --git a/blockchains/smartchain/assets/0x2E8138054D64917703Af28D81629499318a047FA/info.json b/blockchains/smartchain/assets/0x2E8138054D64917703Af28D81629499318a047FA/info.json new file mode 100644 index 0000000000000..8efa9797c1edb --- /dev/null +++ b/blockchains/smartchain/assets/0x2E8138054D64917703Af28D81629499318a047FA/info.json @@ -0,0 +1,41 @@ +{ + "name": "Apex Token", + "type": "BEP20", + "symbol": "APX", + "decimals": 18, + "website": "https://apextoken.io/", + "description": "A Token on mission to become a Crypto Index on the market.ApexToken is the World’s 1st Multi Crypto Trading Platform That Offers Guarnteed ROI. A cryptocurrency investment firm that manages portfolios for its clients, providing them with exposure to a diversified range of cryptocurrencies.", + "explorer": "https://bscscan.com/token/0x2E8138054D64917703Af28D81629499318a047FA", + "status": "active", + "id": "0x2E8138054D64917703Af28D81629499318a047FA", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ApexToken" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UC4yoDCTSkKuDExNYP-ospyg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apextoken/" + }, + { + "name": "whitepaper", + "url": "https://apextoken.io/whitepaper.pdf" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x2e8138054d64917703af28d81629499318a047fa#code#L1" + }, + { + "name": "docs", + "url": "https://dessertswap.finance/audits/APX-BSC-AUDIT-38616895.pdf" + } + ], + "tags": [ + "defi", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x2E8138054D64917703Af28D81629499318a047FA/logo.png b/blockchains/smartchain/assets/0x2E8138054D64917703Af28D81629499318a047FA/logo.png new file mode 100644 index 0000000000000..e1129be81c260 Binary files /dev/null and b/blockchains/smartchain/assets/0x2E8138054D64917703Af28D81629499318a047FA/logo.png differ diff --git a/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/info.json b/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/info.json new file mode 100644 index 0000000000000..43cd811f3dc36 --- /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 0000000000000..3b03b1af2da70 Binary files /dev/null and b/blockchains/smartchain/assets/0x2e53414853f058A9BC14E052431008483bD85B4c/logo.png differ diff --git a/blockchains/smartchain/assets/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/info.json b/blockchains/smartchain/assets/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/info.json new file mode 100644 index 0000000000000..bc161b2a92cb6 --- /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 0000000000000..d65485b25e965 Binary files /dev/null and b/blockchains/smartchain/assets/0x30B5E345C79255101B8af22a19805A6fb96DdEBb/logo.png differ diff --git a/blockchains/smartchain/assets/0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd/info.json b/blockchains/smartchain/assets/0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd/info.json new file mode 100644 index 0000000000000..24ece82ff34bf --- /dev/null +++ b/blockchains/smartchain/assets/0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd/info.json @@ -0,0 +1,55 @@ +{ + "id": "0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd", + "type": "BEP20", + "name": "ApeBond", + "website": "https://ape.bond/", + "description": "ApeBond is a multichain DeFi Hub offering an accessible, transparent, and secure experience for everyone.", + "explorer": "https://bscscan.com/token/0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd", + "symbol": "ABOND", + "decimals": 18, + "status": "active", + "tags": [ + "staking", + "dapp", + "governance", + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ApeBond" + }, + { + "name": "github", + "url": "https://github.com/ApeSwapFinance" + }, + { + "name": "telegram", + "url": "https://t.me/ape_bond" + }, + { + "name": "telegram_news", + "url": "https://t.me/ApeBond_News" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/apebond/" + }, + { + "name": "docs", + "url": "https://docs.ape.bond/apebond" + }, + { + "name": "discord", + "url": "https://discord.com/invite/g3A5T6VSFr" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Apeswap" + }, + { + "name": "medium", + "url": "https://ApeBond.medium.com" + } + ] +} diff --git a/blockchains/smartchain/assets/0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd/logo.png b/blockchains/smartchain/assets/0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd/logo.png new file mode 100644 index 0000000000000..b7a64a3b8e705 Binary files /dev/null and b/blockchains/smartchain/assets/0x34294AfABCbaFfc616ac6614F6d2e17260b78BEd/logo.png differ diff --git a/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/info.json b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/info.json new file mode 100644 index 0000000000000..a11876fd04f13 --- /dev/null +++ b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/info.json @@ -0,0 +1,32 @@ +{ + "name": "Capitalrock", + "type": "BEP20", + "symbol": "CR", + "decimals": 18, + "website": "https://capitalrock.ch/", + "description": "Capital Rock Coin is a dynamic cryptocurrency introduced by the renowned forex trading firm, Capital Rock. With a global presence, boasting physical offices in ten countries, and an impressive portfolio of simultaneous dealings with 400 companies.", + "explorer": "https://bscscan.com/token/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8", + "status": "active", + "id": "0x3542a28854c5243656FA5cfA1A2811a32E28C1c8", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/capitalrockint" + }, + { + "name": "twitter", + "url": "https://twitter.com/CapitalRock_AG" + }, + { + "name": "telegram_news", + "url": "https://t.me/+WgsDY3hPuBgxY2Q6" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/capitalrock/" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/logo.png b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/logo.png new file mode 100644 index 0000000000000..fd777a3cfe819 Binary files /dev/null and b/blockchains/smartchain/assets/0x3542a28854c5243656FA5cfA1A2811a32E28C1c8/logo.png differ diff --git a/blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/info.json b/blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/info.json deleted file mode 100644 index fd1c45161c4da..0000000000000 --- a/blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/info.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "name": "PirateCash", - "type": "BEP20", - "symbol": "PIRATE", - "decimals": 8, - "website": "https://p.cash/", - "description": "PirateCash as Software-defined networking (SDN). This technology will provide good quality of service and it will be High Availability (HA), flexible and DDoS resistant network.", - "explorer": "https://bscscan.com/token/0x35f3ffffcb622bc9f64fa561d74e983fd488d90c", - "status": "active", - "id": "0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c", - "links": [ - { - "name": "twitter", - "url": "https://twitter.com/PirateCash_NET" - }, - { - "name": "telegram", - "url": "https://t.me/pcash" - }, - { - "name": "whitepaper", - "url": "https://p.cash/en#about" - }, - { - "name": "source_code", - "url": "https://bscscan.com/token/0x35f3ffffcb622bc9f64fa561d74e983fd488d90c#code" - }, - { - "name": "github", - "url": "https://github.com/piratecash" - } - ], - "tags": [ - "defi" - ] -} diff --git a/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/logo.png b/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/logo.png index fce6b5ea004e8..e428af9216608 100644 Binary files a/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/logo.png and b/blockchains/smartchain/assets/0x373E768f79c820aA441540d254dCA6d045c6d25b/logo.png differ diff --git a/blockchains/smartchain/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json b/blockchains/smartchain/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json new file mode 100644 index 0000000000000..64e817b8107e9 --- /dev/null +++ b/blockchains/smartchain/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/info.json @@ -0,0 +1,33 @@ +{ + "name": "Nya", + "type": "BEP20", + "symbol": "NYA", + "decimals": 18, + "website": "https://www.nya.vip", + "description": "Explore the cultural phenomenon of Nya - the playful cat sound that's become a symbol of joy and connection. Discover how this simple word unites fans worldwide.", + "explorer": "https://bscscan.com/token/0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "status": "active", + "id": "0x38F9bf9dCe51833Ec7f03C9dC218197999999999", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/NyaOnEarth" + }, + { + "name": "telegram", + "url": "https://t.me/NyaOnEarth" + }, + { + "name": "discord", + "url": "https://discord.com/invite/3V8gZFP5kb" + }, + { + "name": "docs", + "url": "https://wiki.nya.vip" + } + ], + "tags": [ + "memes", + "nft" + ] +} diff --git a/blockchains/smartchain/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png b/blockchains/smartchain/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png new file mode 100644 index 0000000000000..c34f31c6b2335 Binary files /dev/null and b/blockchains/smartchain/assets/0x38F9bf9dCe51833Ec7f03C9dC218197999999999/logo.png differ diff --git a/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/info.json b/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/info.json new file mode 100644 index 0000000000000..a46370ec03663 --- /dev/null +++ b/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/info.json @@ -0,0 +1,56 @@ +{ + "name": "Rabi", + "type": "BEP20", + "symbol": "RABI", + "decimals": 4, + "website": "https://rabi.foundation", + "description": "The Rabi project is a DeFi application built on the Binance Smart Chain blockchain. It generates Rabi tokens that are soft-pegged to Bitcoin, gold, oil, the US dollar, and shares of technology companies.", + "explorer": "https://bscscan.com/token/0x3D90DB6cC52E95679fb431E88B1830BA18E41889", + "status": "active", + "id": "0x3D90DB6cC52E95679fb431E88B1830BA18E41889", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/rabi_foundation" + }, + { + "name": "github", + "url": "https://github.com/Rabi-foundation" + }, + { + "name": "telegram", + "url": "https://t.me/Rabi_community" + }, + { + "name": "telegram_news", + "url": "https://t.me/Rabi_foundation" + }, + { + "name": "whitepaper", + "url": "https://rabi.foundation/download/rabifoundation_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rabi/" + }, + { + "name": "blog", + "url": "https://rabi.foundation/blog/" + }, + { + "name": "youtube", + "url": "https://youtube.com/rabi_foundation" + }, + { + "name": "facebook", + "url": "https://facebook.com/rabi_foundation" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rabi" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/logo.png b/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/logo.png new file mode 100644 index 0000000000000..173e4a0b78969 Binary files /dev/null and b/blockchains/smartchain/assets/0x3D90DB6cC52E95679fb431E88B1830BA18E41889/logo.png differ diff --git a/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/info.json b/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/info.json new file mode 100644 index 0000000000000..4cf055e16ed27 --- /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 0000000000000..350b319596134 Binary files /dev/null and b/blockchains/smartchain/assets/0x3Fa52142B7836468aEd78753e6325b2aEE7dDafe/logo.png differ diff --git a/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json b/blockchains/smartchain/assets/0x3c6DAd0475d3a1696B359dc04C99FD401BE134dA/info.json index 642daf7f9219f..b0c7158f5d2eb 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/0x3c730718C97A77562866B5D29B33228c019eAC68/info.json b/blockchains/smartchain/assets/0x3c730718C97A77562866B5D29B33228c019eAC68/info.json index 5d482cd5d437f..47a31c557123d 100644 --- a/blockchains/smartchain/assets/0x3c730718C97A77562866B5D29B33228c019eAC68/info.json +++ b/blockchains/smartchain/assets/0x3c730718C97A77562866B5D29B33228c019eAC68/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "BNBD", "decimals": 9, - "status": "active", + "status": "abandoned", "id": "0x3c730718C97A77562866B5D29B33228c019eAC68" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3c730718C97A77562866B5D29B33228c019eAC68/logo.png b/blockchains/smartchain/assets/0x3c730718C97A77562866B5D29B33228c019eAC68/logo.png deleted file mode 100644 index 57a4f4194a35d..0000000000000 Binary files a/blockchains/smartchain/assets/0x3c730718C97A77562866B5D29B33228c019eAC68/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/info.json b/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/info.json new file mode 100644 index 0000000000000..107d3b9b0bfbd --- /dev/null +++ b/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/info.json @@ -0,0 +1,17 @@ +{ + "name":"Costco Hot Dog", + "type":"BEP20", + "symbol":"COST", + "decimals": 18, + "website":"https://costcodog.xyz", + "description":"The strongest financial asset in the world. $1.50 forever and always. This is the journey there", + "explorer":"https://bscscan.com/token/0x3d36685d91b060fb0351401f27ee058311fb00c1", + "status":"active", + "id":"0x3d36685D91b060FB0351401f27eE058311fB00C1", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/CostcoDog150" + } + ] + } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/logo.png b/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/logo.png new file mode 100644 index 0000000000000..797d63ecf8d76 Binary files /dev/null and b/blockchains/smartchain/assets/0x3d36685D91b060FB0351401f27eE058311fB00C1/logo.png differ diff --git a/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/info.json b/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/info.json index 049d977c72f76..8fe307a467073 100644 --- a/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/info.json +++ b/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "VIDT", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/info.json b/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/info.json new file mode 100644 index 0000000000000..7e4166185fd23 --- /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 0000000000000..47736bb7b9f33 Binary files /dev/null and b/blockchains/smartchain/assets/0x40FfAFcd7415ed2F7A902312407181140Ad14E68/logo.png differ diff --git a/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/info.json b/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/info.json new file mode 100644 index 0000000000000..c62b76033c5c2 --- /dev/null +++ b/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/info.json @@ -0,0 +1,37 @@ +{ + "name": "BNB pegged TrueUSD", + "website": "https://www.trueusd.com/", + "description": "BNB pegged TrueUSD (TUSDP BEP20) is a token issued by Binance on Smart Chain; its price is pegged to TrueUSD (TUSD ERC20) at a ratio of 1:1.", + "explorer": "https://bscscan.com/token/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9", + "symbol": "TUSD", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9", + "tags": [ + "binance-peg", + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/trusttoken/TrueUSD" + }, + { + "name": "twitter", + "url": "https://twitter.com/tusd_official" + }, + { + "name": "telegram", + "url": "https://t.me/TUSDofficial_EN" + }, + { + "name": "medium", + "url": "https://trueusd.medium.com/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/true-usd/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/logo.png b/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/logo.png new file mode 100644 index 0000000000000..0ae677cd2bac8 Binary files /dev/null and b/blockchains/smartchain/assets/0x40af3827F39D0EAcBF4A168f8D4ee67c121D11c9/logo.png differ diff --git a/blockchains/smartchain/assets/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6/info.json b/blockchains/smartchain/assets/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6/info.json new file mode 100644 index 0000000000000..057aea60e0fbd --- /dev/null +++ b/blockchains/smartchain/assets/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6/info.json @@ -0,0 +1,21 @@ +{ + "name": "USD Coin Bridged ZED20", + "website": "https://zedscan.net/", + "description": "USDC.z, a cutting-edge stablecoin tightly linked to the US dollar, the founders of this stablecoin have 35 years of successful experience in economics and business, launched in 2024 within the ZEDX neobanking blockchain network.", + "explorer": "https://bscscan.com/token/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6", + "type": "BEP20", + "symbol": "USDC.z", + "decimals": 18, + "status": "active", + "id": "0x40f85D6040dF96ea14cD41142bcd244E14CF76f6", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zedxionc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin-bridged-zed20/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6/logo.png b/blockchains/smartchain/assets/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6/logo.png new file mode 100644 index 0000000000000..a69ab9f49f1a7 Binary files /dev/null and b/blockchains/smartchain/assets/0x40f85D6040dF96ea14cD41142bcd244E14CF76f6/logo.png differ diff --git a/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/logo.png b/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/logo.png index f76e97d0fc779..7cebaadefc4f0 100644 Binary files a/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/logo.png and b/blockchains/smartchain/assets/0x410a56541bD912F9B60943fcB344f1E3D6F09567/logo.png differ diff --git a/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json new file mode 100644 index 0000000000000..dc9ee80d80aa7 --- /dev/null +++ b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/info.json @@ -0,0 +1,21 @@ +{ + "name": "FantasyGold", + "website": "https://fantasygold.co/cgi-sys/suspendedpage.cgi", + "description": "FantasyGold was built to become a multi-purpose platform offering Ethereum Virtual Machine based smart contracts and lightning fast transactions.", + "explorer": "https://bscscan.com/token/0x41e025ea850bb4d0dcbb5b1f4353af099cbd026a", + "type": "BEP20", + "symbol": "FGC", + "decimals": 18, + "status": "active", + "id": "0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/fantasygoldcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fantasygold/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png new file mode 100644 index 0000000000000..6876a666683e6 Binary files /dev/null and b/blockchains/smartchain/assets/0x41E025EA850bB4d0DCbb5b1F4353aF099CbD026a/logo.png differ diff --git a/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/info.json b/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/info.json new file mode 100644 index 0000000000000..cb5fa560c6cf2 --- /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 0000000000000..ba89f2dd8dd05 Binary files /dev/null and b/blockchains/smartchain/assets/0x43a8cab15D06d3a5fE5854D714C37E7E9246F170/logo.png differ diff --git a/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/info.json b/blockchains/smartchain/assets/0x44a21B3577924DCD2e9C81A3347D204C36a55466/info.json new file mode 100644 index 0000000000000..873977178b7e5 --- /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 0000000000000..8c75686496f76 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 0000000000000..d07c752c726cc --- /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 0000000000000..69737a2c9591e Binary files /dev/null and b/blockchains/smartchain/assets/0x4507cEf57C46789eF8d1a19EA45f4216bae2B528/logo.png differ diff --git a/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/info.json b/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/info.json index 19bd4a44c4697..988498cfb32ac 100644 --- a/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/info.json +++ b/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "DOGECOLA", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1", "tags": [ "deflationary" diff --git a/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/logo.png b/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/logo.png deleted file mode 100644 index 4d3e766057735..0000000000000 Binary files a/blockchains/smartchain/assets/0x4756cd85Cd07769c2Ce07A73497f208D56D48eC1/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x493361D6164093936c86Dcb35Ad03b4C0D032076/info.json b/blockchains/smartchain/assets/0x493361D6164093936c86Dcb35Ad03b4C0D032076/info.json new file mode 100644 index 0000000000000..cf93a2c282fe0 --- /dev/null +++ b/blockchains/smartchain/assets/0x493361D6164093936c86Dcb35Ad03b4C0D032076/info.json @@ -0,0 +1,24 @@ +{ + "name": "Vista Finance", + "type": "BEP20", + "symbol": "VISTA", + "decimals": 18, + "website": "https://vistafinance.io/", + "description": "Vista Finance bring trade, brokers, traders, and investors together in a decentralized, open, and fair network to make them more modern and global. This backstage smart contract technology provides an automated and completely transparent method of investing and a profit- sharing system by offering investment attractiveness to successful traders around the world.", + "explorer": "https://bscscan.com/token/0x493361d6164093936c86dcb35ad03b4c0d032076", + "status": "active", + "id": "0x493361D6164093936c86Dcb35Ad03b4C0D032076", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/vistafound12" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/Then_Fondant_8184/" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x493361D6164093936c86Dcb35Ad03b4C0D032076/logo.png b/blockchains/smartchain/assets/0x493361D6164093936c86Dcb35Ad03b4C0D032076/logo.png new file mode 100644 index 0000000000000..f802e0ff1538a Binary files /dev/null and b/blockchains/smartchain/assets/0x493361D6164093936c86Dcb35Ad03b4C0D032076/logo.png differ diff --git a/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/info.json b/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/info.json new file mode 100644 index 0000000000000..5a2fdcddf808d --- /dev/null +++ b/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/info.json @@ -0,0 +1,24 @@ +{ + "name": "Teller", + "type": "BEP20", + "symbol": "Teller", + "decimals": 18, + "website": "https://www.tellerusd.com", + "description": "Welcome to the heart of innovation and stability in the crypto world – Teller USD (USDT). Our project represents a significant milestone in the realm of blockchain technology, with a primary focus on redefining financial security and reliability through the introduction of our groundbreaking stablecoin, Teller USD (USDT). At Teller USD (USDT), our vision is to usher in a new era of financial stability in the unpredictable world of cryptocurrencies. We believe in providing a secure and steadfast solution that empowers users to navigate the digital economy with confidence.", + "explorer": "https://bscscan.com/token/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5", + "status": "active", + "id": "0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5", + "links": [ + { + "name": "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 0000000000000..c5066aca6dd67 Binary files /dev/null and b/blockchains/smartchain/assets/0x4953d28b12D862250Cc96163A9C46Ae2B8ef52c5/logo.png differ diff --git a/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png b/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png index 8e97855518bfd..276a83baae8dd 100644 Binary files a/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png and b/blockchains/smartchain/assets/0x4B0F1812e5Df2A09796481Ff14017e6005508003/logo.png differ diff --git a/blockchains/smartchain/assets/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4/info.json b/blockchains/smartchain/assets/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4/info.json new file mode 100644 index 0000000000000..31f2362f2e550 --- /dev/null +++ b/blockchains/smartchain/assets/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tether USD Bridged ZED20", + "website": "https://zedscan.net", + "description": "ZedScan Block Explorer ZedScan is an independent block explorer unrelated to other service providers (unless stated explicitly otherwise) and is therefore unable to provide a precise response for inquiries that are specific to other service providers.", + "explorer": "https://bscscan.com/token/0x4be35ec329343d7d9f548d42b0f8c17fffe07db4", + "type": "BEP20", + "symbol": "USDT.z", + "decimals": 18, + "status": "active", + "id": "0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zedxionc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/tether-usd-bridged-zed20-usdt/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4/logo.png b/blockchains/smartchain/assets/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4/logo.png new file mode 100644 index 0000000000000..9b914ee8e4eb9 Binary files /dev/null and b/blockchains/smartchain/assets/0x4BE35Ec329343d7d9F548d42B0F8c17FFfe07db4/logo.png differ diff --git a/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/info.json b/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/info.json new file mode 100644 index 0000000000000..6e9b2ee66cc29 --- /dev/null +++ b/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cirus", + "type": "BEP20", + "symbol": "CIRUS", + "decimals": 18, + "website": "https://cirusfoundation.com/", + "description": "The fluctuating protocol token that plays a role in stabilizing RSV and confers the cryptographic right to purchase excess Reserve tokens as the network grows.", + "explorer": "https://bscscan.com/token/0x4c888e116d57a32f84865f3789dcb131fdc9fab6", + "status": "active", + "id": "0x4C888e116D57A32F84865F3789dCB131fDC9FAb6", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CirusFoundation" + }, + { + "name": "telegram", + "url": "https://t.me/cirusfoundation" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/logo.png b/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/logo.png new file mode 100644 index 0000000000000..c471fa52c208e Binary files /dev/null and b/blockchains/smartchain/assets/0x4C888e116D57A32F84865F3789dCB131fDC9FAb6/logo.png differ diff --git a/blockchains/smartchain/assets/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB/info.json b/blockchains/smartchain/assets/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB/info.json new file mode 100644 index 0000000000000..5d07f0585a369 --- /dev/null +++ b/blockchains/smartchain/assets/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB/info.json @@ -0,0 +1,24 @@ +{ + "name": "NCoin", + "type": "BEP20", + "symbol": "NCoin", + "decimals": 18, + "website": "https://natronz.com/", + "description": "NatronZ aims to empower our investors by pushing the boundaries of investment profitability through advanced technological enhancements, taking it to a superior level.", + "explorer": "https://bscscan.com/token/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB", + "status": "active", + "id": "0x4a7E278C67543731A864C89e5EB28EaCfa8794EB", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/natronz/" + }, + { + "name": "facebook", + "url": "https://facebook.com/natronzofficial" + } + ], + "tags": [ + "nft" + ] +} diff --git a/blockchains/smartchain/assets/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB/logo.png b/blockchains/smartchain/assets/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB/logo.png new file mode 100644 index 0000000000000..434a617933352 Binary files /dev/null and b/blockchains/smartchain/assets/0x4a7E278C67543731A864C89e5EB28EaCfa8794EB/logo.png differ diff --git a/blockchains/smartchain/assets/0x4eA98c1999575aaadfb38237Dd015c5E773F75a2/info.json b/blockchains/smartchain/assets/0x4eA98c1999575aaadfb38237Dd015c5E773F75a2/info.json new file mode 100644 index 0000000000000..c9c18b3fc6e41 --- /dev/null +++ b/blockchains/smartchain/assets/0x4eA98c1999575aaadfb38237Dd015c5E773F75a2/info.json @@ -0,0 +1,25 @@ +{ + "name": "MAGA", + "website": "https://magamemecoin.com/", + "description": "Maga is a deflationary meme coin launched on Ethereum. Cryptocurrency was created as a tribute to the trump the Maga.", + "explorer": "https://bscscan.com/token/0x4ea98c1999575aaadfb38237dd015c5e773f75a2", + "type": "BEP20", + "symbol": "TRUMP", + "decimals": 9, + "status": "active", + "id": "0x4eA98c1999575aaadfb38237Dd015c5E773F75a2", + "links": [ + { + "name": "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/smartchain/assets/0x4eA98c1999575aaadfb38237Dd015c5E773F75a2/logo.png b/blockchains/smartchain/assets/0x4eA98c1999575aaadfb38237Dd015c5E773F75a2/logo.png new file mode 100644 index 0000000000000..4d1fc39fdc6c4 Binary files /dev/null and b/blockchains/smartchain/assets/0x4eA98c1999575aaadfb38237Dd015c5E773F75a2/logo.png differ diff --git a/blockchains/smartchain/assets/0x529C79f6918665EBE250F32eeEAA1d410a0798C6/info.json b/blockchains/smartchain/assets/0x529C79f6918665EBE250F32eeEAA1d410a0798C6/info.json new file mode 100644 index 0000000000000..2ae4e0244861a --- /dev/null +++ b/blockchains/smartchain/assets/0x529C79f6918665EBE250F32eeEAA1d410a0798C6/info.json @@ -0,0 +1,21 @@ +{ + "name": "HYPERGPT", + "type": "BEP20", + "symbol": "HGPT", + "decimals": 18, + "website": "https://www.catboy.io/", + "description": "HyperGPT: The all-in-one AI marketplace and SDK. Access integrated AI solutions, pay-as-you-go with a credit model, and enjoy seamless API integration through one account. Developers and users welcome to the future of AI.", + "explorer": "https://bscscan.com/token/0x529C79f6918665EBE250F32eeEAA1d410a0798C6", + "status": "active", + "id": "0x529C79f6918665EBE250F32eeEAA1d410a0798C6", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/hypergpt" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hypergpt/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x529C79f6918665EBE250F32eeEAA1d410a0798C6/logo.png b/blockchains/smartchain/assets/0x529C79f6918665EBE250F32eeEAA1d410a0798C6/logo.png new file mode 100644 index 0000000000000..aa352afeddc48 Binary files /dev/null and b/blockchains/smartchain/assets/0x529C79f6918665EBE250F32eeEAA1d410a0798C6/logo.png differ diff --git a/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/info.json b/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/info.json new file mode 100644 index 0000000000000..c178eae46f747 --- /dev/null +++ b/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/info.json @@ -0,0 +1,32 @@ +{ + "name": "WINPRO", + "type": "BEP20", + "symbol": "WPT", + "decimals": 18, + "website": "https://winprotoken.io/", + "description": "Winpro (WPT) is a digital asset designed to revolutionize the sports and entertainment industries through blockchain technology. By leveraging the inherent advantages of blockchain, such as transparency, security, and decentralization.", + "explorer": "https://bscscan.com/token/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A", + "status": "spam", + "id": "0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A", + "links": [ + { + "name": "github", + "url": "https://github.com/Winprotoken" + }, + { + "name": "telegram", + "url": "https://t.me/Winprotoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vrtrinity/" + }, + { + "name": "whitepaper", + "url": "https://winprotoken.io/assets/winprotoken.io_compressed.pdf" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/logo.png b/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/logo.png new file mode 100644 index 0000000000000..1e648b48ac83b Binary files /dev/null and b/blockchains/smartchain/assets/0x53c17Ecaa2C662cff7C380729c7E9f7989280b2A/logo.png differ diff --git a/blockchains/smartchain/assets/0x551897f8203bd131b350601D3aC0679Ba0Fc0136/info.json b/blockchains/smartchain/assets/0x551897f8203bd131b350601D3aC0679Ba0Fc0136/info.json new file mode 100644 index 0000000000000..31f39e219c999 --- /dev/null +++ b/blockchains/smartchain/assets/0x551897f8203bd131b350601D3aC0679Ba0Fc0136/info.json @@ -0,0 +1,21 @@ +{ + "name": "NFPrompt", + "website": "https://nfprompt.io", + "description": "NFPrompt is an AI-driven UGC platform designed for the new generation of Web3 creators. It's an all-in-one platform with the power of AI-creation, social community, and commercialization.", + "explorer": "https://bscscan.com/token/0x551897f8203bd131b350601D3aC0679Ba0Fc0136", + "symbol": "NFP", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x551897f8203bd131b350601D3aC0679Ba0Fc0136", + "links": [ + { + "name": "telegram", + "url": "https://t.me/nfprompt" + }, + { + "name": "twitter", + "url": "https://twitter.com/nfprompt" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x551897f8203bd131b350601D3aC0679Ba0Fc0136/logo.png b/blockchains/smartchain/assets/0x551897f8203bd131b350601D3aC0679Ba0Fc0136/logo.png new file mode 100644 index 0000000000000..f13060b1aeb18 Binary files /dev/null and b/blockchains/smartchain/assets/0x551897f8203bd131b350601D3aC0679Ba0Fc0136/logo.png differ diff --git a/blockchains/smartchain/assets/0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99/info.json b/blockchains/smartchain/assets/0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99/info.json new file mode 100644 index 0000000000000..734b9010484f1 --- /dev/null +++ b/blockchains/smartchain/assets/0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99/info.json @@ -0,0 +1,32 @@ +{ + "name": "MonbaseCoin", + "type": "BEP20", + "symbol": "MBC", + "decimals": 18, + "website": "https://monbase.com/", + "description": "Monbase is a digital asset exchange offering hundreds of cryptocurrencies for buying, selling, and trading. Users can register, complete KYC, deposit funds, and manage their investments using an exchange wallet. Live market data is also provided for market analysis.", + "explorer": "https://bscscan.com/token/0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99", + "status": "active", + "id": "0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99", + "tags": [ + "launchpad", "exchange", "BSC" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/monbaseglobal" + }, + { + "name": "telegram", + "url": "https://t.me/monbaseglobal" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monbase" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/monbasecoin" + } + ] +} diff --git a/blockchains/smartchain/assets/0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99/logo.png b/blockchains/smartchain/assets/0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99/logo.png new file mode 100644 index 0000000000000..0f62cccb76583 Binary files /dev/null and b/blockchains/smartchain/assets/0x551FAAB1027Cc50eFAeA5BED092E330475C3Cd99/logo.png differ diff --git a/blockchains/smartchain/assets/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5/info.json b/blockchains/smartchain/assets/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5/info.json new file mode 100644 index 0000000000000..fdf002341059e --- /dev/null +++ b/blockchains/smartchain/assets/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5/info.json @@ -0,0 +1,26 @@ +{ + "name": "S315", + "type": "BEP20", + "symbol": "S315", + "decimals": 18, + "website": "https://s315protocol.github.io/", + "description": "The swap 315 Dual Pump Protocol is a new protocol that supports both 314 contract transfer transactions and swap transactions. The swap 315 Dual Pump Protocol effectively solves the risk of contract code corruption and also addresses the risk of swap pool withdraw", + "explorer": "https://bscscan.com/token/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5", + "status": "active", + "id": "0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Shahd32533828" + }, + { + "name": "telegram", + "url": "https://t.me/swap315Dev" + } + ], + "tags": [ + "defi", + "memes", + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5/logo.png b/blockchains/smartchain/assets/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5/logo.png new file mode 100644 index 0000000000000..e884b0d8cee1b Binary files /dev/null and b/blockchains/smartchain/assets/0x565D40e2ef60f0B4e5bD0136Bb2C58ACe83fDaA5/logo.png differ diff --git a/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/info.json b/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/info.json new file mode 100644 index 0000000000000..839c014dc7924 --- /dev/null +++ b/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wrapped ZEDXION from ZEDX", + "website": "https://zedscan.net", + "description": "Zedx is a decentralized payments-focused platform powered underneath by the fast and low-cost Zedx blockchain.", + "explorer": "https://bscscan.com/token/0x567556a7493fb7a22d2fd158dd4c766a98705f96", + "type": "BEP20", + "symbol": "WZEDX", + "decimals": 18, + "status": "active", + "id": "0x567556A7493FB7a22d2fd158Dd4C766a98705f96", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zedxionc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-zedxion/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/logo.png b/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/logo.png new file mode 100644 index 0000000000000..4cfc6d61e291f Binary files /dev/null and b/blockchains/smartchain/assets/0x567556A7493FB7a22d2fd158Dd4C766a98705f96/logo.png differ diff --git a/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/info.json b/blockchains/smartchain/assets/0x569f4957176Ffa0dff76c507604f6a66d4B9C578/info.json index 5c975ae7ab236..07023cec6e99e 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 0000000000000..9fcd86962350c --- /dev/null +++ b/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/info.json @@ -0,0 +1,40 @@ +{ + "name": "ELF wallet", + "type": "BEP20", + "symbol": "ELF", + "decimals": 18, + "website": "https://www.teddywallet.io", + "description": "Multi-chain Wallet in WEB3.Multi-chain Wallet, Security First, Full Control by User.", + "explorer": "https://bscscan.com/token/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2", + "status": "active", + "id": "0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ElfWallet" + }, + { + "name": "github", + "url": "https://github.com/ELF-Wallet" + }, + { + "name": "telegram", + "url": "https://t.me/ElfWallet_Global" + }, + { + "name": "whitepaper", + "url": "https://www.elfwallets.com/ELF.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elf-wallet/" + }, + { + "name": "medium", + "url": "https://medium.com/@elfwallet" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/logo.png b/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/logo.png new file mode 100644 index 0000000000000..2f9cdfc5cb30c Binary files /dev/null and b/blockchains/smartchain/assets/0x56D594D76b37BE83C54aBF8a4747D60CE58D32C2/logo.png differ diff --git a/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/info.json b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/info.json new file mode 100644 index 0000000000000..037bf41502552 --- /dev/null +++ b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/info.json @@ -0,0 +1,33 @@ +{ + "name": "Darik", + "type": "BEP20", + "symbol": "DARIK", + "decimals": 18, + "website": "https://darikcoin.org", + "description": "DARIK token, which is designed based on BEP20 and has strong support, is active in commercial sectors, and with this token, users can perform all kinds of transactions in a secure platform", + "explorer": "https://bscscan.com/token/0x595a67D180BAE10314384265d56927C8ff073426", + "status": "active", + "id": "0x595a67D180BAE10314384265d56927C8ff073426", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Darikcoin_Darik" + }, + { + "name": "telegram", + "url": "https://t.me/DARIKCOIN_DARIK" + }, + { + "name": "facebook", + "url": "https://facebook.com/people/Darik-Coin/pfbid02gFwGRGgpwcuBnZvY9SDkJibP6JbycXUeDvGdEHLpLaVwKfXJWEP3AWNEi61jVDKdl/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/dexscan/bsc/0xbba50be7a1cb6e25ddda562b0ca278089bf9068a/" + } + ], + "tags": [ + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/logo.png b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/logo.png new file mode 100644 index 0000000000000..8fa8f5585a2b7 Binary files /dev/null and b/blockchains/smartchain/assets/0x595a67D180BAE10314384265d56927C8ff073426/logo.png differ diff --git a/blockchains/smartchain/assets/0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760/info.json b/blockchains/smartchain/assets/0x59803e5Fe213D4B22fb9b061c4C89E716a1CA760/info.json new file mode 100644 index 0000000000000..e21a1fd2c3f6d --- /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 0000000000000..257d2d2d1f2aa 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 0000000000000..44ebb0fb1eb57 --- /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 0000000000000..0ff8ebaa9bb2f 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 ac7efd1703de6..c8833cf60ae3f 100644 --- a/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json +++ b/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "JulD", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/info.json b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/info.json new file mode 100644 index 0000000000000..77472c4bb28b2 --- /dev/null +++ b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/info.json @@ -0,0 +1,44 @@ +{ + "name": "ElonXAIDogeMessi69PepeInu", + "type": "BEP20", + "symbol": "BITCOIN", + "decimals": 9, + "website": "https://bitcoin69.org", + "description": "Aims to create a connection between Artificial Intelligence and Cryptocurrency to build a strong web3 system.", + "explorer": "https://bscscan.com/token/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B", + "status": "active", + "id": "0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bitcoin69_bsc" + }, + { + "name": "github", + "url": "https://github.com/ElonXAIDogeMessi69PepeInu" + }, + { + "name": "telegram", + "url": "https://t.me/bitcoin69_global" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x5afa2959c98b030716f7c0a4d85e0b0e35f3791b#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elonxaidogemessi69pepeinu/" + }, + { + "name": "docs", + "url": "https://doc.bitcoin69.org/" + }, + { + "name": "medium", + "url": "https://medium.com/@bitcoin69" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/logo.png b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/logo.png new file mode 100644 index 0000000000000..0b053e713c461 Binary files /dev/null and b/blockchains/smartchain/assets/0x5Afa2959C98b030716f7C0a4D85e0b0E35F3791B/logo.png differ diff --git a/blockchains/smartchain/assets/0x5C999E15B71de2bb8e651f0f999FB0Bc321a0DFe/info.json b/blockchains/smartchain/assets/0x5C999E15B71de2bb8e651f0f999FB0Bc321a0DFe/info.json new file mode 100644 index 0000000000000..6946041ec77a0 --- /dev/null +++ b/blockchains/smartchain/assets/0x5C999E15B71de2bb8e651f0f999FB0Bc321a0DFe/info.json @@ -0,0 +1,21 @@ +{ + "name": "ZedDex", + "website": "https://zeddex.com", + "description": "ZedDex is The First NeoBanking Decentralized Hub Trade, earn, and excel with crypto on the galaxy’s top decentralized platform token.", + "explorer": "https://bscscan.com/token/0x5c999e15b71de2bb8e651f0f999fb0bc321a0dfe", + "symbol": "ZED", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x5C999E15B71de2bb8e651f0f999FB0Bc321a0DFe", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zedxionc" + }, + { + "name": "github", + "url": "https://github.com/Zedscan" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5C999E15B71de2bb8e651f0f999FB0Bc321a0DFe/logo.png b/blockchains/smartchain/assets/0x5C999E15B71de2bb8e651f0f999FB0Bc321a0DFe/logo.png new file mode 100644 index 0000000000000..2ab42ff07eb79 Binary files /dev/null and b/blockchains/smartchain/assets/0x5C999E15B71de2bb8e651f0f999FB0Bc321a0DFe/logo.png differ diff --git a/blockchains/smartchain/assets/0x5F980533B994c93631A639dEdA7892fC49995839/info.json b/blockchains/smartchain/assets/0x5F980533B994c93631A639dEdA7892fC49995839/info.json new file mode 100644 index 0000000000000..d7f49b2361496 --- /dev/null +++ b/blockchains/smartchain/assets/0x5F980533B994c93631A639dEdA7892fC49995839/info.json @@ -0,0 +1,36 @@ +{ + "name": "Cosanta", + "type": "BEP20", + "symbol": "COSA", + "decimals": 8, + "website": "https://cosa.is", + "description": "Cosanta is B2B solutions. Our goal to using the Cosanta Masternodes as Software-defined networking (SDN). This technology will provide good quality of service and it will be Hight Availability (HA), flexible and DDoS resistant network.", + "explorer": "https://bscscan.com/token/0x5f980533b994c93631a639deda7892fc49995839", + "status": "active", + "id": "0x5F980533B994c93631A639dEdA7892fC49995839", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CosantaNet" + }, + { + "name": "telegram", + "url": "https://t.me/cosanta_io" + }, + { + "name": "whitepaper", + "url": "https://cosa.is/en#about" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x5f980533b994c93631a639deda7892fc49995839#code" + }, + { + "name": "github", + "url": "https://github.com/cosanta/" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x5F980533B994c93631A639dEdA7892fC49995839/logo.png b/blockchains/smartchain/assets/0x5F980533B994c93631A639dEdA7892fC49995839/logo.png new file mode 100644 index 0000000000000..31361c7248c83 Binary files /dev/null and b/blockchains/smartchain/assets/0x5F980533B994c93631A639dEdA7892fC49995839/logo.png differ diff --git a/blockchains/smartchain/assets/0x5FE7D4aD1794365f6812cf425a99484444417EDD/info.json b/blockchains/smartchain/assets/0x5FE7D4aD1794365f6812cf425a99484444417EDD/info.json new file mode 100644 index 0000000000000..1a57f92af8910 --- /dev/null +++ b/blockchains/smartchain/assets/0x5FE7D4aD1794365f6812cf425a99484444417EDD/info.json @@ -0,0 +1,25 @@ +{ + "name": "Imperium", + "type": "BEP20", + "symbol": "IMPCOIN", + "decimals": 8, + "website": "https://imp-coin.com", + "description": "IMPERIUM COIN is a cutting-edge digital currency poised to redefine the landscape of finance.", + "explorer": "https://bscscan.com/token/0x5FE7D4aD1794365f6812cf425a99484444417EDD", + "status": "active", + "id": "0x5FE7D4aD1794365f6812cf425a99484444417EDD", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/B_IMPERIUM" + }, + { + "name": "whitepaper", + "url": "https://imperiumrgk-organization.gitbook.io/whitepaper" + } + ], + "tags": [ + "dapp", + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5FE7D4aD1794365f6812cf425a99484444417EDD/logo.png b/blockchains/smartchain/assets/0x5FE7D4aD1794365f6812cf425a99484444417EDD/logo.png new file mode 100644 index 0000000000000..837eab98c89b4 Binary files /dev/null and b/blockchains/smartchain/assets/0x5FE7D4aD1794365f6812cf425a99484444417EDD/logo.png differ diff --git a/blockchains/smartchain/assets/0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8/info.json b/blockchains/smartchain/assets/0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8/info.json new file mode 100644 index 0000000000000..875a696b3a6cd --- /dev/null +++ b/blockchains/smartchain/assets/0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8/info.json @@ -0,0 +1,48 @@ +{ + "name": "Binstarter", + "type": "BEP20", + "symbol": "BSR", + "decimals": 18, + "website": "https://binstarter.ai", + "description": "Launched in June 2021, Binstarter is a trailblazer in decentralized finance, renowned as the first multi-chain IDO platform with an Extended Insurance Protocol (EIP). Our platform is committed to transparency, fairness, and innovation, offering secure and efficient fundraising solutions for startups. At Binstarter, we aim to revolutionize the DeFi landscape by reducing risks, enhancing user experiences, and empowering startups for successful launches.", + "explorer": "https://bscscan.com/token/0x5ce12f6d9f2fcaf0b11494a1c39e09eeb16ca7e8", + "status": "active", + "id": "0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/binstarterio" + }, + { + "name": "telegram", + "url": "https://t.me/BinStarterOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/binstarter/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/binstarter/" + }, + { + "name": "medium", + "url": "https://medium.com/@binstarter" + }, + { + "name": "blog", + "url": "https://blog.binstarter.io" + }, + { + "name": "docs", + "url": "https://docs.binstarter.io/" + }, + { + "name": "whitepaper", + "url": "https://docs.binstarter.io/whitepaper/wp2" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8/logo.png b/blockchains/smartchain/assets/0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8/logo.png new file mode 100644 index 0000000000000..11caa7095460f Binary files /dev/null and b/blockchains/smartchain/assets/0x5cE12F6d9F2FcAf0b11494a1C39E09eeB16Ca7e8/logo.png differ diff --git a/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/info.json b/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/info.json new file mode 100644 index 0000000000000..d1db756d67f57 --- /dev/null +++ b/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/info.json @@ -0,0 +1,17 @@ +{ + "name": "WECOIN", + "website": "http://weset.io/", + "description": "Buy NFT Fractional properties online with technology web3.", + "explorer": "https://bscscan.com/token/0x5d37abafd5498b0e7af753a2e83bd4f0335aa89f", + "type": "BEP20", + "symbol": "WECO", + "decimals": 18, + "status": "active", + "id": "0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/WESET_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/logo.png b/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/logo.png new file mode 100644 index 0000000000000..922d6398d8c3f Binary files /dev/null and b/blockchains/smartchain/assets/0x5d37ABAFd5498B0E7af753a2E83bd4F0335AA89F/logo.png differ diff --git a/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/info.json b/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/info.json new file mode 100644 index 0000000000000..b0af21e1d46b9 --- /dev/null +++ b/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/info.json @@ -0,0 +1,28 @@ +{ + "name": "Marketmaking.PRO", + "website": "https://marketmaking.pro/", + "description": "Working since 2017 and providing Market Making (MM) services for CEXes and DEXes", + "explorer": "https://bscscan.com/token/0x6067490d05f3cf2fdffc0e353b1f5fd6e5ccdf70", + "type": "BEP20", + "symbol": "MMPRO", + "decimals": 18, + "status": "active", + "id": "0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70", + "tags": [ + "defi" + ], + "links": [ + { + "name": "telegram", + "url": "https://t.me/market_making_pro_eng" + }, + { + "name": "telegram_news", + "url": "https://t.me/marketmakingpro" + }, + { + "name": "medium", + "url": "https://marketmaking.medium.com" + } + ] +} diff --git a/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/logo.png b/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/logo.png new file mode 100644 index 0000000000000..04eeaf4e2202a Binary files /dev/null and b/blockchains/smartchain/assets/0x6067490d05F3cF2fdFFC0e353b1f5Fd6E5CCDF70/logo.png differ diff --git a/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/info.json b/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/info.json new file mode 100644 index 0000000000000..f2321be2aaeb3 --- /dev/null +++ b/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/info.json @@ -0,0 +1,52 @@ +{ + "name": "Jesus Coin", + "type": "BEP20", + "symbol": "JESUS", + "decimals": 9, + "website": "https://jesuscoin.info", + "description": "Jesus Christ forgives your sins, redeems your bad trades, and blesses you with heavenly riches. The world is full of rug pulls and honey pots but Jesus is here to set you free.", + "explorer": "https://bscscan.com/token/0x6120ba0b3538e40aa7aac32558e5dd0737b7ac90", + "status": "active", + "id": "0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/jesuscoin_bsc" + }, + { + "name": "github", + "url": "https://github.com/jesuscoinbsc" + }, + { + "name": "telegram", + "url": "https://t.me/jesuscoin_main" + }, + { + "name": "docs", + "url": "https://doc.jesuscoin.info/" + }, + { + "name": "whitepaper", + "url": "https://doc.jesuscoin.info/" + }, + { + "name": "medium", + "url": "https://medium.com/@jesuscoin_bsc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jesus-coin-bsc/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/jesuscoin" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0x6120ba0b3538e40aa7aac32558e5dd0737b7ac90#code" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/logo.png b/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/logo.png new file mode 100644 index 0000000000000..89892d0298aa8 Binary files /dev/null and b/blockchains/smartchain/assets/0x6120ba0B3538E40aA7aAc32558E5dd0737B7ac90/logo.png differ diff --git a/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json b/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/info.json new file mode 100644 index 0000000000000..0e9940ec8f0d4 --- /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 0000000000000..df55519f7a2dd Binary files /dev/null and b/blockchains/smartchain/assets/0x62D0A8458eD7719FDAF978fe5929C6D342B0bFcE/logo.png differ diff --git a/blockchains/smartchain/assets/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a/info.json b/blockchains/smartchain/assets/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a/info.json new file mode 100644 index 0000000000000..fb4e84a16f5f0 --- /dev/null +++ b/blockchains/smartchain/assets/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a/info.json @@ -0,0 +1,28 @@ +{ + "name": "FutureToken", + "type": "BEP20", + "symbol": "FTR", + "decimals": 18, + "website": "https://www.futuretoken.info/", + "description": "FutureToken (FTR) invites you to embark on a journey into the future of finance, where innovation meets opportunity", + "explorer": "https://bscscan.com/token/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a", + "status": "active", + "id": "0x63F712B7EC2b9f7146b54a79133900F9458eeC6a", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pomerocket/" + }, + { + "name": "twitter", + "url": "https://twitter.com/MyFutureToken" + }, + { + "name": "telegram", + "url": "https://t.me/myfuturetoken" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a/logo.png b/blockchains/smartchain/assets/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a/logo.png new file mode 100644 index 0000000000000..8e2a45a2ec15c Binary files /dev/null and b/blockchains/smartchain/assets/0x63F712B7EC2b9f7146b54a79133900F9458eeC6a/logo.png differ diff --git a/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json b/blockchains/smartchain/assets/0x6469b35d2D5FAb6c53F73c7d9aBF537892DdB34a/info.json index 3f2697fce6b15..e34463b60dc6b 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 0000000000000..15bca650ca826 --- /dev/null +++ b/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/info.json @@ -0,0 +1,45 @@ +{ + "id": "0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC", + "name": "IDRX", + "type": "BEP20", + "symbol": "IDRX", + "decimals": 0, + "website": "https://idrx.co/", + "description": "IDRX is a stable token pegged to the value of the Indonesian Rupiah (IDR). As a cryptocurrency, IDRX offers users the benefits of blockchain technology, including security, transparency, and decentralized control. At the same time, as a stable token, IDRX offers price stability by maintaining a fixed exchange rate with the IDR, which is the national currency of Indonesia.", + "explorer": "https://bscscan.com/token/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC", + "status": "active", + "tags": [ + "stablecoin", + "staking" + ], + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/idrx/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/idrx/" + }, + { + "name": "github", + "url": "https://github.com/idrx-co/" + }, + { + "name": "docs", + "url": "https://docs.idrx.co/" + }, + { + "name": "whitepaper", + "url": "https://idrx.co/docs/Whitepaper%20IDRX.pdf" + }, + { + "name": "telegram", + "url": "https://t.me/officialidrx" + }, + { + "name": "medium", + "url": "https://idrx.medium.com/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png b/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png new file mode 100644 index 0000000000000..444a5d98ac889 Binary files /dev/null and b/blockchains/smartchain/assets/0x649a2DA7B28E0D54c13D5eFf95d3A660652742cC/logo.png differ diff --git a/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/info.json b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/info.json new file mode 100644 index 0000000000000..18d38c438ef1e --- /dev/null +++ b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/info.json @@ -0,0 +1,26 @@ +{ + "name": "Measurable Data Token", + "website": "http://mdt.io", + "description": "Measurable Data Token (MDT) aims to provide a decentralized data economy, where data providers and data buyers can exchange data securely and anonymously.", + "explorer": "https://bscscan.com/token/0x668db7aa38eac6b40c9d13dbe61361dc4c4611d1", + "research": "https://research.binance.com/en/projects/measurable-data-token", + "type": "BEP20", + "symbol": "MDT", + "decimals": 18, + "status": "active", + "id": "0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MeasurableData" + }, + { + "name": "github", + "url": "https://github.com/measurabledatatoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/measurable-data-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/logo.png b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/logo.png new file mode 100644 index 0000000000000..4406b320c48f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x668DB7aa38eaC6B40c9D13dBE61361DC4c4611d1/logo.png differ diff --git a/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/info.json b/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/info.json new file mode 100644 index 0000000000000..11625c3504a82 --- /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 0000000000000..67c98a7d839ef Binary files /dev/null and b/blockchains/smartchain/assets/0x67009eB16ff64d06b4F782b3c552b924B1D1bb93/logo.png differ diff --git a/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/info.json b/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/info.json new file mode 100644 index 0000000000000..a697e5e5ca5ad --- /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 0000000000000..51fbe28e53847 Binary files /dev/null and b/blockchains/smartchain/assets/0x6730f7A6BbB7b9C8e60843948f7FEB4B6a17B7F7/logo.png differ diff --git a/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/info.json b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/info.json new file mode 100644 index 0000000000000..0349bbdf9d26c --- /dev/null +++ b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/info.json @@ -0,0 +1,36 @@ +{ + "name": "TXGPRO", + "type": "BEP20", + "symbol": "TXGP", + "decimals": 8, + "website": "https://pro.trustxgaming.io/", + "description": "TXGPRO, a GameFi protocol developed by TRUSTxGAMING: 1. Play-to-Earn Concept: TXGPRO revolves around a \"play-to-earn\" concept, where gamers can participate in games within the platform using TXGP tokens. By doing so, they can earn cryptocurrency rewards based on their in-game achievements and contributions. This incentivizes gamers to engage with the platform and earn crypto rewards while enjoying their gaming experiences.", + "explorer": "https://bscscan.com/token/0x6739e0572A24bE7864B466f79844C4f3B7d6f857", + "status": "active", + "id": "0x6739e0572A24bE7864B466f79844C4f3B7d6f857", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/trust_xgaming" + }, + { + "name": "telegram", + "url": "https://t.me/trustxgaming" + }, + { + "name": "discord", + "url": "https://discord.com/invite/tXMs8DVFsd" + }, + { + "name": "whitepaper", + "url": "https://whitepaper.txgpro.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/txgpro/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/logo.png b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/logo.png new file mode 100644 index 0000000000000..71b01c59420fd Binary files /dev/null and b/blockchains/smartchain/assets/0x6739e0572A24bE7864B466f79844C4f3B7d6f857/logo.png differ diff --git a/blockchains/smartchain/assets/0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed/info.json b/blockchains/smartchain/assets/0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed/info.json new file mode 100644 index 0000000000000..947a9d0938ec4 --- /dev/null +++ b/blockchains/smartchain/assets/0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed/info.json @@ -0,0 +1,21 @@ +{ + "name": "Opulous", + "type": "BEP20", + "symbol": "OPUL", + "website": "https://opulous.org/", + "decimals": 18, + "description": "Opulous Token believe in a future where musicians keep control of the music they create and forge even deeper connections with their fans.", + "explorer": "https://bscscan.com/token/0x686318000d982bc8dcc1cdcf8ffd22322f0960ed", + "status": "active", + "id": "0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed", + "links": [ + { + "name": "telegram", + "url": "https://t.me/opulousapp" + }, + { + "name": "twitter", + "url": "https://twitter.com/opulousapp" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed/logo.png b/blockchains/smartchain/assets/0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed/logo.png new file mode 100644 index 0000000000000..afa7fedd2bd39 Binary files /dev/null and b/blockchains/smartchain/assets/0x686318000d982bc8dCC1cdCF8fFd22322F0960Ed/logo.png differ diff --git a/blockchains/smartchain/assets/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D/info.json b/blockchains/smartchain/assets/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D/info.json new file mode 100644 index 0000000000000..41a4aafaf13cb --- /dev/null +++ b/blockchains/smartchain/assets/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Simons Cat", + "symbol": "CAT", + "type": "BEP20", + "decimals": 18, + "description": "Simon's Cat is a meme token aims for every trade that feeds the hungry cats around the world.", + "website": "https://www.simons.cat/", + "explorer": "https://bscscan.com/token/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D", + "status": "active", + "id": "0x6894CDe390a3f51155ea41Ed24a33A4827d3063D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SimonsCatWorld" + }, + { + "name": "twitter", + "url": "https://twitter.com/SimonsCatMeme" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/simonscat/" + } + ] + } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D/logo.png b/blockchains/smartchain/assets/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D/logo.png new file mode 100644 index 0000000000000..7bef25c5148d5 Binary files /dev/null and b/blockchains/smartchain/assets/0x6894CDe390a3f51155ea41Ed24a33A4827d3063D/logo.png differ diff --git a/blockchains/smartchain/assets/0x68Db713779f7470c2FD43D3d06841D0192d44939/info.json b/blockchains/smartchain/assets/0x68Db713779f7470c2FD43D3d06841D0192d44939/info.json new file mode 100644 index 0000000000000..f2463e413d95e --- /dev/null +++ b/blockchains/smartchain/assets/0x68Db713779f7470c2FD43D3d06841D0192d44939/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ethereum Bridged ZED20", + "website": "https://zedscan.net/", + "description": "ETH.z, a cutting-edge stablecoin tightly linked to the US dollar, the founders of this stablecoin have 35 years of successful experience in economics and business, launched in 2024 within the ZEDX neobanking blockchain network.", + "explorer": "https://bscscan.com/token/0x68Db713779f7470c2FD43D3d06841D0192d44939", + "type": "BEP20", + "symbol": "ETH.z", + "decimals": 18, + "status": "active", + "id": "0x68Db713779f7470c2FD43D3d06841D0192d44939", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zedxionc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/token-ethereum-bridged-zed20/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x68Db713779f7470c2FD43D3d06841D0192d44939/logo.png b/blockchains/smartchain/assets/0x68Db713779f7470c2FD43D3d06841D0192d44939/logo.png new file mode 100644 index 0000000000000..1980498106886 Binary files /dev/null and b/blockchains/smartchain/assets/0x68Db713779f7470c2FD43D3d06841D0192d44939/logo.png differ diff --git a/blockchains/smartchain/assets/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2/info.json b/blockchains/smartchain/assets/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2/info.json new file mode 100644 index 0000000000000..514c85cab92fd --- /dev/null +++ b/blockchains/smartchain/assets/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2/info.json @@ -0,0 +1,28 @@ +{ + "name": "AZ BANC SERVICES", + "type": "BEP20", + "symbol": "ABS", + "decimals": 18, + "website": "https://azbanc.io/", + "description": "AZ BANC SERVICES is redefining the landscape where cryptocurrency and forex converge. We're not just bridging two worlds; we're creating a new one - a realm where the agility of digital currencies and the robustness of forex markets empower your financial journey.", + "explorer": "https://bscscan.com/token/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2", + "status": "active", + "id": "0x68ef00dAd00925e060b177c7ac59382FD0EB00c2", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/@azbancservices" + }, + { + "name": "telegram", + "url": "https://t.me/azbancservices" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/az-banc-services/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2/logo.png b/blockchains/smartchain/assets/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2/logo.png new file mode 100644 index 0000000000000..54c5dbe2d1b30 Binary files /dev/null and b/blockchains/smartchain/assets/0x68ef00dAd00925e060b177c7ac59382FD0EB00c2/logo.png differ diff --git a/blockchains/smartchain/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json b/blockchains/smartchain/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json new file mode 100644 index 0000000000000..ea906604cb0e0 --- /dev/null +++ b/blockchains/smartchain/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/info.json @@ -0,0 +1,21 @@ +{ + "name": "LayerZero", + "website": "https://layerzero.network/", + "description": "LayerZero is a technology that enables applications to move data across blockchains, uniquely supporting censorship-resistant messages and permissionless development through immutable smart contracts", + "explorer": "https://bscscan.com/token/0x6985884c4392d348587b19cb9eaaf157f13271cd", + "type": "BEP20", + "symbol": "ZRO", + "decimals": 18, + "status": "active", + "id": "0x6985884C4392D348587B19cb9eAAf157F13271cd", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LayerZero_Labs" + }, + { + "name": "telegram", + "url": "https://t.me/joinchat/VcqxYkStIDsyN2Rh" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png b/blockchains/smartchain/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png new file mode 100644 index 0000000000000..203a846cfdf6b Binary files /dev/null and b/blockchains/smartchain/assets/0x6985884C4392D348587B19cb9eAAf157F13271cd/logo.png differ diff --git a/blockchains/smartchain/assets/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7/info.json b/blockchains/smartchain/assets/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7/info.json new file mode 100644 index 0000000000000..d8c7d2d3efb22 --- /dev/null +++ b/blockchains/smartchain/assets/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7/info.json @@ -0,0 +1,40 @@ +{ + "name": "CV TOKEN", + "type": "BEP20", + "symbol": "CVT", + "decimals": 18, + "website": "https://cvtoken.us/", + "description": "CV Tokens enable users to buy and sell virtual products and services in the Metaverse. With a vibrant e-commerce system, users can purchase virtual clothes, accessories, and other digital items to personalize their avatars, enhancing their virtual reality experiences.", + "explorer": "https://bscscan.com/token/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7", + "status": "active", + "id": "0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CryptoV75575" + }, + { + "name": "github", + "url": "https://github.com/cvttokenofficial" + }, + { + "name": "telegram", + "url": "https://t.me/CVToken" + }, + { + "name": "telegram_news", + "url": "https://t.me/CVTokenofficial" + }, + { + "name": "whitepaper", + "url": "https://cvtoken.us/uploads/CVTwhitepaper_0.2.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/monsta-xrp/" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7/logo.png b/blockchains/smartchain/assets/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7/logo.png new file mode 100644 index 0000000000000..38d4a7f16f006 Binary files /dev/null and b/blockchains/smartchain/assets/0x6A50A1f2fF0C5658815215b498f7aB003a783Dc7/logo.png differ diff --git a/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/info.json b/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/info.json new file mode 100644 index 0000000000000..45974bf2966e1 --- /dev/null +++ b/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/info.json @@ -0,0 +1,21 @@ +{ + "name": "Baby Neiro", + "type": "BEP20", + "symbol": "BabyNeiro", + "decimals": 9, + "website": "https://baby-neiro.io/", + "description": "In the vast, ever-changing kingdom of memes, one legend must pass to make way for another. After the passing of Doge, the most beloved meme in internet history, a new king was destined to rise.", + "explorer": "https://bscscan.com/token/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454", + "status": "active", + "id": "0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BabyNeiro_BNB" + }, + { + "name": "telegram", + "url": "https://t.me/BabyNeiro_og" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/logo.png b/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/logo.png new file mode 100644 index 0000000000000..6d41b83fd1196 Binary files /dev/null and b/blockchains/smartchain/assets/0x6CDd08dE79231a1957f205a3fe5cF9DBf4B0c454/logo.png differ diff --git a/blockchains/smartchain/assets/0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e/info.json b/blockchains/smartchain/assets/0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e/info.json new file mode 100644 index 0000000000000..bbbe332cd2a0c --- /dev/null +++ b/blockchains/smartchain/assets/0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e/info.json @@ -0,0 +1,37 @@ +{ + "name": "DeXe", + "type": "BEP20", + "symbol": "DEXE", + "decimals": 18, + "website": "https://dexe.network/", + "description": "DeXe Protocol is a decentralized suite of permissionless tools for managing assets, products, and communities governed by $DEXE holders within DeXe Protocol DAO. It offers a no-code environment on blockchain for launching DAOs, tokens, and fundraises; AI-powered automation for decision-making; on/off-chain in a seamless space; account abstraction acting as a DAO, multi-sig or single party with numerous features for managing assets and payouts, and(or) communities.", + "explorer": "https://bscscan.com/token/0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e", + "id": "0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e", + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/dexe-network/DeXe-Protocol" + }, + { + "name": "twitter", + "url": "https://twitter.com/DexeNetwork" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dexe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dexe" + }, + { + "name": "telegram", + "url": "https://t.me/dexe_network_official_chat" + } + ], + "tags": [ + "governance", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e/logo.png b/blockchains/smartchain/assets/0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e/logo.png new file mode 100644 index 0000000000000..9b717a971bca4 Binary files /dev/null and b/blockchains/smartchain/assets/0x6E88056E8376Ae7709496Ba64d37fa2f8015ce3e/logo.png differ diff --git a/blockchains/smartchain/assets/0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978/info.json b/blockchains/smartchain/assets/0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978/info.json new file mode 100644 index 0000000000000..ad0faeb4dbffc --- /dev/null +++ b/blockchains/smartchain/assets/0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978/info.json @@ -0,0 +1,40 @@ +{ + "name": "BiCity AI Projects", + "type": "BEP20", + "symbol": "BICITY", + "decimals": 18, + "website": "https://www.bicity.com/", + "description": "BiCity,a cutting-edge firm specializing in AI-driven projects.From crafting articles to generating visuals, editing images, and delving into sound-related AI endeavors, BiCity stands at the forefront of innovation, leveraging artificial intelligence to redefine creative processes.", + "explorer": "https://bscscan.com/token/0x6fa9c0ee8a1f237466bb9cac8466bfa2aa63a978", + "status": "active", + "id": "0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bicitycom" + }, + { + "name": "telegram", + "url": "https://t.me/bicitycoinchat" + }, + { + "name": "telegram_news", + "url": "https://t.me/bicitycom" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bicity-ai-projects/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/bicity-ai-projects" + }, + { + "name": "youtube", + "url": "https://youtube.com/@bicitycom" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978/logo.png b/blockchains/smartchain/assets/0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978/logo.png new file mode 100644 index 0000000000000..0611dd1f5abee Binary files /dev/null and b/blockchains/smartchain/assets/0x6Fa9C0EE8a1F237466bB9CAc8466bFA2aA63A978/logo.png differ diff --git a/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json b/blockchains/smartchain/assets/0x6a731582f6189477c379A8da7d26Dcec3F0a0919/info.json index 012e501462010..6a93578f19dcc 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 0000000000000..e335481c034cf --- /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 0000000000000..201578d591fb8 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 0000000000000..9ccf1b04630f4 --- /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 0000000000000..45dad943cad6c Binary files /dev/null and b/blockchains/smartchain/assets/0x6ec07DbD9311975b8002079d70C6F6d9E3e1EE5C/logo.png differ diff --git a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json b/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json index de34a50293bd3..dc9e22dd7db27 100644 --- a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json +++ b/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/info.json @@ -6,6 +6,6 @@ "type": "BEP20", "symbol": "PVM", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x71afF23750db1f4edbE32C942157a478349035b2" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/logo.png b/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/logo.png deleted file mode 100644 index 425cbb5291ad3..0000000000000 Binary files a/blockchains/smartchain/assets/0x71afF23750db1f4edbE32C942157a478349035b2/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/info.json b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/info.json new file mode 100644 index 0000000000000..da53cb67bf5d2 --- /dev/null +++ b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/info.json @@ -0,0 +1,32 @@ +{ + "name": "Sekuya", + "type": "BEP20", + "symbol": "SKUY", + "decimals": 9, + "website": "https://sekuya.io/", + "description": "The New Earth Multiverse - Sekuya exists to be a virtual world full of excitement for everyone. Borderless. Decentralized.", + "explorer": "https://bscscan.com/token/0x71d03a620646f8b572282ef39228d36add67ee20", + "status": "active", + "id": "0x71d03A620646f8b572282Ef39228D36Add67ee20", + "links": [ + { + "name": "telegram", + "url": "https://t.me/sekuyaofficial" + }, + { + "name": "twitter", + "url": "https://twitter.com/Sekuyaofficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sekuya/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sekuya" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/logo.png b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/logo.png new file mode 100644 index 0000000000000..aab7d66f52860 Binary files /dev/null and b/blockchains/smartchain/assets/0x71d03A620646f8b572282Ef39228D36Add67ee20/logo.png differ diff --git a/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/info.json b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/info.json new file mode 100644 index 0000000000000..359c4030d6131 --- /dev/null +++ b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/info.json @@ -0,0 +1,29 @@ +{ + "name": "WEB3MET", + "type": "BEP20", + "symbol": "W3M", + "decimals": 18, + "website": "https://web3met.com", + "description": "The W3M token will be the native digital currency of the Web3Met metaverse. All transactions ranging from buying digital land, trading NFT items, to booking event space will be using the W3M token. W3M will fuel the activities within this digital city.", + "explorer": "https://bscscan.com/token/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78", + "status": "active", + "id": "0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/web3met" + }, + { + "name": "telegram", + "url": "https://t.me/W3MWEB3MET" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x7208a2671a2f96950d44c6daaf24719ce44dea78#code#L1" + } + ], + "tags": [ + "nft", + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/logo.png b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/logo.png new file mode 100644 index 0000000000000..99bcbded70bf3 Binary files /dev/null and b/blockchains/smartchain/assets/0x7208A2671a2f96950D44C6dAAF24719Ce44dEA78/logo.png differ diff --git a/blockchains/smartchain/assets/0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB/info.json b/blockchains/smartchain/assets/0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB/info.json new file mode 100644 index 0000000000000..bb44b8eae823a --- /dev/null +++ b/blockchains/smartchain/assets/0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB/info.json @@ -0,0 +1,21 @@ +{ + "name": "NFPrompt", + "website": "https://nfprompt.io", + "description": "NFPrompt is an AI-driven UGC platform designed for the new generation of Web3 creators. It's an all-in-one platform with the power of AI-creation, social community, and commercialization.", + "explorer": "https://bscscan.com/token/0x75e8ddb518bb757b4282cd5b83bb70d4101d12fb", + "symbol": "NFP", + "type": "BEP20", + "decimals": 18, + "status": "abandoned", + "id": "0x75E8ddB518bB757b4282cd5b83bb70d4101D12FB", + "links": [ + { + "name": "telegram", + "url": "https://t.me/nfprompt" + }, + { + "name": "twitter", + "url": "https://twitter.com/nfprompt" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/info.json b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/info.json new file mode 100644 index 0000000000000..1ee4eb74d7ba1 --- /dev/null +++ b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/info.json @@ -0,0 +1,32 @@ +{ + "name": "PVC META", + "type": "BEP20", + "symbol": "PVC", + "decimals": 9, + "website": "https://pvcmeta.io/", + "description": "PVC Meta is your premier source for everything cryptocurrency related. PVC Meta is definitely the most trusted and leading cryptocurrency on all digital platforms which is based on Binance smart chain", + "explorer": "https://bscscan.com/token/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3", + "status": "active", + "id": "0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/pvcmeta" + }, + { + "name": "github", + "url": "https://github.com/pvcmetaofficial" + }, + { + "name": "telegram", + "url": "https://t.me/PVCMETATKN" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pvc-meta/" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/logo.png b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/logo.png new file mode 100644 index 0000000000000..828b3695b69ba Binary files /dev/null and b/blockchains/smartchain/assets/0x75ca521892DE7f2ecFB070Cab545c250d0cEB7e3/logo.png differ diff --git a/blockchains/smartchain/assets/0x79CDc9cA057E16dFfd45BD803491f328f49e1762/info.json b/blockchains/smartchain/assets/0x79CDc9cA057E16dFfd45BD803491f328f49e1762/info.json new file mode 100644 index 0000000000000..c80e3ae2f3103 --- /dev/null +++ b/blockchains/smartchain/assets/0x79CDc9cA057E16dFfd45BD803491f328f49e1762/info.json @@ -0,0 +1,24 @@ +{ + "name": "BitFloki", + "type": "BEP20", + "symbol": "BFLOKI", + "decimals": 9, + "website": "https://bitfloki.io/", + "description": "BitFloki isn't your average token—it's a meme token revolution! We're here to shake up the meme token scene while providing equal opportunities for financial success. Our community-driven approach fosters inclusivity, ensuring everyone feels part of the meme token frenzy. BitFloki embraces the playful spirit of meme tokens while championing decentralization, putting the power in the hands of our vibrant community. With BitFloki, everyone can join the fun and ride the wave of meme token excitement toward success.", + "explorer": "https://bscscan.com/token/0x79CDc9cA057E16dFfd45BD803491f328f49e1762", + "status": "active", + "id": "0x79CDc9cA057E16dFfd45BD803491f328f49e1762", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BitFloki_io" + }, + { + "name": "telegram", + "url": "https://t.me/BitFloki_io" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x79CDc9cA057E16dFfd45BD803491f328f49e1762/logo.png b/blockchains/smartchain/assets/0x79CDc9cA057E16dFfd45BD803491f328f49e1762/logo.png new file mode 100644 index 0000000000000..8db792dafdd11 Binary files /dev/null and b/blockchains/smartchain/assets/0x79CDc9cA057E16dFfd45BD803491f328f49e1762/logo.png differ diff --git a/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/info.json b/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/info.json index f20796c291991..de8eac8827bdc 100644 --- a/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/info.json +++ b/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "CATGIRL", "decimals": 9, - "status": "active", + "status": "abandoned", "id": "0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936", "tags": [ "deflationary" diff --git a/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/logo.png b/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/logo.png deleted file mode 100644 index e7bc9fd75c29f..0000000000000 Binary files a/blockchains/smartchain/assets/0x79eBC9A2ce02277A4b5b3A768b1C0A4ed75Bd936/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/info.json b/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/info.json index 731c65e32e41c..0cf02d4801b81 100644 --- a/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/info.json +++ b/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "MEGALAND", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33", "tags": [ "deflationary" diff --git a/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/logo.png b/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/logo.png deleted file mode 100644 index cc7581628f390..0000000000000 Binary files a/blockchains/smartchain/assets/0x7CD8c22D3F4b66230F73D7FfCB48576233c3fe33/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x7DB54758503c25200B331131C219acD64CFa74c8/info.json b/blockchains/smartchain/assets/0x7DB54758503c25200B331131C219acD64CFa74c8/info.json new file mode 100644 index 0000000000000..cc2af20eb9c6b --- /dev/null +++ b/blockchains/smartchain/assets/0x7DB54758503c25200B331131C219acD64CFa74c8/info.json @@ -0,0 +1,28 @@ +{ + "name": "Classic USDC", + "type": "BEP20", + "symbol": "USDC", + "decimals": 18, + "website": "https://classicusdc.com", + "description": "Classic USDC is a stablecoin pegged to the value of the US dollar. It is designed to provide stability and reliability in the volatile cryptocurrency market, with each Classic USDC token backed by a corresponding US dollar held in reserve.", + "explorer": "https://bscscan.com/token/0x7DB54758503c25200B331131C219acD64CFa74c8", + "status": "abandoned", + "id": "0x7DB54758503c25200B331131C219acD64CFa74c8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Classic_USDC" + }, + { + "name": "telegram", + "url": "https://t.me/classicusdc" + }, + { + "name": "facebook", + "url": "https://facebook.com/" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json b/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json index 2280e81e91ee8..d429db3666718 100644 --- a/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json +++ b/blockchains/smartchain/assets/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989/info.json @@ -1,10 +1,10 @@ { - "name": "Gomining", + "name": "GoMining", "website": "https://gomining.com/", "description": "Gomining is an exchange token backed by a Top 10 global bitcoin mining project.", "explorer": "https://bscscan.com/token/0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989", "type": "BEP20", - "symbol": "GMT", + "symbol": "GOMINING", "decimals": 18, "status": "active", "id": "0x7Ddc52c4De30e94Be3A6A0A2b259b2850f421989", diff --git a/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/info.json b/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/info.json index 13822be5d2de0..5cb034d7336c6 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 c3045348fbd1c..5bc8414cd2469 100644 Binary files a/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/logo.png and b/blockchains/smartchain/assets/0x7E35D0e9180bF3A1fc47b0d110bE7a21A10B41Fe/logo.png differ diff --git a/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/info.json b/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/info.json index 33e46a8080b32..2ed8cfc097573 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 c1a6a7a900504..0000000000000 Binary files a/blockchains/smartchain/assets/0x7dDEE176F665cD201F93eEDE625770E2fD911990/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json b/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json index af57062f3958b..554951dc397e0 100644 --- a/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json +++ b/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/info.json @@ -6,7 +6,7 @@ "website": "https://voltinu.in", "description": "Volt Inu is a hyper-deflationary token whose aim is to invest in multiple asset classes such as NFTs, nodes, altcoins, staking & farming of stablecoins. This investment diversity allows to mitigate the risk while taking advantage of the possible non-correlated growth of the trending assets.", "explorer": "https://bscscan.com/token/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", - "status": "active", + "status": "abandoned", "id": "0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac", "links": [ { diff --git a/blockchains/smartchain/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json b/blockchains/smartchain/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json new file mode 100644 index 0000000000000..21c80dd950674 --- /dev/null +++ b/blockchains/smartchain/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/info.json @@ -0,0 +1,48 @@ +{ + "name": "Volt Inu", + "type": "BEP20", + "symbol": "VOLT", + "decimals": 9, + "website": "https://voltinu.in", + "description": "Volt Inu ($VOLT) is a hyper-deflationary token whose aim is to invest in multiple asset classes such as NFTs, nodes, altcoins, staking & farming of stablecoins. This investment diversity allows to mitigate the risk while taking advantage of the possible non-correlated growth of the trending assets.", + "explorer": "https://bscscan.com/token/0x7f792db54b0e580cdc755178443f0430cf799aca", + "status": "active", + "id": "0x7f792db54B0e580Cdc755178443f0430Cf799aCa", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/VoltInuOfficial" + }, + { + "name": "telegram", + "url": "https://t.me/VoltInuOfficial" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Volt_Inu/" + }, + { + "name": "whitepaper", + "url": "https://voltinu.in/Whitepaper_v1.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCDLlAleEEmhc7pVdB5pZWFg" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/volt-inu-v2/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/volt-inu" + }, + { + "name": "medium", + "url": "https://medium.com/@VoltInu" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/logo.png b/blockchains/smartchain/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x7db5af2B9624e1b3B4Bb69D6DeBd9aD1016A58Ac/logo.png rename to blockchains/smartchain/assets/0x7f792db54B0e580Cdc755178443f0430Cf799aCa/logo.png diff --git a/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/info.json b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/info.json new file mode 100644 index 0000000000000..973ec8a77a8ba --- /dev/null +++ b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/info.json @@ -0,0 +1,36 @@ +{ + "name": "GridX", + "type": "BEP20", + "symbol": "GDX", + "decimals": 18, + "website": "https://gridxecosystem.com", + "description": "GridX is a decentralized finance (DeFi) project that has recently gained attention in the cryptocurrency world. This project aims to address some of the issues that have plagued the DeFi space, such as high transaction fees, low transaction speeds, and limited scalability.", + "explorer": "https://bscscan.com/token/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2", + "status": "active", + "id": "0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GridxEcosystem" + }, + { + "name": "github", + "url": "https://github.com/gridxeco" + }, + { + "name": "telegram", + "url": "https://t.me/gridxfinance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gridx-ecosystem/" + }, + { + "name": "whitepaper", + "url": "https://gridxecosystem.com/img/whitepaper.pdf" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/logo.png b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/logo.png new file mode 100644 index 0000000000000..ee164b461d0ff Binary files /dev/null and b/blockchains/smartchain/assets/0x7fFb5A90cdbd2aE2A65d5bFe259AC936Cc302bE2/logo.png differ diff --git a/blockchains/smartchain/assets/0x80C260cd80d8a2855b554A7d5001BD06421a6fd4/info.json b/blockchains/smartchain/assets/0x80C260cd80d8a2855b554A7d5001BD06421a6fd4/info.json new file mode 100644 index 0000000000000..e804a5ff6b8a7 --- /dev/null +++ b/blockchains/smartchain/assets/0x80C260cd80d8a2855b554A7d5001BD06421a6fd4/info.json @@ -0,0 +1,28 @@ +{ + "name": "The Green World", + "type": "BEP20", + "symbol": "TGW", + "decimals": 18, + "website": "https://thegreenworld.net/", + "description": "A pioneering project at the intersection of blockchain technology and environmental sustainability. Our mission is to create a greener, more sustainable world through innovative blockchain solutions and community-driven efforts.", + "explorer": "https://bscscan.com/token/0x80C260cd80d8a2855b554A7d5001BD06421a6fd4", + "status": "active", + "id": "0x80C260cd80d8a2855b554A7d5001BD06421a6fd4", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GreenTgw97676" + }, + { + "name": "github", + "url": "https://github.com/devthegreenworld/" + }, + { + "name": "whitepaper", + "url": "https://thegreenworld.net/TGW-Whitepaper.pdf" + } + ], + "tags": [ + "staking-native" + ] +} diff --git a/blockchains/smartchain/assets/0x80C260cd80d8a2855b554A7d5001BD06421a6fd4/logo.png b/blockchains/smartchain/assets/0x80C260cd80d8a2855b554A7d5001BD06421a6fd4/logo.png new file mode 100644 index 0000000000000..b3ee1260a379e Binary files /dev/null and b/blockchains/smartchain/assets/0x80C260cd80d8a2855b554A7d5001BD06421a6fd4/logo.png differ diff --git a/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/info.json b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/info.json new file mode 100644 index 0000000000000..39386a049c506 --- /dev/null +++ b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/info.json @@ -0,0 +1,44 @@ +{ + "name": "TRUMP", + "type": "BEP20", + "symbol": "MAGA", + "decimals": 9, + "website": "https://trumpmaga.dev", + "description": "MAGA Movement on the Blockchain. Powered by AI Technology.", + "explorer": "https://bscscan.com/token/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8", + "status": "active", + "id": "0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/maga_bnb" + }, + { + "name": "github", + "url": "https://github.com/trumpmagadev" + }, + { + "name": "telegram", + "url": "https://t.me/trump_eng" + }, + { + "name": "source_code", + "url": "https://bscscan.com/address/0x8479b19c5a3c43e024b2543582af0fc2fef2e6a8#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trump-maga/" + }, + { + "name": "docs", + "url": "https://doc.trumpmaga.dev/" + }, + { + "name": "medium", + "url": "https://medium.com/@maga_bnb" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/logo.png b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/logo.png new file mode 100644 index 0000000000000..e40c5e6a14a71 Binary files /dev/null and b/blockchains/smartchain/assets/0x8479B19c5a3C43e024B2543582af0FC2fEf2E6A8/logo.png differ diff --git a/blockchains/smartchain/assets/0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09/info.json b/blockchains/smartchain/assets/0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09/info.json new file mode 100644 index 0000000000000..5dc14f9121e2b --- /dev/null +++ b/blockchains/smartchain/assets/0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09/info.json @@ -0,0 +1,25 @@ +{ + "name": "SerenityShield", + "website": "https://www.serenityshield.io/", + "description": "Serenity Shield is a self-custodial, privacy-centric digital data storage platform built on the blockchain, featuring a built-in inheritance protocol. It serves various use cases, including storage, recovery, and estate planning for wallet seed phrases and diverse digital data types.", + "explorer": "https://bscscan.com/token/0x84affeef925cdce87f8a99b7b2e540da5140fc09", + "type": "BEP20", + "symbol": "SERSH", + "decimals": 18, + "status": "active", + "id": "0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09", + "links": [ + { + "name": "telegram", + "url": "https://t.me/serenityshield" + }, + { + "name": "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/0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09/logo.png b/blockchains/smartchain/assets/0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09/logo.png new file mode 100644 index 0000000000000..9601f043461ff Binary files /dev/null and b/blockchains/smartchain/assets/0x84affEEf925Cdce87f8A99B7b2E540dA5140Fc09/logo.png differ diff --git a/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/info.json b/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/info.json new file mode 100644 index 0000000000000..ef2e47e1a6a65 --- /dev/null +++ b/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/info.json @@ -0,0 +1,22 @@ +{ + "name": "Saka Vault", + "website": "https://sakavault.io/", + "description": "SakaVault - decentralized perpetual exchange produced through the collaboration of three leading companies from the United Kingdom, Singapore, and India.", + "explorer": "https://bscscan.com/token/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD", + "symbol": "SAKA", + "type": "BEP20", + "decimals": 18, + "status": "active", + "id": "0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD", + "tags": ["staking", "defi"], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/sakavault_io" + }, + { + "name": "telegram_news", + "url": "https://t.me/saka_vault" + } + ] +} diff --git a/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/logo.png b/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/logo.png new file mode 100644 index 0000000000000..adb3f79dfe9d3 Binary files /dev/null and b/blockchains/smartchain/assets/0x855C172281E2f0A8aC59248c04CfD47a7F40E8dD/logo.png differ diff --git a/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/info.json b/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/info.json new file mode 100644 index 0000000000000..7861f3bc7507c --- /dev/null +++ b/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/info.json @@ -0,0 +1,37 @@ +{ + "name": "FitBurn", + "type": "BEP20", + "symbol": "CAL", + "decimals": 18, + "website": "https://www.fitburn.ai", + "description": "Fitburn is the world's first AI-powered burn-to-earn fitness app, which is revolutionizing lifestyle & health. This innovative fitness app combines cutting-edge AI mechanics with NFT rewards to motivate users to reach their fitness goals. Earn rewards for exercising and join a community of like-minded fitness enthusiasts.", + "explorer": "https://bscscan.com/token/0x859c940f080b197659b3effc804fd622df66f0a1", + "status": "active", + "id": "0x859C940F080B197659b3EfFc804fD622Df66f0a1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/fitburn_ai" + }, + { + "name": "telegram", + "url": "https://t.me/fitburngroup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fitburn/" + }, + { + "name": "github", + "url": "https://github.com/FitburnEngineering/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/fitburn" + } + ], + "tags": [ + "governance", + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/logo.png b/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/logo.png new file mode 100644 index 0000000000000..64dec636e0ee1 Binary files /dev/null and b/blockchains/smartchain/assets/0x859C940F080B197659b3EfFc804fD622Df66f0a1/logo.png differ diff --git a/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/info.json b/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/info.json index 2fa14b4f5c3af..8fd135b3bbc91 100644 --- a/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/info.json +++ b/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/info.json @@ -6,7 +6,7 @@ "website": "https://cryptosnacks.org/", "description": "Crypto Snack is the world’s fastest growing iGaming token", "explorer": "https://bscscan.com/token/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657", - "status": "active", + "status": "abandoned", "id": "0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657", "links": [ { @@ -49,8 +49,5 @@ "name": "discord", "url": "https://discord.com/invite/NyemjyETwA" } - ], - "tags": [ - "staking-native" ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/logo.png b/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/logo.png deleted file mode 100644 index a33a3d44d18e5..0000000000000 Binary files a/blockchains/smartchain/assets/0x86aCCc2580dA5Bd522A0eEc7C881A0d4f33De657/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json b/blockchains/smartchain/assets/0x8717e80EfF08F53A45b4A925009957E14860A8a8/info.json index 05169b984575f..a5e3787f618f3 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/0x88479186BAC914E4313389a64881F5ed0153C765/info.json b/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/info.json index 737755caec8a3..5850b8922011f 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 7477aad4584ea..0000000000000 Binary files a/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x8888888888821672ABBA04f584E8343A9242B3aa/info.json b/blockchains/smartchain/assets/0x8888888888821672ABBA04f584E8343A9242B3aa/info.json new file mode 100644 index 0000000000000..87ba2e6eb3c29 --- /dev/null +++ b/blockchains/smartchain/assets/0x8888888888821672ABBA04f584E8343A9242B3aa/info.json @@ -0,0 +1,21 @@ +{ + "name": "Buy", + "website": "https://buybsc.top/", + "description": "Buy has a perfect ecological Buy mechanism such as large-scale sniper robot +Swap+ chain tour.", + "explorer": "https://bscscan.com/token/0x8888888888821672abba04f584e8343a9242b3aa", + "symbol": "Buy", + "type": "BEP20", + "decimals": 9, + "status": "active", + "id": "0x8888888888821672ABBA04f584E8343A9242B3aa", + "links": [ + { + "name": "telegram", + "url": "https://t.me/BuyGCSQ" + }, + { + "name": "twitter", + "url": "https://twitter.com/BuyGCSQ" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8888888888821672ABBA04f584E8343A9242B3aa/logo.png b/blockchains/smartchain/assets/0x8888888888821672ABBA04f584E8343A9242B3aa/logo.png new file mode 100644 index 0000000000000..8ba144f63fdad Binary files /dev/null and b/blockchains/smartchain/assets/0x8888888888821672ABBA04f584E8343A9242B3aa/logo.png differ diff --git a/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/info.json b/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/info.json new file mode 100644 index 0000000000000..a9caae0910dbd --- /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 0000000000000..99779d45fb570 Binary files /dev/null and b/blockchains/smartchain/assets/0x88DA9901B3A02fE24E498e1eD683D2310383E295/logo.png differ diff --git a/blockchains/smartchain/assets/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/info.json b/blockchains/smartchain/assets/0x8C907e0a72C3d55627E853f4ec6a96b0C8771145/info.json new file mode 100644 index 0000000000000..c107dbaa313ed --- /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 0000000000000..e610bbed620f8 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 0000000000000..afe12c9d79239 --- /dev/null +++ b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/info.json @@ -0,0 +1,40 @@ +{ + "name": "Rimaunangis", + "type": "BEP20", + "symbol": "RXT", + "decimals": 18, + "website": "https://www.rimaunangis.world", + "description": "Tokenization for Food Chain and Lifestyle as Bridge of Metaworld Ecosystem", + "explorer": "https://bscscan.com/token/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01", + "status": "active", + "id": "0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/RimaunangisRXT" + }, + { + "name": "facebook", + "url": "https://facebook.com/Rimaunangis-Digital-LLC-107415268757938/" + }, + { + "name": "telegram", + "url": "https://t.me/rimaunangis_official" + }, + { + "name": "telegram_news", + "url": "https://t.me/Rimau_Nangis" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rimaunangis/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rimaunangis" + } + ], + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/logo.png b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/logo.png new file mode 100644 index 0000000000000..232f1cd502cb0 Binary files /dev/null and b/blockchains/smartchain/assets/0x8D1427a32F0A4C4BF052252e68E7FF1B2Ba80c01/logo.png differ diff --git a/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/info.json b/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/info.json new file mode 100644 index 0000000000000..1a43c12b173aa --- /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 0000000000000..7b59e64247d7f Binary files /dev/null and b/blockchains/smartchain/assets/0x8Ea43e15b1a616a19903F6A87498F7dCa1efae0f/logo.png differ diff --git a/blockchains/smartchain/assets/0x8b1869f79b9abF52001314A2E6990A96F039058D/info.json b/blockchains/smartchain/assets/0x8b1869f79b9abF52001314A2E6990A96F039058D/info.json new file mode 100644 index 0000000000000..83cfbb4459c8a --- /dev/null +++ b/blockchains/smartchain/assets/0x8b1869f79b9abF52001314A2E6990A96F039058D/info.json @@ -0,0 +1,21 @@ +{ + "name": "Andy", + "type": "BEP20", + "symbol": "ANDY", + "website": "https://andybnb.vip/", + "explorer": "https://bscscan.com/token/0x8b1869f79b9abF52001314A2E6990A96F039058D", + "decimals": 9, + "description": "Hi, I'm Andy, a cute yellow dog and arguably the most important character from Matt Furie's 'Boy's Club' comics.", + "status": "active", + "id": "0x8b1869f79b9abF52001314A2E6990A96F039058D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/andycoinbsc" + }, + { + "name": "twitter", + "url": "https://twitter.com/andycoinbsc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x8b1869f79b9abF52001314A2E6990A96F039058D/logo.png b/blockchains/smartchain/assets/0x8b1869f79b9abF52001314A2E6990A96F039058D/logo.png new file mode 100644 index 0000000000000..232a2ee388ed3 Binary files /dev/null and b/blockchains/smartchain/assets/0x8b1869f79b9abF52001314A2E6990A96F039058D/logo.png differ diff --git a/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json b/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json index e23ce6c77be5d..ea97a972e367a 100644 --- a/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json +++ b/blockchains/smartchain/assets/0x8f36Cc333F55B09Bb71091409A3d7ADE399e3b1C/info.json @@ -31,7 +31,6 @@ } ], "tags": [ - "staking-native", "wrapped" ] } diff --git a/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/info.json b/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/info.json index 15b0ce8e0129c..0f2692c51c4e2 100644 --- a/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/info.json +++ b/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/info.json @@ -6,7 +6,7 @@ "website": "https://fqswap.org/", "description": "FQS is a hyper deflationary token created and thought by holders, it work as an independent liquidity generation protocol and Frictionless autonomous yield farming together with manual buyback features.FQS Holders benefit through static reward and also Through the Buy-Back strategy built into the contract.All You need to do is hold FQS.", "explorer": "https://bscscan.com/token/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0", - "status": "active", + "status": "abandoned", "id": "0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0", "links": [ { diff --git a/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/logo.png b/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/logo.png deleted file mode 100644 index e6e0da6be0d0b..0000000000000 Binary files a/blockchains/smartchain/assets/0x9075055C3Ee590Ee0d7a2e1EF4376A851369E8E0/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x91dba2CD05c8A0227B48c3e426077145d23B21df/info.json b/blockchains/smartchain/assets/0x91dba2CD05c8A0227B48c3e426077145d23B21df/info.json new file mode 100644 index 0000000000000..613646b809c1c --- /dev/null +++ b/blockchains/smartchain/assets/0x91dba2CD05c8A0227B48c3e426077145d23B21df/info.json @@ -0,0 +1,52 @@ +{ + "name": "Papu Token", + "type": "BEP20", + "symbol": "PAPU", + "decimals": 18, + "website": "https://paputoken.com", + "description": "PAPU Token is a meme coin inspired by the Papu video game character, created for entertainment purposes and community focus. It presents itself as the 'PAPU' of meme coins. It is a meme coin with no financial return expectations. It is not connected with any game, individual, or company.", + "explorer": "https://bscscan.com/token/0x91dba2CD05c8A0227B48c3e426077145d23B21df", + "status": "active", + "id": "0x91dba2CD05c8A0227B48c3e426077145d23B21df", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/PapuTokenCom" + }, + { + "name": "telegram", + "url": "https://t.me/PapuToken" + }, + { + "name": "telegram_news", + "url": "https://t.me/PapuNews" + }, + { + "name": "youtube", + "url": "https://youtube.com/@PapuToken" + }, + { + "name": "medium", + "url": "https://medium.com/@paputoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/papu-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/papu-token" + }, + { + "name": "discord", + "url": "https://discord.com/invite/papu" + }, + { + "name": "facebook", + "url": "https://facebook.com/PapuTokencom" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/smartchain/assets/0x91dba2CD05c8A0227B48c3e426077145d23B21df/logo.png b/blockchains/smartchain/assets/0x91dba2CD05c8A0227B48c3e426077145d23B21df/logo.png new file mode 100644 index 0000000000000..e37ebebdd4df2 Binary files /dev/null and b/blockchains/smartchain/assets/0x91dba2CD05c8A0227B48c3e426077145d23B21df/logo.png differ diff --git a/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/logo.png b/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/logo.png index 3abe7213af475..91bbd52b5176e 100644 Binary files a/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/logo.png and b/blockchains/smartchain/assets/0x92eD61FB8955Cc4e392781cB8b7cD04AADc43D0c/logo.png differ diff --git a/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json b/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json index 73361abeb4533..511e509d186d4 100644 --- a/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json +++ b/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/info.json @@ -6,7 +6,7 @@ "website": "https://www.dypius.com/", "description": "Dypius is a powerful, decentralized ecosystem with a focus on scalability, security, and global adoption through next-gen infrastructure. We offer a variety of products and services that cater to both beginners and advanced users in the crypto space including DeFi solutions, analytical tools, NFTs, Metaverse and more!", "explorer": "https://bscscan.com/token/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", - "status": "active", + "status": "abandoned", "id": "0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17", "links": [ { @@ -41,7 +41,6 @@ "tags": [ "governance", "nft", - "defi", - "staking-native" + "defi" ] } diff --git a/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png b/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png deleted file mode 100644 index 129342cfae435..0000000000000 Binary files a/blockchains/smartchain/assets/0x961C8c0B1aaD0c0b10a51FeF6a867E3091BCef17/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79/info.json b/blockchains/smartchain/assets/0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79/info.json new file mode 100644 index 0000000000000..95a97c5e513f7 --- /dev/null +++ b/blockchains/smartchain/assets/0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79/info.json @@ -0,0 +1,36 @@ +{ + "name": "TreasureTV", + "type": "BEP20", + "symbol": "USDTV", + "decimals": 18, + "website": "https://usdtv.org/", + "description": "USDTV is a cryptocurrency anchored in blockchain, integrating concepts of decentralized finance (DeFi) with television engagement. Its issuance and value are initially determined by a dynamic Television Engagement Index, reflecting the popularity, consumption, and interaction with television content. Over time, the value of USDTV is stabilized in relation to the US dollar, through adjustment algorithms and governance policies, ensuring a stable foundation for transactions and investments.", + "explorer": "https://bscscan.com/token/0x9906dbded3dbf64a1f69b6e89a5c9f2e94d12a79", + "status": "active", + "id": "0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/TetherTV_" + }, + { + "name": "github", + "url": "https://github.com/trustwallet/assets/pull/27618" + }, + { + "name": "telegram", + "url": "https://t.me/UsdtvGroup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/pt-br/currencies/tethertv/" + }, + { + "name": "whitepaper", + "url": "https://usdtv.gitbook.io/whitepapper-usdtv" + } + ], + "tags": [ + "stablecoin" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79/logo.png b/blockchains/smartchain/assets/0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79/logo.png new file mode 100644 index 0000000000000..cd7490c9c9df6 Binary files /dev/null and b/blockchains/smartchain/assets/0x9906DBDeD3dbf64A1f69b6E89a5c9f2E94d12a79/logo.png differ diff --git a/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json b/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json index 5c1c24f62593b..a749464a0e1ba 100644 --- a/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json +++ b/blockchains/smartchain/assets/0x9953170dcAac530AD7D6949c7295207c6ec5669D/info.json @@ -34,7 +34,6 @@ "nft", "staking", "memes", - "gamefi", - "staking-native" + "gamefi" ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x998305efDC264b9674178899FFfBb44a47134a76/info.json b/blockchains/smartchain/assets/0x998305efDC264b9674178899FFfBb44a47134a76/info.json new file mode 100644 index 0000000000000..c9a3b46850d03 --- /dev/null +++ b/blockchains/smartchain/assets/0x998305efDC264b9674178899FFfBb44a47134a76/info.json @@ -0,0 +1,21 @@ +{ + "name": "Gaimin", + "type": "BEP20", + "symbol": "GMRX", + "decimals": 18, + "website": "https://www.gaimin.io/", + "description": "The GMRX token is a utility token for exclusive use on the GAIMIN PC gaming platform, to enhance your gaming experience, have more fun in our Metaverse, create and own your own gaming NFTs and in-game assets, and more.", + "explorer": "https://bscscan.com/token/0x998305efDC264b9674178899FFfBb44a47134a76", + "status": "active", + "id": "0x998305efDC264b9674178899FFfBb44a47134a76", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GaiminIo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gaimin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x998305efDC264b9674178899FFfBb44a47134a76/logo.png b/blockchains/smartchain/assets/0x998305efDC264b9674178899FFfBb44a47134a76/logo.png new file mode 100644 index 0000000000000..6546dcaca0354 Binary files /dev/null and b/blockchains/smartchain/assets/0x998305efDC264b9674178899FFfBb44a47134a76/logo.png differ diff --git a/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/info.json b/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/info.json new file mode 100644 index 0000000000000..0f21b42f9c62c --- /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 0000000000000..8fd8d3e70ba4d Binary files /dev/null and b/blockchains/smartchain/assets/0x99956D38059cf7bEDA96Ec91Aa7BB2477E0901DD/logo.png differ diff --git a/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/info.json b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/info.json new file mode 100644 index 0000000000000..5b4c202a3da18 --- /dev/null +++ b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/info.json @@ -0,0 +1,28 @@ +{ + "name": "Platform of meme coins", + "type": "BEP20", + "symbol": "PAYU", + "decimals": 18, + "website": "http://www.memecoins.finance/", + "description": "The most catchy memecoin out there that anyone can win. Platform of meme coins. Shop with your meme coins. Stake or earn meme coins.", + "explorer": "https://bscscan.com/token/0x9aeb2e6dd8d55e14292acfcfc4077e33106e4144", + "status": "active", + "id": "0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/payu_coin" + }, + { + "name": "telegram", + "url": "https://t.me/payu_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/platform-of-meme-coins/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/logo.png b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/logo.png new file mode 100644 index 0000000000000..de6546b7fd72e Binary files /dev/null and b/blockchains/smartchain/assets/0x9AeB2E6DD8d55E14292ACFCFC4077e33106e4144/logo.png differ diff --git a/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/info.json b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/info.json new file mode 100644 index 0000000000000..956543b93c630 --- /dev/null +++ b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/info.json @@ -0,0 +1,24 @@ +{ + "name": "Natronz", + "type": "BEP20", + "symbol": "NTZ", + "decimals": 18, + "website": "https://natronz.com/", + "description": "NatronZ aims to empower our investors by pushing the boundaries of investment profitability through advanced technological enhancements, taking it to a superior level.", + "explorer": "https://bscscan.com/token/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD", + "status": "active", + "id": "0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/natronzofficial" + }, + { + "name": "facebook", + "url": "https://facebook.com/natronzofficial" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/logo.png b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/logo.png new file mode 100644 index 0000000000000..1a14dd8ae40f5 Binary files /dev/null and b/blockchains/smartchain/assets/0x9B9D7eb1816E35Ecf3B3ab58B08257C8d47F15CD/logo.png differ diff --git a/blockchains/smartchain/assets/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb/info.json b/blockchains/smartchain/assets/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb/info.json new file mode 100644 index 0000000000000..8e3a5b5448426 --- /dev/null +++ b/blockchains/smartchain/assets/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb/info.json @@ -0,0 +1,36 @@ +{ + "name": "Playbux", + "type": "BEP20", + "symbol": "PBUX", + "decimals": 18, + "website": "https://www.playbux.co/", + "description": "The largest web3 entertainment platform in the world. Backed by Binance Labs and VISA Accelerator 2023", + "explorer": "https://bscscan.com/token/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb", + "status": "active", + "id": "0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb", + "tags": [ + "dapp" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/playbuxco" + }, + { + "name": "telegram", + "url": "https://t.me/playbuxchannel" + }, + { + "name": "discord", + "url": "https://discord.com/invite/playbuxco" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/playbux/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/playbux" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb/logo.png b/blockchains/smartchain/assets/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb/logo.png new file mode 100644 index 0000000000000..af880bee3a23c Binary files /dev/null and b/blockchains/smartchain/assets/0x9D1d4dE9cD93203147fAc3BC0262a78e3a0e96bb/logo.png differ diff --git a/blockchains/smartchain/assets/0x9D6dB6382444b70a51307A4291188f60D4EEF205/info.json b/blockchains/smartchain/assets/0x9D6dB6382444b70a51307A4291188f60D4EEF205/info.json new file mode 100644 index 0000000000000..5c0db6e5fcc3b --- /dev/null +++ b/blockchains/smartchain/assets/0x9D6dB6382444b70a51307A4291188f60D4EEF205/info.json @@ -0,0 +1,32 @@ +{ + "name": "Baby Pepe", + "type": "BEP20", + "symbol": "BABYPEPE", + "decimals": 9, + "website": "https://babypepetoken.io/", + "description": "Baby Pepe is a meme coin inspired by the Pepe narrative on the BNB Chain. Thanks to its charm -audited by CERTIK- Baby Pepe quickly attracted a large community in just a few weeks. The daily Baby Pepe Roulette event unites the entire community, offering participants the chance to win fantastic prizes!", + "explorer": "https://bscscan.com/token/0x9d6db6382444b70a51307a4291188f60d4eef205", + "status": "active", + "id": "0x9D6dB6382444b70a51307A4291188f60D4EEF205", + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/groups/babypepe" + }, + { + "name": "twitter", + "url": "https://twitter.com/BabyPepeBNB" + }, + { + "name": "telegram", + "url": "https://t.me/BabyPepeBep20" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/baby-pepe-io/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9D6dB6382444b70a51307A4291188f60D4EEF205/logo.png b/blockchains/smartchain/assets/0x9D6dB6382444b70a51307A4291188f60D4EEF205/logo.png new file mode 100644 index 0000000000000..f403143b5967f Binary files /dev/null and b/blockchains/smartchain/assets/0x9D6dB6382444b70a51307A4291188f60D4EEF205/logo.png differ diff --git a/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/info.json b/blockchains/smartchain/assets/0x9a980a084D8D72B219e1C79d91faf06Bec874D51/info.json index a424c9aee4417..d7660727b6099 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 0000000000000..34ed5013db1d1 --- /dev/null +++ b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/info.json @@ -0,0 +1,24 @@ +{ + "name": "Dingocoin", + "symbol": "DINGO", + "type": "BEP20", + "decimals": 8, + "description": "Dingocoin is an Scrypt AuxPow fork of Dogecoin, with a vibrant and active community that seeks to build fun projects around the coin.", + "website": "http://dingocoin.org/", + "explorer": "https://bscscan.com/token/0x9b208b117b2c4f76c1534b6f006b033220a681a4", + "status": "active", + "id": "0x9b208b117B2C4F76C1534B6f006b033220a681A4", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dingocoincrypto" + }, + { + "name": "github", + "url": "https://github.com/dingocoin/dingocoin" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/logo.png b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/logo.png new file mode 100644 index 0000000000000..488a2ec356624 Binary files /dev/null and b/blockchains/smartchain/assets/0x9b208b117B2C4F76C1534B6f006b033220a681A4/logo.png differ diff --git a/blockchains/smartchain/assets/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e/info.json b/blockchains/smartchain/assets/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e/info.json new file mode 100644 index 0000000000000..7e6386c7ef941 --- /dev/null +++ b/blockchains/smartchain/assets/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e/info.json @@ -0,0 +1,28 @@ +{ + "name": "zkRace", + "website": "https://zkrace.com/", + "description": "zkRace is a complete NFT horse racing ecosystem where you can participate in horse races, breed NFT horses with unique characteristics, build your own NFT hippodrome", + "explorer": "https://bscscan.com/token/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e", + "type": "BEP20", + "symbol": "ZERC", + "decimals": 18, + "status": "active", + "id": "0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zk_race" + }, + { + "name": "telegram", + "url": "https://t.me/zk_Race" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/derace/" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e/logo.png b/blockchains/smartchain/assets/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e/logo.png new file mode 100644 index 0000000000000..e428af9216608 Binary files /dev/null and b/blockchains/smartchain/assets/0x9c47E503b2f497e9Ad9F1c0dfA6Bd9Fd5456AA4e/logo.png differ diff --git a/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/info.json b/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/info.json new file mode 100644 index 0000000000000..91035600ef930 --- /dev/null +++ b/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/info.json @@ -0,0 +1,11 @@ +{ + "name": "VIDT Datalink BEP20", + "website": "https://about.v-id.org", + "description": "V-ID makes any digital file verifiable. The VIDT API enables organizations to protect their digital data against fraud and manipulation. A simple but strong formula, that adds and protects value at minimum expense and effort. Organizations like Airbus, AmSpec and IBM use VIDT Datalink to certify and secure digital documents like certificates, invoices, diplomas and sensor-data. VIDT Datalink products and services connect every cloud to every blockchain.", + "explorer": "https://bscscan.com/token/0x9c4a515cd72d27a4710571aca94858a53d9278d5", + "type": "BEP20", + "symbol": "VIDT", + "decimals": 18, + "status": "active", + "id": "0x9c4a515cd72D27A4710571Aca94858a53D9278D5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/logo.png b/blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x3f515f0a8e93F2E2f891ceeB3Db4e62e202d7110/logo.png rename to blockchains/smartchain/assets/0x9c4a515cd72D27A4710571Aca94858a53D9278D5/logo.png diff --git a/blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/info.json b/blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/info.json index d397a26a92897..acc760bb6bfc4 100644 --- a/blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/info.json +++ b/blockchains/smartchain/assets/0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848/info.json @@ -6,6 +6,16 @@ "type": "BEP20", "symbol": "QDX", "decimals": 18, - "status": "active", - "id": "0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848" -} \ No newline at end of file + "status": "abandoned", + "id": "0x9e3a9F1612028eeE48F85cA85f8Bed2f37d76848", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/QuidaxGlobal" + }, + { + "name": "telegram", + "url": "https://t.me/QDXToken" + } + ] +} diff --git a/blockchains/smartchain/assets/0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27/info.json b/blockchains/smartchain/assets/0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27/info.json new file mode 100644 index 0000000000000..ec73dc83df778 --- /dev/null +++ b/blockchains/smartchain/assets/0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27/info.json @@ -0,0 +1,21 @@ +{ + "name": "why", + "website": "https://www.madphant.com/", + "description": "WHY is a bipolar Elephant, RAMPAGE after FOMO (In the dream). Dancing and Happi all the daytime.(In real life) $BNB", + "explorer": "https://bscscan.com/token/0x9ec02756a559700d8d9e79ece56809f7bcc5dc27", + "type": "BEP20", + "symbol": "WHY", + "decimals": 18, + "status": "active", + "id": "0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27", + "links": [ + { + "name": "telegram", + "url": "https://t.me/whyenelephant" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/why/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27/logo.png b/blockchains/smartchain/assets/0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27/logo.png new file mode 100644 index 0000000000000..1cf7d100d0651 Binary files /dev/null and b/blockchains/smartchain/assets/0x9eC02756A559700d8D9e79ECe56809f7bcC5dC27/logo.png differ diff --git a/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/info.json b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/info.json new file mode 100644 index 0000000000000..c4a81bad591bc --- /dev/null +++ b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/info.json @@ -0,0 +1,32 @@ +{ + "name": "TRUSTxGAMING", + "type": "BEP20", + "symbol": "TXG", + "decimals": 18, + "website": "https://trustxgaming.io/", + "description": "TRUSTxGAMING is an online gaming platform with games like ludo, colour prediction and many skilled games like rummy and poker. TrustxGaming has its own native token named TXG which can be used to participate and play games. TXG serves as utility token in its Gaming ecosystem. ", + "explorer": "https://bscscan.com/token/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0", + "status": "active", + "id": "0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/trust_xgaming" + }, + { + "name": "telegram", + "url": "https://t.me/trustxgaming" + }, + { + "name": "whitepaper", + "url": "https://trustxgaming.io/Content/casinous/assets/images/TXG_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/trustxgaming/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/logo.png b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/logo.png new file mode 100644 index 0000000000000..bfa2555a58abb Binary files /dev/null and b/blockchains/smartchain/assets/0x9f46EcF92E7F6eE8C03f393ADf04C2e17B8cD0B0/logo.png differ diff --git a/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/info.json b/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/info.json index 902e16972db39..55074951c34ca 100644 --- a/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/info.json +++ b/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/info.json @@ -6,6 +6,9 @@ "symbol": "wBTC", "type": "BEP20", "decimals": 8, - "status": "active", - "id": "0xA01b9cAFE2230093fbf0000B43701E03717F77cE" + "status": "abandoned", + "id": "0xA01b9cAFE2230093fbf0000B43701E03717F77cE", + "tags": [ + "defi" + ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/logo.png b/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/logo.png deleted file mode 100644 index 062c60667efe4..0000000000000 Binary files a/blockchains/smartchain/assets/0xA01b9cAFE2230093fbf0000B43701E03717F77cE/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xA4156cc61dc7796faA24278a0F9F229B15e298cb/info.json b/blockchains/smartchain/assets/0xA4156cc61dc7796faA24278a0F9F229B15e298cb/info.json new file mode 100644 index 0000000000000..1a4b991709660 --- /dev/null +++ b/blockchains/smartchain/assets/0xA4156cc61dc7796faA24278a0F9F229B15e298cb/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bitcoin Bridged ZED20", + "website": "https://zedscan.net/", + "description": "BTC.z, a cutting-edge stablecoin tightly linked to the US dollar, the founders of this stablecoin have 35 years of successful experience in economics and business, launched in 2024 within the ZEDX neobanking blockchain network.", + "explorer": "https://bscscan.com/token/0xA4156cc61dc7796faA24278a0F9F229B15e298cb", + "type": "BEP20", + "symbol": "BTC.z", + "decimals": 18, + "status": "active", + "id": "0xA4156cc61dc7796faA24278a0F9F229B15e298cb", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zedxionc" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/token-bitcoin-bridged-zed20/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA4156cc61dc7796faA24278a0F9F229B15e298cb/logo.png b/blockchains/smartchain/assets/0xA4156cc61dc7796faA24278a0F9F229B15e298cb/logo.png new file mode 100644 index 0000000000000..9e1b2771a29f1 Binary files /dev/null and b/blockchains/smartchain/assets/0xA4156cc61dc7796faA24278a0F9F229B15e298cb/logo.png differ diff --git a/blockchains/smartchain/assets/0xA82D8d81557f6Da6dd4DDAD9f09a417530cfd4e7/info.json b/blockchains/smartchain/assets/0xA82D8d81557f6Da6dd4DDAD9f09a417530cfd4e7/info.json new file mode 100644 index 0000000000000..db68734a2f340 --- /dev/null +++ b/blockchains/smartchain/assets/0xA82D8d81557f6Da6dd4DDAD9f09a417530cfd4e7/info.json @@ -0,0 +1,29 @@ +{ + "name": "Blombard", + "type": "BEP20", + "symbol": "BLM", + "decimals": 18, + "website": "https://token.blombard.com/", + "description": "Blombard is an AI-powered platform dedicated to elevating cryptocurrency trading with advanced market analysis and financial services. It offers tools for smarter decision-making and lending solutions, all powered by the Binance Smart Chain (BSC).", + "explorer": "https://bscscan.com/token/0xa82d8d81557f6da6dd4ddad9f09a417530cfd4e7", + "status": "active", + "id": "0xA82D8d81557f6Da6dd4DDAD9f09a417530cfd4e7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Blombard_com" + }, + { + "name": "telegram", + "url": "https://t.me/blombard_talk" + }, + { + "name": "whitepaper", + "url": "https://token.blombard.com/docs/whitepaper.pdf" + } + ], + "tags": [ + "dapp", + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0xA82D8d81557f6Da6dd4DDAD9f09a417530cfd4e7/logo.png b/blockchains/smartchain/assets/0xA82D8d81557f6Da6dd4DDAD9f09a417530cfd4e7/logo.png new file mode 100644 index 0000000000000..60ee0af82ce2d Binary files /dev/null and b/blockchains/smartchain/assets/0xA82D8d81557f6Da6dd4DDAD9f09a417530cfd4e7/logo.png differ diff --git a/blockchains/smartchain/assets/0xA99600043E84181A9d4137aD1cefB8cfE9138674/info.json b/blockchains/smartchain/assets/0xA99600043E84181A9d4137aD1cefB8cfE9138674/info.json new file mode 100644 index 0000000000000..d280fa4cb176e --- /dev/null +++ b/blockchains/smartchain/assets/0xA99600043E84181A9d4137aD1cefB8cfE9138674/info.json @@ -0,0 +1,24 @@ +{ + "name": "FX Stock Token", + "type": "BEP20", + "symbol": " FXST", + "decimals": 6, + "website": "https://fxst.finance/", + "description": "Fx$tock token is a world-class leading token in the most revenue-generating industry, The first is the Gaming zone & the 2nd is the Trading zone. Both industries create trillions of dollars in volume in a day throughout the world. Fx$tock token provides a next-gen technology platform for young entrepreneurs, they will be making online money without any limits and no boundaries.", + "explorer": "https://bscscan.com/token/0xA99600043E84181A9d4137aD1cefB8cfE9138674", + "status": "active", + "id": "0xA99600043E84181A9d4137aD1cefB8cfE9138674", + "links": [ + { + "name": "telegram", + "url": "https://t.me/fxstcommunity" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fxg/" + } + ], + "tags": [ + "gamefi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xA99600043E84181A9d4137aD1cefB8cfE9138674/logo.png b/blockchains/smartchain/assets/0xA99600043E84181A9d4137aD1cefB8cfE9138674/logo.png new file mode 100644 index 0000000000000..975275ff9ac53 Binary files /dev/null and b/blockchains/smartchain/assets/0xA99600043E84181A9d4137aD1cefB8cfE9138674/logo.png differ diff --git a/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json b/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json index b74fcfa0de189..e3847f4468c17 100644 --- a/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json +++ b/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "QANX", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa", "links": [ { diff --git a/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json new file mode 100644 index 0000000000000..b3589d2c72b78 --- /dev/null +++ b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/info.json @@ -0,0 +1,57 @@ +{ + "name": "QANX Token", + "website": "https://qanplatform.com", + "description": "QANX is the utility token of QAN Platform.", + "explorer": "https://bscscan.com/token/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA", + "type": "BEP20", + "symbol": "QANX", + "decimals": 18, + "status": "active", + "id": "0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA", + "links": [ + { + "name": "telegram", + "url": "https://t.me/QANplatform" + }, + { + "name": "telegram_news", + "url": "https://t.me/QANplatform_ANN" + }, + { + "name": "twitter", + "url": "https://twitter.com/qanplatform" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bABaQeTPN7" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/qanplatform" + }, + { + "name": "medium", + "url": "https://medium.com/qanplatform" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/QANplatform" + }, + { + "name": "whitepaper", + "url": "https://assets.qanplatform.com/whitepaper.pdf" + }, + { + "name": "source_code", + "url": "https://github.com/QANplatform" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/qanplatform/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/qanplatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/logo.png b/blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xAAA7A10a8ee237ea61E8AC46C50A8Db8bCC1baaa/logo.png rename to blockchains/smartchain/assets/0xAAA9214F675316182Eaa21C85f0Ca99160CC3AAA/logo.png diff --git a/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json b/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json index d35c1534257c6..3baf286b2cefc 100644 --- a/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json +++ b/blockchains/smartchain/assets/0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "GMR", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xADCa52302e0a6c2d5D68EDCdB4Ac75DeB5466884", "links": [ { diff --git a/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/info.json b/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/info.json index 4dedacf220aaa..88c4b72e152e5 100644 --- a/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/info.json +++ b/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/info.json @@ -6,6 +6,6 @@ "description": "CreamPYE was built with one purpose in mind. Build the best decentralized technology available to the world and make an equal impact on humanity at the same time.", "website": "https://www.creampye.com", "explorer": "https://bscscan.com/token/0xaad87f47cdea777faf87e7602e91e3a6afbe4d57", - "status": "active", + "status": "abandoned", "id": "0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/logo.png b/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/logo.png deleted file mode 100644 index 6f93d46e2acf4..0000000000000 Binary files a/blockchains/smartchain/assets/0xAaD87f47CDEa777FAF87e7602E91e3a6AFbe4D57/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/info.json b/blockchains/smartchain/assets/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/info.json new file mode 100644 index 0000000000000..8bfad832e9b8a --- /dev/null +++ b/blockchains/smartchain/assets/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/info.json @@ -0,0 +1,25 @@ +{ + "name": "Revomon", + "type": "BEP20", + "symbol": "REVO", + "decimals": 18, + "website": "https://revomon.io/", + "description": "Revomon is an exciting online RPG that combines an immersive virtual reality experience with groundbreaking NFT blockchain technology.", + "explorer": "https://bscscan.com/token/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C", + "status": "active", + "id": "0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/RevomonVR" + }, + { + "name": "telegram", + "url": "https://t.me/revomon" + }, + { + "name": "telegram_news", + "url": "https://t.me/revomonnews" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/logo.png b/blockchains/smartchain/assets/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x155040625D7ae3e9caDA9a73E3E44f76D3Ed1409/logo.png rename to blockchains/smartchain/assets/0xAab09b5cd1694d12c8c980306f5E2f5d65b00E1C/logo.png diff --git a/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/logo.png b/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/logo.png index 49c0501d27100..1ccab279af60b 100644 Binary files a/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/logo.png and b/blockchains/smartchain/assets/0xAcFF4E9E9110971E1A4D8f013F5f97dd8fB4F430/logo.png differ diff --git a/blockchains/smartchain/assets/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B/info.json b/blockchains/smartchain/assets/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B/info.json new file mode 100644 index 0000000000000..a22b5bd9d8f6b --- /dev/null +++ b/blockchains/smartchain/assets/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lista Staked BNB", + "type": "BEP20", + "symbol": "slisBNB", + "decimals": 18, + "website": "https://lista.org/", + "description": "Lista DAO is a permissionless Collateralized Debt Position and Liquid Staking Protocol on the BNB Smart Chain.", + "explorer": "https://bscscan.com/token/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B", + "status": "active", + "id": "0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LISTA_DAO" + }, + { + "name": "github", + "url": "https://github.com/lista-dao" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B/logo.png b/blockchains/smartchain/assets/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B/logo.png new file mode 100644 index 0000000000000..4e0fba0c01a06 Binary files /dev/null and b/blockchains/smartchain/assets/0xB0b84D294e0C75A6abe60171b70edEb2EFd14A1B/logo.png differ diff --git a/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/info.json b/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/info.json index aa3ea3a60fe91..3ac04fd922afa 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 3232b249ffb7c..31ef60f9e3fec 100644 Binary files a/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/logo.png and b/blockchains/smartchain/assets/0xB1CeD2e320E3f4C8e3511B1DC59203303493F382/logo.png differ diff --git a/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/info.json b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/info.json new file mode 100644 index 0000000000000..361effadcde40 --- /dev/null +++ b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/info.json @@ -0,0 +1,11 @@ +{ + "name": "RYOSHI TOKEN", + "type": "BEP20", + "symbol": "RYOSHI", + "decimals": 18, + "website": "https://www.ryoshitoken.com", + "description": "Ryoshi is a deflationary, community driven meme token that came to take over the meme game. With 10% burn from every transaction that decreases the supply and increases the demand you can kick back and watch your RYOSHI value grow.", + "explorer": "https://bscscan.com/token/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5", + "status": "active", + "id": "0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/logo.png b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/logo.png new file mode 100644 index 0000000000000..20119148a5b05 Binary files /dev/null and b/blockchains/smartchain/assets/0xB350aEBAEDB1eD3269b0E25D5E593a9bB4b9f9d5/logo.png differ diff --git a/blockchains/smartchain/assets/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5/info.json b/blockchains/smartchain/assets/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5/info.json new file mode 100644 index 0000000000000..493b9e0199301 --- /dev/null +++ b/blockchains/smartchain/assets/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Media Licensing Token", + "type": "BEP20", + "symbol": "MLT", + "decimals": 18, + "website": "https://www.milc.global/", + "description": "MILC - Media Industry Licensing Content. Global decentralized marketplace for professional content trading, licensing and production.", + "explorer": "https://bscscan.com/token/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5", + "status": "active", + "id": "0xB72a20C7B8BD666f80AC053B0f4de20a787080F5", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/milc-platform/" + }, + { + "name": "twitter", + "url": "https://twitter.com/MILCplatform" + } + ] + } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5/logo.png b/blockchains/smartchain/assets/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5/logo.png new file mode 100644 index 0000000000000..a92c4598cf4fc Binary files /dev/null and b/blockchains/smartchain/assets/0xB72a20C7B8BD666f80AC053B0f4de20a787080F5/logo.png differ diff --git a/blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/info.json b/blockchains/smartchain/assets/0xB7E2713CF55cf4b469B5a8421Ae6Fc0ED18F1467/info.json new file mode 100644 index 0000000000000..cd3e78a7737e6 --- /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 0000000000000..97cc3c9441b63 --- /dev/null +++ b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/info.json @@ -0,0 +1,29 @@ +{ + "name": "Metatime", + "website": "https://metatime.com/en", + "description": "Metatime has emerged as a visionary ecosystem that builds the world of the future, designed from the start to be beneficial to everyone. By completely self-funding its technology development stages, Metatime aims to establish the world’s most comprehensive and transparent ecosystem.", + "explorer": "https://bscscan.com/token/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3", + "type": "BEP20", + "symbol": "MTC", + "decimals": 18, + "status": "active", + "id": "0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3", + "links": [ + { + "name": "github", + "url": "https://github.com/Metatime-Technology-Inc" + }, + { + "name": "twitter", + "url": "https://twitter.com/metatimecom" + }, + { + "name": "telegram", + "url": "https://t.me/metatime" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/metatime-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/logo.png b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/logo.png new file mode 100644 index 0000000000000..11b60376bb37c Binary files /dev/null and b/blockchains/smartchain/assets/0xB93ee4522C44Ef4cD7EE8c83B9Fe1A421b4b42C3/logo.png differ diff --git a/blockchains/smartchain/assets/0xB96D0f29a0aC9AF4a32835e90EC6531389765089/info.json b/blockchains/smartchain/assets/0xB96D0f29a0aC9AF4a32835e90EC6531389765089/info.json new file mode 100644 index 0000000000000..0c8887960543d --- /dev/null +++ b/blockchains/smartchain/assets/0xB96D0f29a0aC9AF4a32835e90EC6531389765089/info.json @@ -0,0 +1,33 @@ +{ + "name": "Vapor Token", + "website": "https://www.vaporfund.com/", + "description": "Inflation Hedge Fund: Your Gateway to Curated Crypto Investments", + "explorer": "https://bscscan.com/token/0xB96D0f29a0aC9AF4a32835e90EC6531389765089", + "type": "BEP20", + "symbol": "VPR", + "decimals": 18, + "status": "active", + "id": "0xB96D0f29a0aC9AF4a32835e90EC6531389765089", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/vaporfund" + }, + { + "name": "telegram", + "url": "https://t.me/vaporfund_co" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/vaporwallet/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/vapor-fund" + } + ], + "tags": [ + "defi", + "dapp" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xB96D0f29a0aC9AF4a32835e90EC6531389765089/logo.png b/blockchains/smartchain/assets/0xB96D0f29a0aC9AF4a32835e90EC6531389765089/logo.png new file mode 100644 index 0000000000000..b887c399fbf8c Binary files /dev/null and b/blockchains/smartchain/assets/0xB96D0f29a0aC9AF4a32835e90EC6531389765089/logo.png differ diff --git a/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json b/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json index c65466e446700..d885fdb4f6c4f 100644 --- a/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json +++ b/blockchains/smartchain/assets/0xBD100d061E120b2c67A24453CF6368E63f1Be056/info.json @@ -40,8 +40,7 @@ ], "tags": [ "governance", - "defi", - "staking-native" + "defi" ] } diff --git a/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/info.json b/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/info.json new file mode 100644 index 0000000000000..31889ba60ae79 --- /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 0000000000000..dfb8d42427289 Binary files /dev/null and b/blockchains/smartchain/assets/0xBDA011D7F8EC00F66C1923B049B94c67d148d8b2/logo.png differ diff --git a/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/info.json b/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/info.json new file mode 100644 index 0000000000000..5865361ddf1c4 --- /dev/null +++ b/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/info.json @@ -0,0 +1,21 @@ +{ + "name": "CATAMOTO", + "website": "https://www.catamoto.cat/", + "description": "$CATA is changing the rules of memecoins by using superior cat math to create the most advanced smart contract in the world", + "explorer": "https://bscscan.com/token/0xbdf5bafee1291eec45ae3aadac89be8152d4e673", + "type": "BEP20", + "symbol": "CATA", + "decimals": 18, + "status": "active", + "id": "0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/4catamoto" + }, + { + "name": "telegram", + "url": "https://t.me/Catamoto" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/logo.png b/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/logo.png new file mode 100644 index 0000000000000..1e9ff4a3bf5d2 Binary files /dev/null and b/blockchains/smartchain/assets/0xBDf5bAfEE1291EEc45Ae3aadAc89BE8152D4E673/logo.png differ diff --git a/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/info.json b/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/info.json new file mode 100644 index 0000000000000..cabf23942d2e8 --- /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 0000000000000..242f44fdf0510 Binary files /dev/null and b/blockchains/smartchain/assets/0xBb2826Ab03B6321E170F0558804F2B6488C98775/logo.png differ diff --git a/blockchains/smartchain/assets/0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26/info.json b/blockchains/smartchain/assets/0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26/info.json new file mode 100644 index 0000000000000..b5fda7c256b27 --- /dev/null +++ b/blockchains/smartchain/assets/0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26/info.json @@ -0,0 +1,36 @@ +{ + "name": "shelling", + "type": "BEP20", + "symbol": "SHL", + "decimals": 18, + "website": "https://www.shellingcoin.com/", + "description": "Shelling is building a payment platform that allows companies and individuals to accept cryptocurrency for their services and goods.", + "explorer": "https://bscscan.com/token/0xbb689057fe1c4bfc573a54c0679ae1a7a1982f26", + "status": "active", + "id": "0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/shelling_coin" + }, + { + "name": "telegram", + "url": "https://t.me/shellingcoin" + }, + { + "name": "whitepaper", + "url": "https://www.shellingcoin.com/_files/ugd/049f40_3cbd75b73dee4f0e82327ad820ce1721.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/shelling" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shelling/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26/logo.png b/blockchains/smartchain/assets/0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26/logo.png new file mode 100644 index 0000000000000..5b61215ffdba7 Binary files /dev/null and b/blockchains/smartchain/assets/0xBb689057fE1c4bFc573A54c0679ae1a7A1982F26/logo.png differ diff --git a/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/info.json b/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/info.json new file mode 100644 index 0000000000000..1fdbc6e638a0e --- /dev/null +++ b/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/info.json @@ -0,0 +1,21 @@ +{ + "name": "EDU Coin", + "website": "https://www.opencampus.xyz/", + "description": "The Open Campus Protocol is a decentralized solution for educators, content creators, parents, students, and co-publishers designed to address the major challenges in education today.", + "explorer": "https://bscscan.com/token/0xbdeae1ca48894a1759a8374d63925f21f2ee2639", + "symbol": "EDU", + "type": "BEP20", + "decimals": 18, + "id": "0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639", + "status": "active", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/opencampus_xyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/open-campus/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/logo.png b/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/logo.png new file mode 100644 index 0000000000000..db4bc4a29e81a Binary files /dev/null and b/blockchains/smartchain/assets/0xBdEAe1cA48894A1759A8374D63925f21f2Ee2639/logo.png differ diff --git a/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/info.json b/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/info.json new file mode 100644 index 0000000000000..21cf6e66319c8 --- /dev/null +++ b/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cookie", + "website": "https://www.cookie.community/", + "description": "$COOKIE is the utility and governance token within the Cookie Ecosystem, a joint ecosystem created by two independent partners—Cookie DAO and Cookie3. It is the first MarketingFi token, which captures the $366B digital marketing value and distributes it between users, creators, and businesses.", + "explorer": "https://bscscan.com/token/0xc0041ef357b183448b235a8ea73ce4e4ec8c265f", + "type": "BEP20", + "symbol": "COOKIE", + "decimals": 18, + "status": "active", + "id": "0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Cookie3_com" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cookie/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/logo.png b/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/logo.png new file mode 100644 index 0000000000000..d9ef3cb9ee95a Binary files /dev/null and b/blockchains/smartchain/assets/0xC0041EF357B183448B235a8Ea73Ce4E4eC8c265F/logo.png differ diff --git a/blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/info.json b/blockchains/smartchain/assets/0xC4a1E7106d08B7FF947254B6D75cf2b877d55daF/info.json new file mode 100644 index 0000000000000..5af152b6ef34e --- /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 0000000000000..d55b707f80ecd --- /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 0000000000000..29a4e6a018bd7 Binary files /dev/null and b/blockchains/smartchain/assets/0xC53ca0d56C420E8f913316e84d2c492eDe99c61e/logo.png differ diff --git a/blockchains/smartchain/assets/0xC632F90affeC7121120275610BF17Df9963F181c/info.json b/blockchains/smartchain/assets/0xC632F90affeC7121120275610BF17Df9963F181c/info.json new file mode 100644 index 0000000000000..7c7d04d510a95 --- /dev/null +++ b/blockchains/smartchain/assets/0xC632F90affeC7121120275610BF17Df9963F181c/info.json @@ -0,0 +1,17 @@ +{ + "name": "DEBT", + "website": "https://www.thedebtbox.com", + "description": "The DEBT token is the central support and utility token for the D.E.B.T. ecosystem, which has a growing list of token projects.", + "explorer": "https://bscscan.com/token/0xc632f90affec7121120275610bf17df9963f181c", + "type": "BEP20", + "symbol": "DEBT", + "decimals": 8, + "status": "active", + "id": "0xC632F90affeC7121120275610BF17Df9963F181c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/thedebtbox" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xC632F90affeC7121120275610BF17Df9963F181c/logo.png b/blockchains/smartchain/assets/0xC632F90affeC7121120275610BF17Df9963F181c/logo.png new file mode 100644 index 0000000000000..c1e0bf91009e1 Binary files /dev/null and b/blockchains/smartchain/assets/0xC632F90affeC7121120275610BF17Df9963F181c/logo.png differ diff --git a/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/info.json b/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/info.json new file mode 100644 index 0000000000000..527541755af11 --- /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 0000000000000..c556d05ed3b33 Binary files /dev/null and b/blockchains/smartchain/assets/0xC703dA39aE3B9Db67C207c7Bad8100E1AfdC0F9c/logo.png differ diff --git a/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/info.json b/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/info.json index a8b9cae8e532d..bccf9a3356432 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 1046fe1f6a088..4ba143a0de086 100644 Binary files a/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/logo.png and b/blockchains/smartchain/assets/0xC79d1fD14F514cD713b5cA43D288a782Ae53eAb2/logo.png differ diff --git a/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/logo.png b/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/logo.png index 2fddf8ccfd347..6cf93e3982f6d 100644 Binary files a/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/logo.png and b/blockchains/smartchain/assets/0xC8A11F433512C16ED895245F34BCC2ca44eb06bd/logo.png differ diff --git a/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json b/blockchains/smartchain/assets/0xCE6bD1833BD077f62B2c1F9a777bB829801d6811/info.json index 31c71c20f699d..9d131ddada116 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 index a86718ff5333a..ba7c7cc73b379 100644 --- a/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json +++ b/blockchains/smartchain/assets/0xCE7de646e7208a4Ef112cb6ed5038FA6cC6b12e3/info.json @@ -2,7 +2,7 @@ "name": "TRON", "type": "BEP20", "symbol": "TRX", - "decimals": 18, + "decimals": 6, "website": "https://tron.network/", "description": "TRON is a dedicated to build the infrastructure for a truly decentralized Internet.", "explorer": "https://bscscan.com/token/0xce7de646e7208a4ef112cb6ed5038fa6cc6b12e3", diff --git a/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/info.json b/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/info.json index 80f8ea84f91a6..43b09186ed83e 100644 --- a/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/info.json +++ b/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "BIFI", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xCa3F508B8e4Dd382eE878A314789373D80A5190A", "links": [ { diff --git a/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/info.json b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/info.json new file mode 100644 index 0000000000000..af2cf5cae35c6 --- /dev/null +++ b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/info.json @@ -0,0 +1,32 @@ +{ + "name": "PLANET", + "type": "BEP20", + "symbol": "PLANET", + "decimals": 18, + "description": "Join The Planet is a pioneering #ReFi project that partners with the world’s biggest celebrities to address environmental and sustainable causes. Backed by the $PLANET token, this blockchain for good platform is disrupting the $300 billion green tech market by introducing celebrity-backed Real World Assets (RWAs) to Web3, unlocking incredible real-life experiences for $PLANET holders and creating a sustainable revenue model.", + "website": "https://planetrefi.com/", + "explorer": "https://bscscan.com/token/0xca6d678e74f553f0e59cccc03ae644a3c2c5ee7d", + "id": "0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d", + "status": "active", + "tags": [ + "nft" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/PlanetReFi" + }, + { + "name": "telegram", + "url": "https://t.me/PlanetReFi" + }, + { + "name": "medium", + "url": "https://medium.com/@PlanetReFi" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/planettoken/" + } + ] +} diff --git a/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/logo.png b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/logo.png new file mode 100644 index 0000000000000..a3fb80da0a20b Binary files /dev/null and b/blockchains/smartchain/assets/0xCa6d678e74f553f0E59cccC03ae644a3c2c5EE7d/logo.png differ diff --git a/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/info.json b/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/info.json new file mode 100644 index 0000000000000..7c3b2daffebdc --- /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 0000000000000..e6309995c04e5 Binary files /dev/null and b/blockchains/smartchain/assets/0xD08b9e557D1f64c8dd50A168453eA302A83E47FC/logo.png differ diff --git a/blockchains/smartchain/assets/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4/info.json b/blockchains/smartchain/assets/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4/info.json new file mode 100644 index 0000000000000..7d99e3731234e --- /dev/null +++ b/blockchains/smartchain/assets/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4/info.json @@ -0,0 +1,21 @@ +{ + "name": "FLOKITA", + "type": "BEP20", + "symbol": "FLOKITA", + "decimals": 18, + "website": "https://flokita.cx/", + "description": "Flokita is a community-driven decentralized meme token with a dedicated team.", + "explorer": "https://bscscan.com/token/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4", + "status": "active", + "id": "0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/missflokita" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/flokita/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4/logo.png b/blockchains/smartchain/assets/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4/logo.png new file mode 100644 index 0000000000000..4e61ec4c2a8bd Binary files /dev/null and b/blockchains/smartchain/assets/0xDC8C8221B8e27DFDA87A6D56DC5899A65087b6f4/logo.png differ diff --git a/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/info.json b/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/info.json new file mode 100644 index 0000000000000..98c9fac0c6864 --- /dev/null +++ b/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/info.json @@ -0,0 +1,24 @@ +{ + "name": "ivendPay", + "type": "BEP20", + "symbol": "IVPAY", + "decimals": 18, + "website": "https://ivendpay.com", + "description": "The core of IvendPay's innovation lies in integrating cryptocurrency payments into various commercial and retail environments through multiple channels including bank terminals, e-commerce plugins, APIs, iOs\\Android app, and vending machines. ivendPay's solution bridges the gap between traditional financial systems and the emerging digital economy, making it easier for consumers to use their cryptocurrencies for everyday purchases. This integration represents a significant step forward in the adoption and normalization of digital currencies", + "explorer": "https://bscscan.com/token/0xde5bdcbd4d7dfa86e527fef9971bd6ca6a76eefb", + "status": "active", + "id": "0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ivendpay" + }, + { + "name": "telegram", + "url": "https://t.me/ivendpay_chat" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/logo.png b/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/logo.png new file mode 100644 index 0000000000000..6f9ef7a83be19 Binary files /dev/null and b/blockchains/smartchain/assets/0xDE5BDcbd4d7dFa86E527fEF9971bd6Ca6A76eefB/logo.png differ diff --git a/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json b/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json index 04dbb6ffbb900..b8a59673ef1c9 100644 --- a/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json +++ b/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/info.json @@ -6,7 +6,7 @@ "website": "https://rhythm.cash/", "description": "$RHYTHM is the token powering the Rhythm music streaming platform, which boasts a library of over 100 million songs, offering holders in-app rewards, perks, NFTs, and powering the Artist Partner Program.", "explorer": "https://bscscan.com/token/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb", - "status": "active", + "status": "abandoned", "id": "0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb", "links": [ { diff --git a/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/info.json b/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/info.json new file mode 100644 index 0000000000000..8864afd02a868 --- /dev/null +++ b/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/info.json @@ -0,0 +1,21 @@ +{ + "name": "Solarx", + "type": "BEP20", + "symbol": "SXCH", + "decimals": 18, + "website": "https://solarx.ai/", + "description": "The SolarX project is an innovative and eco-friendly approach to cryptocurrency mining that aims to use renewable energy sources to power the mining process.", + "explorer": "https://bscscan.com/token/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50", + "status": "active", + "id": "0xE58C3A44B74362048e202cb7C8036D4b0B28Af50", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/solarxchain" + }, + { + "name": "telegram", + "url": "https://t.me/solarxofficial" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/logo.png b/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/logo.png new file mode 100644 index 0000000000000..efe387ee51e4f Binary files /dev/null and b/blockchains/smartchain/assets/0xE58C3A44B74362048e202cb7C8036D4b0B28Af50/logo.png differ diff --git a/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/info.json b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/info.json new file mode 100644 index 0000000000000..a0b8ffc78da59 --- /dev/null +++ b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/info.json @@ -0,0 +1,25 @@ +{ + "name": "Loom Token", + "website": "https://loomx.io", + "description": "Loom Network is a Platform as a Service intended to allow Ethereum-based Solidity applications to be run on side chains.", + "explorer": "https://bscscan.com/token/0xe6ce27025f13f5213bbc560dc275e292965a392f", + "type": "BEP20", + "symbol": "LOOM", + "decimals": 18, + "status": "active", + "id": "0xE6Ce27025F13f5213bBc560dC275e292965a392F", + "links": [ + { + "name": "telegram", + "url": "https://t.me/loomnetwork" + }, + { + "name": "twitter", + "url": "https://twitter.com/loomnetwork" + }, + { + "name": "github", + "url": "https://github.com/loomnetwork" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/logo.png b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/logo.png new file mode 100644 index 0000000000000..0d6c30316b0e1 Binary files /dev/null and b/blockchains/smartchain/assets/0xE6Ce27025F13f5213bBc560dC275e292965a392F/logo.png differ diff --git a/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/info.json b/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/info.json new file mode 100644 index 0000000000000..b8afa9dca6de3 --- /dev/null +++ b/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/info.json @@ -0,0 +1,40 @@ +{ + "name": "Verum Coin", + "type": "BEP20", + "symbol": "VERUM", + "decimals": 8, + "website": "https://verumcoin.info", + "description": "Verum Coin is one of the digital currencies that use the mechanism of increased transaction confidentiality.", + "explorer": "https://bscscan.com/token/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03", + "status": "active", + "id": "0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/verum_coin" + }, + { + "name": "github", + "url": "https://github.com/verumcoin" + }, + { + "name": "whitepaper", + "url": "https://verumcoin.info/docs/Verum_Coin_White_Paper.pdf" + }, + { + "name": "facebook", + "url": "https://facebook.com/verumcoin.info" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/verum-coin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/verum-coin" + } + ], + "tags": [ + "privacy" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/logo.png b/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/logo.png new file mode 100644 index 0000000000000..24992b02a59b5 Binary files /dev/null and b/blockchains/smartchain/assets/0xE6e4D9E1ddd783b6BeEccC059ABc17be88EE1A03/logo.png differ diff --git a/blockchains/smartchain/assets/0xE9a97602Ea2985634032a6dFE8a391F7124328F1/info.json b/blockchains/smartchain/assets/0xE9a97602Ea2985634032a6dFE8a391F7124328F1/info.json new file mode 100644 index 0000000000000..4d4d85a17bc90 --- /dev/null +++ b/blockchains/smartchain/assets/0xE9a97602Ea2985634032a6dFE8a391F7124328F1/info.json @@ -0,0 +1,36 @@ +{ + "name": "EYE Network", + "type": "BEP20", + "symbol": "EYE", + "decimals": 18, + "website": "https://eyetoken.io", + "description": "The Eye Network Ecosystem is a groundbreaking initiative poised to reshape the landscape of financial services. At its core, this innovative platform harnesses the power of blockchain technology to facilitate seamless transactions, enhance security, and promote financial empowerment for individuals worldwide. ", + "explorer": "https://bscscan.com/token/0xE9a97602Ea2985634032a6dFE8a391F7124328F1", + "status": "active", + "id": "0xE9a97602Ea2985634032a6dFE8a391F7124328F1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/network_ey98192" + }, + { + "name": "youtube", + "url": "https://youtube.com/@eyenetworkai?si=dRR691ySZwBR69Rw" + }, + { + "name": "facebook", + "url": "https://facebook.com/profile.php?id=61555055983574&mibextid=ZbWKwL" + }, + { + "name": "telegram", + "url": "https://t.me/eyenetworkai" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0xe9a97602ea2985634032a6dfe8a391f7124328f1#code" + } + ], + "tags": [ + "staking" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE9a97602Ea2985634032a6dFE8a391F7124328F1/logo.png b/blockchains/smartchain/assets/0xE9a97602Ea2985634032a6dFE8a391F7124328F1/logo.png new file mode 100644 index 0000000000000..0517a8aeee54d Binary files /dev/null and b/blockchains/smartchain/assets/0xE9a97602Ea2985634032a6dFE8a391F7124328F1/logo.png differ diff --git a/blockchains/smartchain/assets/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294/info.json b/blockchains/smartchain/assets/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294/info.json new file mode 100644 index 0000000000000..43989a84128e1 --- /dev/null +++ b/blockchains/smartchain/assets/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294/info.json @@ -0,0 +1,30 @@ +{ + "name":"brics", + "type":"BEP20", + "symbol":"brics", + "decimals":18, + "website":"https://brics-mine.com/", + "description":"Blockchain is recognized as an advanced security technology that provides a high level of integrity and protection against unauthorized changes to information.", + "explorer":"https://bscscan.com/token/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294", + "status":"active", + "id":"0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/bricsmine" + }, + { + "name":"github", + "url":"https://github.com/bricsmine" + }, + { + "name":"whitepaper", + "url":"https://brics-mine.com/Whitepaper" + }, + { + "name":"telegram", + "url":"https://t.me/bricsmine" + } + ], + "tags": ["dapp"] +} diff --git a/blockchains/smartchain/assets/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294/logo.png b/blockchains/smartchain/assets/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294/logo.png new file mode 100644 index 0000000000000..18809aacf2b15 Binary files /dev/null and b/blockchains/smartchain/assets/0xEC80E6EF54D43aaDc0e0556a73eC34D840d5a294/logo.png differ diff --git a/blockchains/smartchain/assets/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586/info.json b/blockchains/smartchain/assets/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586/info.json new file mode 100644 index 0000000000000..f969f7296b8d9 --- /dev/null +++ b/blockchains/smartchain/assets/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586/info.json @@ -0,0 +1,36 @@ +{ + "name": "FU coin", + "type": "BEP20", + "symbol": "FU", + "decimals": 18, + "website": "https://www.fucoin.io/", + "description": "FU coin is a BNB Chain token designed to bring luck and fortune to the crypto world. Whether you’re riding the highs or weathering the lows, $Fu is your shield of fortune. Fu’s not just another coin in the sea, It’s the spark of joy in your crypto spree. Join the Fu journey, where luck’s yours to hold, And turn your wallet’s story into gold!", + "explorer": "https://bscscan.com/token/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586", + "status": "active", + "id": "0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586", + "links": [ + { + "name": "telegram", + "url": "https://t.me/FuCoinCommunity" + }, + { + "name": "whitepaper", + "url": "https://fucoin.io/media/fu-coin/whitepaper.pdf" + }, + { + "name": "discord", + "url": "https://discord.com/invite/5AjBnJ4kJJ" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586#code" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/fu-coin/" + } + ], + "tags": [ + "memes" + ] +} diff --git a/blockchains/smartchain/assets/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586/logo.png b/blockchains/smartchain/assets/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586/logo.png new file mode 100644 index 0000000000000..bddcf9c99821c Binary files /dev/null and b/blockchains/smartchain/assets/0xED6AF21Df463c7f116A6d7d687A4c190c4cf7586/logo.png differ diff --git a/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/info.json b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/info.json new file mode 100644 index 0000000000000..c334da94e8073 --- /dev/null +++ b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/info.json @@ -0,0 +1,48 @@ +{ + "name": "UNS Token", + "type": "BEP20", + "symbol": "UNS", + "decimals": 18, + "website": "https://uns.technology", + "description": "UNS Token, a Multi-Sector Utility BEP20 Token that enables in connecting real-life utilities with the digital world.", + "explorer": "https://bscscan.com/token/0xecf99ab23c11ddc6520252105308c251001aefbb", + "status": "active", + "id": "0xEcf99aB23C11ddc6520252105308C251001AEfBB", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/_unsofficial_" + }, + { + "name": "telegram", + "url": "https://t.me/uns_token" + }, + { + "name": "discord", + "url": "https://discord.com/invite/wjFHg94mAW" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uns-token/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/uns-token" + }, + { + "name": "telegram_news", + "url": "https://t.me/unstoken" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/UNS_Token" + }, + { + "name": "github", + "url": "https://github.com/Uns-Technology" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/logo.png b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/logo.png new file mode 100644 index 0000000000000..aa527486df972 Binary files /dev/null and b/blockchains/smartchain/assets/0xEcf99aB23C11ddc6520252105308C251001AEfBB/logo.png differ diff --git a/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/info.json b/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/info.json new file mode 100644 index 0000000000000..e554c2079aa2a --- /dev/null +++ b/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/info.json @@ -0,0 +1,21 @@ +{ + "name": "Tradehub", + "symbol": "TRHUB", + "type": "BEP20", + "decimals": 18, + "description": "AI Predictions for Optimal Trading -- Unleash the power of Artificial Intelligence for Trading Excellence!", + "website": "https://tradehub.ai/", + "explorer": "https://bscscan.com/token/0xf46306cdc35b845ebcc823be8363249b21f7ee63", + "status": "active", + "id": "0xF46306CDC35B845ebcc823Be8363249b21F7eE63", + "links": [ + { + "name": "telegram", + "url": "https://t.me/tradehubai" + }, + { + "name": "twitter", + "url": "https://twitter.com/tradehubai" + } + ] + } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/logo.png b/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/logo.png new file mode 100644 index 0000000000000..e8cdea811a3e1 Binary files /dev/null and b/blockchains/smartchain/assets/0xF46306CDC35B845ebcc823Be8363249b21F7eE63/logo.png differ diff --git a/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json b/blockchains/smartchain/assets/0xF4b5470523cCD314C6B9dA041076e7D79E0Df267/info.json index 0c1595e48839d..4c41ea3dc8676 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 d7ce5e9cec876..0000000000000 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 0000000000000..f74f33f2dea97 --- /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 0000000000000..77ba6a3a72535 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 0000000000000..fc2bdeef16fcb --- /dev/null +++ b/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/info.json @@ -0,0 +1,36 @@ +{ + "name": "Binance-Peg MANTRA", + "website": "http://mantradao.com", + "description": "MANTRA DAO leverages the wisdom of the crowd to create a community-governed, transparent, and decentralized ecosystem for Web 3.0", + "explorer": "https://bscscan.com/token/0xf78d2e7936f5fe18308a3b2951a93b6c4a41f5e2", + "type": "BEP20", + "symbol": "OM", + "decimals": 18, + "status": "active", + "id": "0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2", + "links": [ + { + "name": "github", + "url": "https://github.com/Mantradao" + }, + { + "name": "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/" + } + ], + "tags": [ + "governance" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/logo.png b/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/logo.png new file mode 100644 index 0000000000000..2c15abc9469bc Binary files /dev/null and b/blockchains/smartchain/assets/0xF78D2e7936F5Fe18308A3B2951A93b6c4a41F5e2/logo.png differ diff --git a/blockchains/smartchain/assets/0xF7d6243b937136d432AdBc643f311b5A9436b0B0/info.json b/blockchains/smartchain/assets/0xF7d6243b937136d432AdBc643f311b5A9436b0B0/info.json new file mode 100644 index 0000000000000..e1e1768a6a7ea --- /dev/null +++ b/blockchains/smartchain/assets/0xF7d6243b937136d432AdBc643f311b5A9436b0B0/info.json @@ -0,0 +1,18 @@ +{ + "name": "snake", + "symbol": "snake", + "type": "BEP20", + "decimals": 18, + "description": "Snakes have rich connotations and symbolic meanings in Chinese culture.", + "website": "https://snakebsc.vip/", + "explorer": "https://bscscan.com/token/0xf7d6243b937136d432adbc643f311b5a9436b0b0", + "status": "active", + "id": "0xF7d6243b937136d432AdBc643f311b5A9436b0B0", + "links": [ + + { + "name": "twitter", + "url": "https://twitter.com/Mls568Snake" + } + ] + } diff --git a/blockchains/smartchain/assets/0xF7d6243b937136d432AdBc643f311b5A9436b0B0/logo.png b/blockchains/smartchain/assets/0xF7d6243b937136d432AdBc643f311b5A9436b0B0/logo.png new file mode 100644 index 0000000000000..fde074ac02e10 Binary files /dev/null and b/blockchains/smartchain/assets/0xF7d6243b937136d432AdBc643f311b5A9436b0B0/logo.png differ diff --git a/blockchains/smartchain/assets/0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46/info.json b/blockchains/smartchain/assets/0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46/info.json new file mode 100644 index 0000000000000..4a1593625445a --- /dev/null +++ b/blockchains/smartchain/assets/0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46/info.json @@ -0,0 +1,25 @@ +{ + "name": "Lista DAO", + "symbol": "LISTA", + "type": "BEP20", + "decimals": 18, + "description": "Lista DAO is a liquid staking and decentralized stablecoin protocol. Users can undergo staking and liquid staking on Lista, as well as borrow lisUSD against a variety of decentralized collateral.", + "website": "https://lista.org/", + "explorer": "https://bscscan.com/token/0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46", + "status": "active", + "id": "0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46", + "links": [ + { + "name": "telegram", + "url": "https://t.me/ListaDAO" + }, + { + "name": "twitter", + "url": "https://twitter.com/LISTA_DAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/lista-dao/" + } + ] + } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46/logo.png b/blockchains/smartchain/assets/0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46/logo.png new file mode 100644 index 0000000000000..06a2827afe20f Binary files /dev/null and b/blockchains/smartchain/assets/0xFceB31A79F71AC9CBDCF853519c1b12D379EdC46/logo.png differ diff --git a/blockchains/smartchain/assets/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/info.json b/blockchains/smartchain/assets/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/info.json new file mode 100644 index 0000000000000..2158c9c3bee90 --- /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 0000000000000..4cc976d6f47aa Binary files /dev/null and b/blockchains/smartchain/assets/0xa2C17A6Fd0aFE27afa2630A7528bC673089E6b8d/logo.png differ diff --git a/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json new file mode 100644 index 0000000000000..ed36e2d3c9f56 --- /dev/null +++ b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/info.json @@ -0,0 +1,24 @@ +{ + "name": "Wrapped Binance Beacon ETH", + "type": "BEP20", + "symbol": "wBETH", + "decimals": 18, + "website": "https://www.binance.com/en/wbeth", + "description": "wBETH is a reward-bearing ETH liquid staking token offered by Binance. Each wBETH represents 1 BETH (1:1 to staked ETH) plus all of its accrued ETH2.0 staking rewards starting from when wBETH's conversion rate was initialized at 1:1 on Apr 27th 2023 00:00 (UTC+0).", + "explorer": "https://bscscan.com/token/0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "status": "active", + "id": "0xa2E3356610840701BDf5611a53974510Ae27E2e1", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-beacon-eth" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-beacon-eth" + } + ], + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png new file mode 100644 index 0000000000000..832596160ae8d Binary files /dev/null and b/blockchains/smartchain/assets/0xa2E3356610840701BDf5611a53974510Ae27E2e1/logo.png differ diff --git a/blockchains/smartchain/assets/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F/info.json b/blockchains/smartchain/assets/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F/info.json new file mode 100644 index 0000000000000..73da76762d8ee --- /dev/null +++ b/blockchains/smartchain/assets/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F/info.json @@ -0,0 +1,25 @@ +{ + "name": "SerenityShield", + "website": "https://www.serenityshield.io/", + "description": "Serenity Shield is a self-custodial, privacy-centric digital data storage platform built on the blockchain, featuring a built-in inheritance protocol. It serves various use cases, including storage, recovery, and estate planning for wallet seed phrases and diverse digital data types.", + "explorer": "https://bscscan.com/token/0xa6D3D8698056cbb01785343B9cCeB205C7065f5F", + "type": "BEP20", + "symbol": "SERSH", + "decimals": 18, + "status": "abandoned", + "id": "0xa6D3D8698056cbb01785343B9cCeB205C7065f5F", + "links": [ + { + "name": "telegram", + "url": "https://t.me/serenityshield" + }, + { + "name": "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/0xa7ffb399d44eb830f01751052C75d14f0b47E779/info.json b/blockchains/smartchain/assets/0xa7ffb399d44eb830f01751052C75d14f0b47E779/info.json new file mode 100644 index 0000000000000..42a3cabebc84c --- /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 0000000000000..84b43f33dbe29 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 00683b6a97360..46d1c13579ff4 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/0xaB785054251DB0fc44538F5DeeBE7507B748b692/info.json b/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/info.json new file mode 100644 index 0000000000000..4e65d302562a2 --- /dev/null +++ b/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/info.json @@ -0,0 +1,25 @@ +{ + "name": "Jasan Wellness", + "type": "BEP20", + "symbol": "JW", + "decimals": 8, + "website": "https://jwtoken.org/", + "description": "FIRST GLOBAL WEB 3.0 WELLNESS COMMUNITY WITH AI AND BLOCKCHAIN. Empowering wellness Worldwide with Blockchain.", + "explorer": "https://bscscan.com/token/0xab785054251db0fc44538f5deebe7507b748b692", + "status": "active", + "id": "0xaB785054251DB0fc44538F5DeeBE7507B748b692", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/JWSocial1" + }, + { + "name": "facebook", + "url": "https://facebook.com/JWTOKEN" + }, + { + "name": "telegram", + "url": "https://t.me/web3wellness" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/logo.png b/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/logo.png new file mode 100644 index 0000000000000..e99ba9070be5d Binary files /dev/null and b/blockchains/smartchain/assets/0xaB785054251DB0fc44538F5DeeBE7507B748b692/logo.png differ diff --git a/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/info.json b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/info.json new file mode 100644 index 0000000000000..1bb16d833e800 --- /dev/null +++ b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/info.json @@ -0,0 +1,24 @@ +{ + "name": "VizslaSwap", + "type": "BEP20", + "symbol": "VIZSLASWAP", + "decimals": 18, + "website": "https://www.vizslaswap.com/", + "description": "VizslaSwap is a decentralized exchange running on BNB Smart Chain with lots of features that let you trade and earn tokens.", + "explorer": "https://bscscan.com/token/0xadaae082237cb1772c9e079db95c117e6dd0c5af", + "status": "active", + "id": "0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF", + "links": [ + { + "name": "telegram", + "url": "https://t.me/hungarianvizslainucoin" + }, + { + "name": "twitter", + "url": "https://twitter.com/HunVizslainu" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/logo.png b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/logo.png new file mode 100644 index 0000000000000..c2d1e4c3d022d Binary files /dev/null and b/blockchains/smartchain/assets/0xaDAaE082237cB1772c9e079dB95c117E6Dd0C5aF/logo.png differ diff --git a/blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/info.json b/blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/info.json new file mode 100644 index 0000000000000..0b0ce89025565 --- /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/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/logo.png b/blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x35f3fffFcb622bC9f64fA561D74e983Fd488D90c/logo.png rename to blockchains/smartchain/assets/0xaFCC12e4040615E7Afe9fb4330eB3D9120acAC05/logo.png diff --git a/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/info.json b/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/info.json index 5c52e9078e471..51088ee5c3970 100644 --- a/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/info.json +++ b/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/info.json @@ -6,7 +6,7 @@ "website": "https://binstarter.io", "description": "BSR is is a BinStarter Launchpad Token", "explorer": "https://bscscan.com/token/0xab287e6D370C61f105630e656B5468ACB4D00423", - "status": "active", + "status": "abandoned", "id": "0xab287e6D370C61f105630e656B5468ACB4D00423", "links": [ { @@ -34,4 +34,4 @@ "url": "https://binstarter.io/bsrdoc/BinStarter-Whitepaper-PDF.pdf" } ] -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/logo.png b/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/logo.png deleted file mode 100644 index 0dc19cf54da64..0000000000000 Binary files a/blockchains/smartchain/assets/0xab287e6D370C61f105630e656B5468ACB4D00423/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/info.json b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/info.json new file mode 100644 index 0000000000000..4b18ca3ad7c2c --- /dev/null +++ b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/info.json @@ -0,0 +1,33 @@ +{ + "name": "Pendle", + "website": "https://www.pendle.finance/", + "description": "Pendle is a protocol for people to trade and hedge yield. Users can tokenize yield and trade them on Pendle's AMM", + "explorer": "https://bscscan.com/token/0xb3Ed0A426155B79B898849803E3B36552f7ED507", + "type": "BEP20", + "symbol": "PENDLE", + "decimals": 18, + "status": "active", + "id": "0xb3Ed0A426155B79B898849803E3B36552f7ED507", + "links": [ + { + "name": "github", + "url": "https://github.com/pendle-finance" + }, + { + "name": "twitter", + "url": "https://twitter.com/pendle_fi" + }, + { + "name": "docs", + "url": "https://docs.pendle.finance/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pendle" + }, + { + "name": "discord", + "url": "https://discord.com/invite/9x9VUngNZD" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/logo.png b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/logo.png new file mode 100644 index 0000000000000..4f5c2f60ea7d5 Binary files /dev/null and b/blockchains/smartchain/assets/0xb3Ed0A426155B79B898849803E3B36552f7ED507/logo.png differ diff --git a/blockchains/smartchain/assets/0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029/info.json b/blockchains/smartchain/assets/0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029/info.json new file mode 100644 index 0000000000000..151aebbc79689 --- /dev/null +++ b/blockchains/smartchain/assets/0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029/info.json @@ -0,0 +1,80 @@ +{ + "name": "Agatech", + "type": "BEP20", + "symbol": "AGATA", + "decimals": 18, + "website": "https://agatech.io", + "description": "Agata Token transcends the typical role of a cryptocurrency, embodying the foundation of the Agatech ecosystem. Ingeniously designed for diverse utility, it stands as the key currency for governance, staking, and accessing a variety of services within the Agatech network.", + "explorer": "https://bscscan.com/token/0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029", + "status": "active", + "id": "0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/agatechsystems" + }, + { + "name": "github", + "url": "https://github.com/AgaTechSystems/" + }, + { + "name": "telegram", + "url": "https://t.me/agatechsystems" + }, + { + "name": "telegram_news", + "url": "https://t.me/agatechsystemsnews" + }, + { + "name": "blog", + "url": "https://www.twitch.tv/agatechlive" + }, + { + "name": "whitepaper", + "url": "https://agatech.gitbook.io/agatech-whitepaper" + }, + { + "name": "discord", + "url": "https://discord.com/invite/deT9GBqunR" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/Agatech_Agata/" + }, + { + "name": "medium", + "url": "https://agatech.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AgatechYT" + }, + { + "name": "facebook", + "url": "https://facebook.com/AgaTechSystems/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/agatech/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/agatech" + }, + { + "name": "docs", + "url": "https://agatech.gitbook.io/agatech-whitepaper/the-agatech-ecosystem-components-and-innovations" + }, + { + "name": "source_code", + "url": "https://github.com/AgaTechSystems/Agata/blob/main/Agatech.sol" + }, + { + "name": "forum", + "url": "https://t.me/agatechsystemsnews" + } + ], + "tags": [ + "deflationary" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029/logo.png b/blockchains/smartchain/assets/0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029/logo.png new file mode 100644 index 0000000000000..8465b86557c47 Binary files /dev/null and b/blockchains/smartchain/assets/0xb427e47e8fDD678278d2A91EEaC014ffcDDaF029/logo.png differ diff --git a/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/info.json b/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/info.json new file mode 100644 index 0000000000000..5423bceb926d2 --- /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 0000000000000..8bef532c45d04 Binary files /dev/null and b/blockchains/smartchain/assets/0xb4E14166F6dE109f800C52A84a434C383137C8dC/logo.png differ diff --git a/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/info.json b/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/info.json new file mode 100644 index 0000000000000..95ac86a600380 --- /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 0000000000000..72ed08137d52c Binary files /dev/null and b/blockchains/smartchain/assets/0xb8167C0E58f4Ca0Ec7a6D967a8d138F05b3A981F/logo.png differ diff --git a/blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/info.json b/blockchains/smartchain/assets/0xbAeA9aBA1454DF334943951d51116aE342eAB255/info.json new file mode 100644 index 0000000000000..1936280d2b0e4 --- /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 0000000000000..9eec3efdaa96c --- /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 0000000000000..69ca6c7128b35 Binary files /dev/null and b/blockchains/smartchain/assets/0xbB21c4A6257f3306d0458E92aD0FE583AD0cE858/logo.png differ diff --git a/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/info.json b/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/info.json index f1ccf50ab9763..97cea15c714b3 100644 --- a/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/info.json +++ b/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/info.json @@ -6,7 +6,7 @@ "type": "BEP20", "symbol": "DOGEBULL", "decimals": 18, - "status": "active", + "status": "abandoned", "id": "0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51", "links": [ { diff --git a/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/logo.png b/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/logo.png deleted file mode 100644 index db83ded5cad2c..0000000000000 Binary files a/blockchains/smartchain/assets/0xbD4a49e1a0bd8D17fAa881D057b48BC18b983E51/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11/info.json b/blockchains/smartchain/assets/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11/info.json new file mode 100644 index 0000000000000..1dbfd336be5ca --- /dev/null +++ b/blockchains/smartchain/assets/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11/info.json @@ -0,0 +1,76 @@ +{ + "name": "MetaGamescoin", + "type": "BEP20", + "symbol": "MGC", + "decimals": 9, + "website": "https://MetaGamescoin.io", + "description": "MGC token is Rewarding token of RANKING platform, and financial support for MGC Ecosystem, playing games and register your results and earn MGC, play games anytime and anywhere and earn MGC.", + "explorer": "https://bscscan.com/token/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11", + "status": "active", + "id": "0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MetagamesC" + }, + { + "name": "github", + "url": "https://github.com/MetaGamescoinio" + }, + { + "name": "telegram", + "url": "https://t.me/MetaGamesCoin_io" + }, + { + "name": "telegram_news", + "url": "https://t.me/MetaGamesCoin_io" + }, + { + "name": "blog", + "url": "https://MetaGamescoin.io/blog" + }, + { + "name": "docs", + "url": "https://MetaGamescoin.io/brief" + }, + { + "name": "forum", + "url": "https://MetaGamescoin.io/contact-us" + }, + { + "name": "discord", + "url": "https://discord.com/Metagamescoin#1848" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/MetaGamesCoin" + }, + { + "name": "whitepaper", + "url": "https://MetaGamescoin.io/whitepaper" + }, + { + "name": "medium", + "url": "https://link.medium.com/2yeFPk4hPub" + }, + { + "name": "youtube", + "url": "https://youtube.com/@metagamescoin" + }, + { + "name": "facebook", + "url": "https://facebook.com/metagamescoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/meta-games-coin" + }, + { + "name": "source_code", + "url": "https://github.com/MetaGamescoinio/smart-contract-audits" + } + ], + "tags": [ + "gamefi" + ] +} diff --git a/blockchains/smartchain/assets/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11/logo.png b/blockchains/smartchain/assets/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11/logo.png new file mode 100644 index 0000000000000..9b86d8aedfb6b Binary files /dev/null and b/blockchains/smartchain/assets/0xbb73BB2505AC4643d5C0a99c2A1F34B3DfD09D11/logo.png differ diff --git a/blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/info.json b/blockchains/smartchain/assets/0xbc81ea817b579eC0334BcA8E65E436b7cB540147/info.json index 0fcb3ac614c7d..73a3823322194 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/0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143/info.json b/blockchains/smartchain/assets/0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143/info.json new file mode 100644 index 0000000000000..1e853b29baec5 --- /dev/null +++ b/blockchains/smartchain/assets/0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143/info.json @@ -0,0 +1,25 @@ +{ + "name": "AI Companions", + "website": "https://aivcompanions.com/", + "description": "Our vision is to revolutionize companionship with AI Virtual Companions—highly customizable, interactive, and immersive virtual partners designed to meet your unique desires.", + "explorer": "https://bscscan.com/token/0xbe6ad1eb9876cf3d3f9b85feecfb400298e80143", + "type": "BEP20", + "symbol": "AIC", + "decimals": 18, + "status": "active", + "id": "0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/AIV_Companions" + }, + { + "name": "telegram", + "url": "https://t.me/AIV_Companions" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ai-companions/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143/logo.png b/blockchains/smartchain/assets/0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143/logo.png new file mode 100644 index 0000000000000..2e033bfc22281 Binary files /dev/null and b/blockchains/smartchain/assets/0xbe6Ad1eB9876cf3D3f9b85fEeCfB400298E80143/logo.png differ diff --git a/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/info.json b/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/info.json index 9c4632d1462bb..20a2826436873 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 e608f8fb7f1af..0000000000000 Binary files a/blockchains/smartchain/assets/0xc0E6AD13BD58413Ed308729b688d601243E1CF77/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/info.json b/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/info.json new file mode 100644 index 0000000000000..632b8107e62fc --- /dev/null +++ b/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/info.json @@ -0,0 +1,38 @@ +{ + "name": "Ice Open Network", + "website": "https://ice.io", + "description": "Ice represents the next generation of digital currency, mineable on any mobile device. At its core, Ice Network fosters a trusted community, proliferating the belief that digital currencies can maintain value across diverse use cases. Membership is initiated through invitations, enabling new users to earn and build micro-communities immediately.", + "explorer": "https://bscscan.com/token/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874", + "type": "BEP20", + "symbol": "ICE", + "decimals": 18, + "status": "active", + "id": "0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ice-decentralized-future/" + }, + { + "name": "github", + "url": "https://github.com/ice-blockchain" + }, + { + "name": "twitter", + "url": "https://twitter.com/ice_blockchain" + }, + { + "name": "telegram", + "url": "https://t.me/iceblockchain" + }, + { + "name": "whitepaper", + "url": "https://ice.io/whitepaper" + }, + { + "name": "reddit", + "url": "https://reddit.com/r/iceblockchain" + } + ], + "tags": [] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/logo.png b/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/logo.png new file mode 100644 index 0000000000000..985650b0545c0 Binary files /dev/null and b/blockchains/smartchain/assets/0xc335Df7C25b72eEC661d5Aa32a7c2B7b2a1D1874/logo.png differ diff --git a/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/info.json b/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/info.json index 3396804d8e7f2..fb5c64abf88c7 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 62b8c49184690..0000000000000 Binary files a/blockchains/smartchain/assets/0xc3601108947A46B219C09f24c668a52756C8d977/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json b/blockchains/smartchain/assets/0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409/info.json new file mode 100644 index 0000000000000..7585968a46646 --- /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 0000000000000..5d54b8a4dba01 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 0000000000000..bd46c8afeafdd --- /dev/null +++ b/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/info.json @@ -0,0 +1,68 @@ +{ + "name": "ICLICK INU", + "type": "BEP20", + "symbol": "ICLICK", + "decimals": 18, + "website": "https://iclickinu.com/", + "description": "Introducing the best PTC Blockchain platform. At iClick Inu, we have combined the power of blockchain with PTC advertising to create a whole new way to earn. Our platform ensures that your interactions and earnings are recorded on a secure and tamper-proof digital ledger, making everything transparent and trustworthy.", + "explorer": "https://bscscan.com/token/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319", + "status": "active", + "id": "0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/iclickinu" + }, + { + "name": "github", + "url": "https://github.com/iclickinu" + }, + { + "name": "telegram", + "url": "https://t.me/iclickinu" + }, + { + "name": "telegram_news", + "url": "https://t.me/ICLICKINU_TOKEN" + }, + { + "name": "blog", + "url": "https://iclickinu.com/blog" + }, + { + "name": "facebook", + "url": "https://facebook.com/profile.php?id=100092729705836" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/BridalBorate569" + }, + { + "name": "whitepaper", + "url": "https://iclickinu.com/whitepaper" + }, + { + "name": "medium", + "url": "https://medium.com/@iclickinu" + }, + { + "name": "youtube", + "url": "https://youtube.com/@iclickinu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/dexscan/bsc/0xcdb21401f042ede32b74809c27b91a8a90a5a00e/" + }, + { + "name": "source_code", + "url": "https://bscscan.com/token/0xc8c06a58e4ad7c01b9bb5af6c76a7a1cfebd0319#code" + }, + { + "name": "docs", + "url": "https://iclickinu.com/tokeninfo" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/logo.png b/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/logo.png new file mode 100644 index 0000000000000..1022f7423227b Binary files /dev/null and b/blockchains/smartchain/assets/0xc8C06a58E4ad7c01b9bb5Af6C76a7a1CfEBd0319/logo.png differ diff --git a/blockchains/smartchain/assets/0xcD1B51b87a8a7137D6421bA5A976225187a26777/info.json b/blockchains/smartchain/assets/0xcD1B51b87a8a7137D6421bA5A976225187a26777/info.json new file mode 100644 index 0000000000000..a1248864b3bc5 --- /dev/null +++ b/blockchains/smartchain/assets/0xcD1B51b87a8a7137D6421bA5A976225187a26777/info.json @@ -0,0 +1,24 @@ +{ + "name": "LSD", + "type": "BEP20", + "symbol": "LSD", + "decimals": 18, + "website": "https://www.l7.finance/", + "description": "L7 is a Web3 digital asset management and traffic aggregation platform.", + "explorer": "https://bscscan.com/token/0xcd1b51b87a8a7137d6421ba5a976225187a26777", + "status": "active", + "id": "0xcD1B51b87a8a7137D6421bA5A976225187a26777", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/L7_Global" + }, + { + "name": "telegram", + "url": "https://t.me/L7_Official" + } + ], + "tags": [ + "dapp" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcD1B51b87a8a7137D6421bA5A976225187a26777/logo.png b/blockchains/smartchain/assets/0xcD1B51b87a8a7137D6421bA5A976225187a26777/logo.png new file mode 100644 index 0000000000000..0a298b959a107 Binary files /dev/null and b/blockchains/smartchain/assets/0xcD1B51b87a8a7137D6421bA5A976225187a26777/logo.png differ diff --git a/blockchains/smartchain/assets/0xcE403dbDFf00853860C68739611c64F0Bd1c9aFf/info.json b/blockchains/smartchain/assets/0xcE403dbDFf00853860C68739611c64F0Bd1c9aFf/info.json new file mode 100644 index 0000000000000..547d296442d50 --- /dev/null +++ b/blockchains/smartchain/assets/0xcE403dbDFf00853860C68739611c64F0Bd1c9aFf/info.json @@ -0,0 +1,21 @@ +{ + "name": "KITE AI", + "type": "BEP20", + "symbol": "KITE AI", + "decimals": 6, + "website": "https://kiteai.tech/", + "description": "KITEAI is an innovative AI-driven chatbot platform that leverages the power of blockchain technology to create a decentralized and user-centric ecosystem.", + "explorer": "https://bscscan.com/token/0xce403dbdff00853860c68739611c64f0bd1c9aff", + "status": "active", + "id": "0xcE403dbDFf00853860C68739611c64F0Bd1c9aFf", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/KITEAIPRO" + }, + { + "name": "telegram", + "url": "https://t.me/KITEAIPRO" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xcE403dbDFf00853860C68739611c64F0Bd1c9aFf/logo.png b/blockchains/smartchain/assets/0xcE403dbDFf00853860C68739611c64F0Bd1c9aFf/logo.png new file mode 100644 index 0000000000000..dc2c27d941104 Binary files /dev/null and b/blockchains/smartchain/assets/0xcE403dbDFf00853860C68739611c64F0Bd1c9aFf/logo.png differ diff --git a/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/info.json b/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/info.json new file mode 100644 index 0000000000000..a073227b5e06f --- /dev/null +++ b/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/info.json @@ -0,0 +1,11 @@ +{ + "name": "ZEDXION", + "type": "BEP20", + "symbol": "ZEDX", + "decimals": 9, + "website": "https://zedxion.io", + "description": "Zedxion offers a comprehensive solution to the major problems faced by the traditional, fiat-driven monetary system. Building a crypto powered ecosystem comprising Zedxion Token.", + "explorer": "https://bscscan.com/token/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f", + "status": "active", + "id": "0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/logo.png b/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/logo.png new file mode 100644 index 0000000000000..0a6dc86b993a3 Binary files /dev/null and b/blockchains/smartchain/assets/0xca30e772e4Bd5F38ed775e6f8c57c6fFcb3c931f/logo.png differ diff --git a/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/info.json b/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/info.json new file mode 100644 index 0000000000000..82ec11ebe94cd --- /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 0000000000000..19ee44e53e6b1 Binary files /dev/null and b/blockchains/smartchain/assets/0xceacCe74f7e1C42c157b6184fB4FBD59dA8F509e/logo.png differ diff --git a/blockchains/smartchain/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/info.json b/blockchains/smartchain/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/info.json new file mode 100644 index 0000000000000..961a4c2ca0dc0 --- /dev/null +++ b/blockchains/smartchain/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/info.json @@ -0,0 +1,32 @@ +{ + "name": "UAHg", + "type": "BEP20", + "symbol": "UAHg", + "decimals": 6, + "website": "https://uahg.io/en", + "description": "A digital asset denominated in hryvnia and backed by a basket of top stablecoins.", + "explorer": "https://bscscan.com/token/0xd1e0e39bd1758abe0865d5289895a9197c6cd549", + "status": "active", + "id": "0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/uahg_to" + }, + { + "name": "telegram", + "url": "https://t.me/uahg_to" + }, + { + "name": "whitepaper", + "url": "https://api.uahg.io/storage/uploads/file/variables/ca/au/en_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uahg/" + } + ], + "tags": [ + "stablecoin" + ] + } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/logo.png b/blockchains/smartchain/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/logo.png new file mode 100644 index 0000000000000..22f0254137a88 Binary files /dev/null and b/blockchains/smartchain/assets/0xd1e0e39bD1758ABe0865d5289895A9197C6Cd549/logo.png differ diff --git a/blockchains/smartchain/assets/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa/info.json b/blockchains/smartchain/assets/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa/info.json new file mode 100644 index 0000000000000..3d6282a5b4906 --- /dev/null +++ b/blockchains/smartchain/assets/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa/info.json @@ -0,0 +1,42 @@ +{ + "name": "Paxe", + "type": "BEP20", + "symbol": "PAXE", + "decimals": 18, + "website": "https://www.paxe.io/", + "description": "PAXE Protocol is a cutting-edge native yield platform that provides access to cost-effective and secure high-quality yield opportunities across the industry.", + "explorer": "https://bscscan.com/token/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa", + "status": "active", + "id": "0xd2A3eec06719D5Ac66248003B5488E02165dd2fa", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Paxe_fi" + }, + { + "name": "github", + "url": "https://github.com/PaxeFi" + }, + { + "name": "telegram", + "url": "https://t.me/paxe_fi" + }, + { + "name": "telegram_news", + "url": "https://t.me/PaxeNews" + }, + { + "name": "whitepaper", + "url": "https://docs.paxe.io/" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/paxe/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/paxe" + } + ], + "tags": ["defi", "staking", "dapp"] +} diff --git a/blockchains/smartchain/assets/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa/logo.png b/blockchains/smartchain/assets/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa/logo.png new file mode 100644 index 0000000000000..b5e24fc5566d6 Binary files /dev/null and b/blockchains/smartchain/assets/0xd2A3eec06719D5Ac66248003B5488E02165dd2fa/logo.png differ diff --git a/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/info.json b/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/info.json new file mode 100644 index 0000000000000..93a22f13858d9 --- /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 0000000000000..f21e40bef2273 Binary files /dev/null and b/blockchains/smartchain/assets/0xd691d9a68C887BDF34DA8c36f63487333ACfD103/logo.png differ diff --git a/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/info.json b/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/info.json new file mode 100644 index 0000000000000..de51634d1f247 --- /dev/null +++ b/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/info.json @@ -0,0 +1,33 @@ +{ + "name": "Rhythm", + "type": "BEP20", + "symbol": "RHYTHM", + "decimals": 9, + "website": "https://rhythm.cash/", + "description": "$RHYTHM is the token powering the Rhythm music streaming platform, which boasts a library of over 100 million songs, offering holders in-app rewards, perks, NFTs, and powering the Artist Partner Program.", + "explorer": "https://bscscan.com/token/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb", + "status": "active", + "id": "0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/RhythmBSC" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/rhythm" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/rhythm/" + }, + { + "name": "telegram", + "url": "https://t.me/RhythmChat" + }, + { + "name": "whitepaper", + "url": "https://rhythm.cash/whitepaper" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/logo.png b/blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/logo.png similarity index 100% rename from blockchains/smartchain/assets/0xE4318F2aCf2b9c3f518A3a03B5412F4999970Ddb/logo.png rename to blockchains/smartchain/assets/0xd73E883e203646e87F6d073BAF3D7719bDa68Bcb/logo.png diff --git a/blockchains/smartchain/assets/0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684/info.json b/blockchains/smartchain/assets/0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684/info.json new file mode 100644 index 0000000000000..b04593b290151 --- /dev/null +++ b/blockchains/smartchain/assets/0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684/info.json @@ -0,0 +1,17 @@ +{ + "name": "ZedDex from ZEDX", + "website": "https://zedscan.net", + "description": "ZedDex is a decentralized payments-focused platform powered underneath by the fast and low-cost Zedx blockchain.", + "explorer": "https://bscscan.com/token/0xd79d8fa7b9e4ee8a4a2ffa1744c9f480096e9684", + "type": "BEP20", + "symbol": "ZED", + "decimals": 18, + "status": "active", + "id": "0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zedxionc" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684/logo.png b/blockchains/smartchain/assets/0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684/logo.png new file mode 100644 index 0000000000000..300bedbdb28fc Binary files /dev/null and b/blockchains/smartchain/assets/0xd79D8Fa7B9E4eE8a4a2fFA1744C9f480096e9684/logo.png differ diff --git a/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/info.json b/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/info.json index bcd232e68a19e..43507c9713bb2 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 044f8c292da18..b0d3e287349fe 100644 Binary files a/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/logo.png and b/blockchains/smartchain/assets/0xd882739Fca9CBAE00F3821c4c65189E2D7e26147/logo.png differ diff --git a/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json new file mode 100644 index 0000000000000..4db11f9697404 --- /dev/null +++ b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/info.json @@ -0,0 +1,36 @@ +{ + "name": "SquidGrow", + "type": "BEP20", + "symbol": "SquidGrow", + "decimals": 9, + "website": "https://squidgrow.wtf", + "description": "SquidGrow is the next big meme utility token in the cryptocurrency space! Created by the biggest Shiba Inu whale, SquidGrow has the building blocks to get to the highest level. With our owner being one of the biggest investors in the world, the possibilities and connections for SquidGrow are endless!", + "explorer": "https://bscscan.com/token/0xd8fa690304d2b2824d918c0c7376e2823704557a", + "status": "active", + "id": "0xd8Fa690304D2B2824D918C0c7376e2823704557A", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/squid-grow/" + }, + { + "name": "telegram", + "url": "https://t.me/SquidGrowPortal" + }, + { + "name": "twitter", + "url": "https://twitter.com/Squid_Grow" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/squidgrow" + }, + { + "name": "github", + "url": "https://github.com/shibtoshi" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png b/blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png similarity index 100% rename from blockchains/ethereum/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png rename to blockchains/smartchain/assets/0xd8Fa690304D2B2824D918C0c7376e2823704557A/logo.png diff --git a/blockchains/smartchain/assets/0xd9361d306A9e9A43f5883a064038220EF0D46fB0/info.json b/blockchains/smartchain/assets/0xd9361d306A9e9A43f5883a064038220EF0D46fB0/info.json new file mode 100644 index 0000000000000..aa8243de01232 --- /dev/null +++ b/blockchains/smartchain/assets/0xd9361d306A9e9A43f5883a064038220EF0D46fB0/info.json @@ -0,0 +1,40 @@ +{ + "name": "Styleo Coin", + "type": "BEP20", + "symbol": "STC", + "decimals": 18, + "website": "https://styleo.network/", + "description": "The Future of Digital Finance with StyleoCoin. StyleoCoin specialize in harnessing blockchain technology to create secure and transparent solutions for diverse industries, empowering businesses with efficiency and trust.", + "explorer": "https://bscscan.com/token/0xd9361d306A9e9A43f5883a064038220EF0D46fB0", + "status": "active", + "id": "0xd9361d306A9e9A43f5883a064038220EF0D46fB0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ez_Coinmarket" + }, + { + "name": "facebook", + "url": "https://facebook.com/styleocoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/styleocoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ezcoin-market/" + }, + { + "name": "github", + "url": "https://github.com/Credshields/audit-reports/blob/master/Styleo%20Coin%20Final%20Audit%20Report.pdf" + }, + { + "name": "youtube", + "url": "https://youtube.com/@styleocoin" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xd9361d306A9e9A43f5883a064038220EF0D46fB0/logo.png b/blockchains/smartchain/assets/0xd9361d306A9e9A43f5883a064038220EF0D46fB0/logo.png new file mode 100644 index 0000000000000..40b201976284c Binary files /dev/null and b/blockchains/smartchain/assets/0xd9361d306A9e9A43f5883a064038220EF0D46fB0/logo.png differ diff --git a/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/info.json b/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/info.json new file mode 100644 index 0000000000000..d6dc9eb34edfe --- /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 0000000000000..1b8b37e0f5b28 Binary files /dev/null and b/blockchains/smartchain/assets/0xd9483EA7214FCfd89B4Fb8f513B544920E315A52/logo.png differ diff --git a/blockchains/smartchain/assets/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D/info.json b/blockchains/smartchain/assets/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D/info.json new file mode 100644 index 0000000000000..0fc2b4d4e45ef --- /dev/null +++ b/blockchains/smartchain/assets/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D/info.json @@ -0,0 +1,40 @@ +{ + "name": "GBANK APY", + "type": "BEP20", + "symbol": "GBK", + "decimals": 8, + "website": "https://gamebank.fun/", + "description": "GBankAPY Auto-Staking and Compounding feature provides the ultimate ease of use for GBK holders with APY up to 953,456% and Rewards holders every 3 Seconds / 28,800 Times Daily! By simply buying and holding GBK tokens in your wallet, you’ll earn GBK rewards as interest payments directly into your wallet. Your amount of GBK reward tokens will increase every 3 seconds.", + "explorer": "https://bscscan.com/token/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D", + "status": "active", + "id": "0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GbankApy" + }, + { + "name": "telegram", + "url": "https://t.me/GbankApyofficial" + }, + { + "name": "whitepaper", + "url": "https://gbankapy.gitbook.io/usdgbankapy/game-bank/token-info" + }, + { + "name": "facebook", + "url": "https://facebook.com/GBANK-APY-109530201732865/" + }, + { + "name": "medium", + "url": "https://medium.com/@GBANKAPY" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gbank-apy/" + } + ], + "tags": [ + "staking" + ] +} diff --git a/blockchains/smartchain/assets/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D/logo.png b/blockchains/smartchain/assets/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D/logo.png new file mode 100644 index 0000000000000..95f3546b8843e Binary files /dev/null and b/blockchains/smartchain/assets/0xdA0638EA374c4c5bF2914E6F4D5B2335dEb8D80D/logo.png differ diff --git a/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/info.json b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/info.json new file mode 100644 index 0000000000000..0f8ec13181894 --- /dev/null +++ b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/info.json @@ -0,0 +1,40 @@ +{ + "name": "HowInu", + "type": "BEP20", + "symbol": "How", + "decimals": 18, + "website": "https://howinu.com/", + "description": "HowInu is a Meme Cryptocurrency running on the Binance Smart Chain Network created by Pasindu Shenal based on an image of a fictional dog.The HowInu Crypto project aims to play a role in advancing the crypto industry beyond the functionality of a normal meme cryptocurrency.Ultimately, the project aims to remain stable in the Crypto market for a long time and become a popular Meme Cryptocurrency in the world along with the growth of the Crypto market.", + "explorer": "https://bscscan.com/token/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8", + "status": "active", + "id": "0xdAa64420e769fae36CCaA78e26024FE9f583e9D8", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/howinu" + }, + { + "name": "telegram", + "url": "https://t.me/howinu" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/howinu/" + }, + { + "name": "facebook", + "url": "https://facebook.com/howinu" + }, + { + "name": "youtube", + "url": "https://youtube.com/howinu" + }, + { + "name": "whitepaper", + "url": "https://howinu.com/download/107/?tmstv=1685559667" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/logo.png b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/logo.png new file mode 100644 index 0000000000000..113c19589edc3 Binary files /dev/null and b/blockchains/smartchain/assets/0xdAa64420e769fae36CCaA78e26024FE9f583e9D8/logo.png differ diff --git a/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/info.json b/blockchains/smartchain/assets/0xdE7B72c2c2828A81bEe8D7FA86c7FC22B58A713d/info.json new file mode 100644 index 0000000000000..8e751ce590275 --- /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 0000000000000..f6079535aa18e 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 0000000000000..5aebe0b8f6b2e --- /dev/null +++ b/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/info.json @@ -0,0 +1,21 @@ +{ + "name": "Payslink Token", + "website": "https://payslinks.com/", + "description": "Technology poised to disrupt the entire payment industry covering peer to peer payments and mass payments.", + "explorer": "https://bscscan.com/token/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d", + "type": "BEP20", + "symbol": "PAYS", + "decimals": 18, + "status": "active", + "id": "0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/payslink" + }, + { + "name": "telegram", + "url": "https://t.me/payslink" + } + ] +} diff --git a/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/logo.png b/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/logo.png new file mode 100644 index 0000000000000..abfc45d7828a8 Binary files /dev/null and b/blockchains/smartchain/assets/0xdb5642fC3Ffd7a8BdC2C837197736c54B120872d/logo.png differ diff --git a/blockchains/smartchain/assets/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/info.json b/blockchains/smartchain/assets/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/info.json new file mode 100644 index 0000000000000..d91b34e965082 --- /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 0000000000000..f3607f6cf9a55 Binary files /dev/null and b/blockchains/smartchain/assets/0xdd02bC212E79ACdAb476C9295cDea8a61099Cb79/logo.png differ diff --git a/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/info.json b/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/info.json new file mode 100644 index 0000000000000..c0b31509af24c --- /dev/null +++ b/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/info.json @@ -0,0 +1,17 @@ +{ + "name": "EGGY", + "website": "https://eggybsc.com", + "description": "IT`S NOT AN ORDINARY MEME TOKEN - BY RECEIVING BTC REFLECTIONS ( YES, IT'S TRUE, YOU WILL RECEIVE ONE&ONLY $BTC IF YOU TRADE AND HOLD $EGGY),", + "explorer": "https://bscscan.com/token/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED", + "type": "BEP20", + "symbol": "EGGY", + "decimals": 9, + "status": "active", + "id": "0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/EGGY_BSC" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/logo.png b/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/logo.png new file mode 100644 index 0000000000000..8a369f1332316 Binary files /dev/null and b/blockchains/smartchain/assets/0xe19c0ed160f27f3A1a004C4BD8971281Fa8d31ED/logo.png differ diff --git a/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/info.json b/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/info.json new file mode 100644 index 0000000000000..2645831747684 --- /dev/null +++ b/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/info.json @@ -0,0 +1,49 @@ +{ + "name": "Disney", + "website": "https://distoken.xyz", + "description": "DIS launched by Miningtw Technology Co., Ltd., It is a meme token of cryptocurrency, and mining. Tokens for interaction, rewards, gifts purposes, the token economic model 50% of 5 years of pledge mining, and users rewards per second according to the total amount of pledges , for fun and joy.", + "explorer": "https://bscscan.com/token/0xe2EcC66E14eFa96E9c55945f79564f468882D24C", + "type": "BEP20", + "symbol": "DIS", + "decimals": 18, + "status": "active", + "id": "0xe2EcC66E14eFa96E9c55945f79564f468882D24C", + "tags": [ + "memes", + "staking" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/distoken_xyz" + }, + { + "name": "telegram", + "url": "https://t.me/miningtwxyz" + }, + { + "name": "github", + "url": "https://github.com/MiningTW/Dis-Token" + }, + { + "name": "medium", + "url": "https://medium.com/@miningtw" + }, + { + "name": "blog", + "url": "https://www.twincn.com/item.aspx?no=90324590" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/disney/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/disney" + }, + { + "name": "whitepaper", + "url": "https://distoken.xyz/distoken-whitepaper-2-0/" + } + ] +} diff --git a/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/logo.png b/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/logo.png new file mode 100644 index 0000000000000..9dce726640988 Binary files /dev/null and b/blockchains/smartchain/assets/0xe2EcC66E14eFa96E9c55945f79564f468882D24C/logo.png differ diff --git a/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/info.json b/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/info.json new file mode 100644 index 0000000000000..9b7f55ccc8903 --- /dev/null +++ b/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/info.json @@ -0,0 +1,33 @@ +{ + "name": "Minati", + "type": "BEP20", + "symbol": "MNTC", + "decimals": 18, + "website": "https://minati.io/", + "description": "Minati is a leading digital currency platform, combining DeFi, AI, and blockchain to revolutionize finance. We create a transparent, secure ecosystem for individuals to control their financial destiny. Leveraging blockchain, we record transactions on an immutable ledger, prioritizing safety through encryption and robust security.", + "explorer": "https://bscscan.com/token/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9", + "status": "active", + "id": "0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/minatifi" + }, + { + "name": "telegram", + "url": "https://t.me/Minatifi" + }, + { + "name": "facebook", + "url": "https://facebook.com/people/Minati/100093107832528/" + }, + { + "name": "youtube", + "url": "https://youtube.com/@MinatiToken" + } + ], + "tags": [ + "defi", + "staking" + ] +} diff --git a/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/logo.png b/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/logo.png new file mode 100644 index 0000000000000..bcfd3fced0d36 Binary files /dev/null and b/blockchains/smartchain/assets/0xe4e11e02AA14c7f24DB749421986EAEc1369e8C9/logo.png differ diff --git a/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/info.json b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/info.json new file mode 100644 index 0000000000000..15d44bbe0913f --- /dev/null +++ b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/info.json @@ -0,0 +1,60 @@ +{ + "name": "Crypto Snack 2.0", + "type": "BEP20", + "symbol": "SNACK", + "decimals": 18, + "website": "https://cryptosnacks.org/", + "description": "Crypto Snack leverages blockchain technology to bring exclusive business and investment opportunities. Introducing SNACK 2.0, the most sophisticated utility token, Crypto Snack now provides revolutionary benefits in the igaming, real estate and ticketing industries.", + "explorer": "https://bscscan.com/token/0xe52bB35344cceedd014Be2896d01e604ad992c85", + "status": "active", + "id": "0xe52bB35344cceedd014Be2896d01e604ad992c85", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CryptoSnack_" + }, + { + "name": "github", + "url": "https://github.com/CryptoSnackProject" + }, + { + "name": "telegram", + "url": "https://t.me/CryptoSnackCommunity" + }, + { + "name": "discord", + "url": "https://discord.com/channels/915605284402130964/915605286662844458" + }, + { + "name": "reddit", + "url": "https://reddit.com/user/CryptoSnackProject" + }, + { + "name": "whitepaper", + "url": "https://drive.google.com/file/d/1TSS1MQPIojeOJUQ4YcaZ4t2vAvLi-8ZM/view" + }, + { + "name": "medium", + "url": "https://cryptosnack.medium.com/" + }, + { + "name": "youtube", + "url": "https://youtube.com/c/CryptoSnack" + }, + { + "name": "facebook", + "url": "https://facebook.com/CryptoSnackOfficial" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/crypto-snack/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cryptosnack" + } + ], + "tags": [ + "synthetics" + ] +} diff --git a/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/logo.png b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/logo.png new file mode 100644 index 0000000000000..6a9a2201dfa22 Binary files /dev/null and b/blockchains/smartchain/assets/0xe52bB35344cceedd014Be2896d01e604ad992c85/logo.png differ diff --git a/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json b/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json index 117ef79e380da..faf55a7a32dea 100644 --- a/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json +++ b/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/info.json @@ -7,7 +7,7 @@ "type": "BEP20", "symbol": "Metis", "decimals": 18, - "status": "active", + "status": "abandoned", "tags": [ "defi" ], @@ -25,4 +25,4 @@ "url": "https://coinmarketcap.com/currencies/metisdao/" } ] -} \ No newline at end of file +} diff --git a/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/logo.png b/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/logo.png deleted file mode 100644 index 8f53736344256..0000000000000 Binary files a/blockchains/smartchain/assets/0xe552Fb52a4F19e44ef5A967632DBc320B0820639/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json b/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json new file mode 100644 index 0000000000000..b4e2b6f0acef5 --- /dev/null +++ b/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/info.json @@ -0,0 +1,25 @@ +{ + "name": "Binance ABBC", + "type": "BEP20", + "symbol": "BABBC", + "decimals": 8, + "website": "https://abbcswap.com/", + "description": "ABBC Swap is a platform that allows users to seamlessly swap their ABBC from the ABBC mainnet using Aladdin Wallet and Aladdin Pro wallet apps into Polygon ABBC pegged.", + "explorer": "https://bscscan.com/token/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D", + "status": "active", + "id": "0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D", + "links": [ + { + "name": "telegram", + "url": "https://t.me/abbcfoundation" + }, + { + "name": "twitter", + "url": "https://twitter.com/abbcfoundation" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/abbc-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png b/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png new file mode 100644 index 0000000000000..9259df4c30a91 Binary files /dev/null and b/blockchains/smartchain/assets/0xe83cE6bfb580583bd6A62B4Be7b34fC25F02910D/logo.png differ diff --git a/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/info.json b/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/info.json index 9de7ecc928f6f..7281e368c410a 100644 --- a/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/info.json +++ b/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/info.json @@ -6,7 +6,7 @@ "website": "https://metanet.is/", "description": "MetaNet is a proprietary, hyper deflationary token on the Binance Smart Chain network. MetaNet is a platform in where content creators buy and sell NFTs.", "explorer": "https://bscscan.com/token/0xf3630c7EED28514b4c14222bB86E31B53A5da101", - "status": "active", + "status": "abandoned", "id": "0xf3630c7EED28514b4c14222bB86E31B53A5da101", "links": [ { diff --git a/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/logo.png b/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/logo.png deleted file mode 100644 index 423cec56efd88..0000000000000 Binary files a/blockchains/smartchain/assets/0xf3630c7EED28514b4c14222bB86E31B53A5da101/logo.png and /dev/null differ diff --git a/blockchains/smartchain/assets/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4/info.json b/blockchains/smartchain/assets/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4/info.json new file mode 100644 index 0000000000000..834a562d6f157 --- /dev/null +++ b/blockchains/smartchain/assets/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4/info.json @@ -0,0 +1,36 @@ +{ + "name": "Minu", + "type": "BEP20", + "symbol": "MINU", + "decimals": 18, + "website": "https://www.minucoin.com/", + "description": "Minu is the first mining dog coin on Binance Smart Chain.", + "explorer": "https://bscscan.com/token/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4", + "status": "active", + "id": "0xf48f91df403976060cC05dBbf8A0901b09fdeFd4", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/minu_coin" + }, + { + "name": "telegram", + "url": "https://t.me/minu_coin" + }, + { + "name": "whitepaper", + "url": "https://www.minucoin.com/whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/minu/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/minu/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4/logo.png b/blockchains/smartchain/assets/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4/logo.png new file mode 100644 index 0000000000000..ed28b4d857a9b Binary files /dev/null and b/blockchains/smartchain/assets/0xf48f91df403976060cC05dBbf8A0901b09fdeFd4/logo.png differ diff --git a/blockchains/smartchain/assets/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/info.json b/blockchains/smartchain/assets/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/info.json new file mode 100644 index 0000000000000..b4f1457d05b82 --- /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 0000000000000..3ba6533d7e0dd Binary files /dev/null and b/blockchains/smartchain/assets/0xf4BEa2c219Eb95C6745983B68185C7340c319D9E/logo.png differ diff --git a/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/info.json b/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/info.json new file mode 100644 index 0000000000000..2bd8b12412ff1 --- /dev/null +++ b/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/info.json @@ -0,0 +1,32 @@ +{ + "name": "Pink BNB", + "type": "BEP20", + "symbol": "PNB", + "decimals": 18, + "website": "https://pnb.world/", + "description": "The world first Ai analysis portal", + "explorer": "https://bscscan.com/token/0xf5bde7eb378661f04c841b22ba057326b0370153", + "status": "active", + "id": "0xf5BDe7Eb378661F04C841B22bA057326B0370153", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/pnbworld" + }, + { + "name": "telegram", + "url": "https://t.me/pinkbnb" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/pink-bnb/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pink-bnb" + } + ], + "tags": [ + "deflationary" + ] +} diff --git a/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/logo.png b/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/logo.png new file mode 100644 index 0000000000000..a750e6c4fffb3 Binary files /dev/null and b/blockchains/smartchain/assets/0xf5BDe7Eb378661F04C841B22bA057326B0370153/logo.png differ diff --git a/blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/info.json b/blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/info.json new file mode 100644 index 0000000000000..cfcec79474dd7 --- /dev/null +++ b/blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/info.json @@ -0,0 +1,11 @@ +{ + "name": "JulSwap", + "website": "https://julswap.com", + "description": "JulSwap DEX Commnuity Token", + "explorer": "https://bscscan.com/token/0xf5D8015D625be6F59b8073C8189BD51bA28792e1", + "type": "BEP20", + "symbol": "JulD", + "decimals": 18, + "status": "active", + "id": "0xf5D8015D625be6F59b8073C8189BD51bA28792e1" +} \ No newline at end of file diff --git a/blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/logo.png b/blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/logo.png similarity index 100% rename from blockchains/smartchain/assets/0x5A41F637C3f7553dBa6dDC2D3cA92641096577ea/logo.png rename to blockchains/smartchain/assets/0xf5D8015D625be6F59b8073C8189BD51bA28792e1/logo.png diff --git a/blockchains/smartchain/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json b/blockchains/smartchain/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json new file mode 100644 index 0000000000000..9de4ec385bf94 --- /dev/null +++ b/blockchains/smartchain/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/info.json @@ -0,0 +1,21 @@ +{ + "name": "Lorenzo stBTC", + "type": "BEP20", + "symbol": "stBTC", + "decimals": 18, + "website": "https://www.lorenzo-protocol.xyz/", + "description": "To be the premier Bitcoin platform for yield-bearing token issuance, trading, and settlement.", + "explorer": "https://bscscan.com/token/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "status": "active", + "id": "0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LorenzoProtocol" + }, + { + "name": "telegram", + "url": "https://t.me/lorenzoprotocol" + } + ] +} diff --git a/blockchains/smartchain/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png b/blockchains/smartchain/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png new file mode 100644 index 0000000000000..d0c4e5f85eb2b Binary files /dev/null and b/blockchains/smartchain/assets/0xf6718b2701D4a6498eF77D7c152b2137Ab28b8A3/logo.png differ diff --git a/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json b/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json index 7f969c2f4c46a..05dc893c0c8a5 100644 --- a/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json +++ b/blockchains/smartchain/assets/0xf68D4d917592f3a62417aCE42592F15296cc33A0/info.json @@ -17,8 +17,5 @@ "name": "github", "url": "https://github.com/https://github.com/trustwallet/assets/pull/22943#issuecomment-1304637991" } - ], - "tags": [ - "staking" ] } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/info.json b/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/info.json index a763599730108..5ad21bdf1d3e1 100644 --- a/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/info.json +++ b/blockchains/smartchain/assets/0xfEbe8C1eD424DbF688551D4E2267e7A53698F0aa/info.json @@ -27,15 +27,15 @@ }, { "name": "medium", - "url": "https://medium.com/@vitainu" + "url": "https://medium.com/vitainu" }, { "name": "discord", - "url": "https://discord.com/invite/m7JxNcSt7e" + "url": "https://discord.com/invite/vinu" }, { "name": "whitepaper", - "url": "https://vitainu.org/wp-content/uploads/2022/01/Vita-Inu-Whitepaper-NEW-INTRO_compressed.pdf" + "url": "https://vitainu.org/whitepaper" }, { "name": "facebook", @@ -43,7 +43,7 @@ }, { "name": "youtube", - "url": "https://youtube.com/channel/UCLcg0_VQMlOA9RfyW6xL9Zw" + "url": "https://youtube.com/c/vitainucoin" }, { "name": "reddit", diff --git a/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/info.json b/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/info.json index 62766ba8ac7c6..701f1ad37e884 100644 --- a/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/info.json +++ b/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/info.json @@ -6,6 +6,6 @@ "website": "https://zedxion.io", "description": "Zedxion offers a comprehensive solution to the major problems faced by the traditional, fiat-driven monetary system. Building a crypto powered ecosystem comprising Zedxion Token.", "explorer": "https://bscscan.com/token/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34", - "status": "active", + "status": "abandoned", "id": "0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34" } \ No newline at end of file diff --git a/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/logo.png b/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/logo.png deleted file mode 100644 index f8a3cf70f8f50..0000000000000 Binary files a/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/logo.png and /dev/null differ diff --git a/blockchains/smartchain/info/info.json b/blockchains/smartchain/info/info.json index d5acb8d94e118..c745cc84b86d8 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 21936e1e2b3cc..5bd26d94d3e5d 100644 --- a/blockchains/smartchain/tokenlist.json +++ b/blockchains/smartchain/tokenlist.json @@ -154,9 +154,6 @@ { "base": "c20000714_t0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51" }, - { - "base": "c20000714_t0xCa3F508B8e4Dd382eE878A314789373D80A5190A" - }, { "base": "c20000714_t0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E" }, @@ -191,12 +188,7 @@ "base": "c20000714_t0x734D66f635523D7ddb7d2373C128333DA313041b" }, - { - "base": "c20000714_t0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34" - }, - { - "base": "c20000714_t0x88479186BAC914E4313389a64881F5ed0153C765" - }, + { "base": "c20000714_t0xc748673057861a797275CD8A068AbB95A902e8de" } @@ -735,17 +727,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xC9849E6fdB743d08fAeE3E34dd2D1bc69EA11a51/logo.png", "pairs": [] }, - { - "chainId": 56, - "asset": "c20000714_t0xCa3F508B8e4Dd382eE878A314789373D80A5190A", - "type": "BEP20", - "address": "0xCa3F508B8e4Dd382eE878A314789373D80A5190A", - "name": "beefy.finance", - "symbol": "BIFI", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xCa3F508B8e4Dd382eE878A314789373D80A5190A/logo.png", - "pairs": [] - }, { "asset": "c20000714_t0xcc2E12a9b5b75360c6FBf23B584c275D52cDdb0E", "type": "BEP20", @@ -879,26 +860,6 @@ "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x734D66f635523D7ddb7d2373C128333DA313041b/logo.png", "pairs": [] }, - { - "asset": "c20000714_t0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34", - "type": "BEP20", - "address": "0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34", - "name": "ZEDXION", - "symbol": "ZEDXION", - "decimals": 18, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0xff44967f2E4EBE0b8c5b6812f25e1b9BceC70b34/logo.png", - "pairs": [] - }, - { - "asset": "c20000714_t0x88479186BAC914E4313389a64881F5ed0153C765", - "type": "BEP20", - "address": "0x88479186BAC914E4313389a64881F5ed0153C765", - "name": "SquidGrow", - "symbol": "SquidGrow", - "decimals": 19, - "logoURI": "https://assets-cdn.trustwallet.com/blockchains/smartchain/assets/0x88479186BAC914E4313389a64881F5ed0153C765/logo.png", - "pairs": [] - }, { "asset": "c20000714_t0xC3137c696796D69F783CD0Be4aB4bB96814234Aa", "type": "BEP20", diff --git a/blockchains/smartchain/validators/assets/0x0813D0D092b97C157A8e68A65ccdF41b956883ae/logo.png b/blockchains/smartchain/validators/assets/0x0813D0D092b97C157A8e68A65ccdF41b956883ae/logo.png new file mode 100644 index 0000000000000..a907d86b4c996 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x0813D0D092b97C157A8e68A65ccdF41b956883ae/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x0C5c547215c6516603c3de9525abEf86f66D3A54/logo.png b/blockchains/smartchain/validators/assets/0x0C5c547215c6516603c3de9525abEf86f66D3A54/logo.png new file mode 100644 index 0000000000000..116bdea975809 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x0C5c547215c6516603c3de9525abEf86f66D3A54/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x0E3cf208F4141C41da86d52C5F2076b1aB310E8F/logo.png b/blockchains/smartchain/validators/assets/0x0E3cf208F4141C41da86d52C5F2076b1aB310E8F/logo.png new file mode 100644 index 0000000000000..f95b27e97e63d Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x0E3cf208F4141C41da86d52C5F2076b1aB310E8F/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x0E89f8F61690E3115c176db4dcE8Bb0333259987/logo.png b/blockchains/smartchain/validators/assets/0x0E89f8F61690E3115c176db4dcE8Bb0333259987/logo.png new file mode 100644 index 0000000000000..9ee2bccef40d0 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x0E89f8F61690E3115c176db4dcE8Bb0333259987/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x11F3A9d13F6f11F29A7c96922C5471F356BD129F/logo.png b/blockchains/smartchain/validators/assets/0x11F3A9d13F6f11F29A7c96922C5471F356BD129F/logo.png new file mode 100644 index 0000000000000..8068abfd466fb Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x11F3A9d13F6f11F29A7c96922C5471F356BD129F/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x1AE5f5C3Cb452E042b0B7b9DC60596C9CD84BaF6/logo.png b/blockchains/smartchain/validators/assets/0x1AE5f5C3Cb452E042b0B7b9DC60596C9CD84BaF6/logo.png new file mode 100644 index 0000000000000..90eb93466c82b Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x1AE5f5C3Cb452E042b0B7b9DC60596C9CD84BaF6/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x31738238B6A4FCb00bA4De9ee923986b6Df55ae6/logo.png b/blockchains/smartchain/validators/assets/0x31738238B6A4FCb00bA4De9ee923986b6Df55ae6/logo.png new file mode 100644 index 0000000000000..529434877a762 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x31738238B6A4FCb00bA4De9ee923986b6Df55ae6/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x343dA7Ff0446247ca47AA41e2A25c5Bbb230ED0A/logo.png b/blockchains/smartchain/validators/assets/0x343dA7Ff0446247ca47AA41e2A25c5Bbb230ED0A/logo.png new file mode 100644 index 0000000000000..74d5a59b1c1a6 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x343dA7Ff0446247ca47AA41e2A25c5Bbb230ED0A/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x3bA645FB613eB9E8A44f84B230C037C9972615C3/logo.png b/blockchains/smartchain/validators/assets/0x3bA645FB613eB9E8A44f84B230C037C9972615C3/logo.png new file mode 100644 index 0000000000000..85c107ea48183 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x3bA645FB613eB9E8A44f84B230C037C9972615C3/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x477cB5d87144b2a6d93f72e32f5E01a459260D68/logo.png b/blockchains/smartchain/validators/assets/0x477cB5d87144b2a6d93f72e32f5E01a459260D68/logo.png new file mode 100644 index 0000000000000..0606bd4f3ada9 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x477cB5d87144b2a6d93f72e32f5E01a459260D68/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x487Ad3A6E2FFAa9f393ae839005aF2f4c00d9E63/logo.png b/blockchains/smartchain/validators/assets/0x487Ad3A6E2FFAa9f393ae839005aF2f4c00d9E63/logo.png new file mode 100644 index 0000000000000..a96d3610b49e4 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x487Ad3A6E2FFAa9f393ae839005aF2f4c00d9E63/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x4DC1Bf52da103452097df48505A6D01020fFB22b/logo.png b/blockchains/smartchain/validators/assets/0x4DC1Bf52da103452097df48505A6D01020fFB22b/logo.png new file mode 100644 index 0000000000000..8a68d860cd0b4 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x4DC1Bf52da103452097df48505A6D01020fFB22b/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x5CE21461E6472914F5E4D5B296C72125f26ed462/logo.png b/blockchains/smartchain/validators/assets/0x5CE21461E6472914F5E4D5B296C72125f26ed462/logo.png new file mode 100644 index 0000000000000..7c6dcec77c43d Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x5CE21461E6472914F5E4D5B296C72125f26ed462/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x5Ce119c093cFe978dcfd00e09E173FB97685069E/logo.png b/blockchains/smartchain/validators/assets/0x5Ce119c093cFe978dcfd00e09E173FB97685069E/logo.png new file mode 100644 index 0000000000000..64723bc1c8bf6 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x5Ce119c093cFe978dcfd00e09E173FB97685069E/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x5c38FF8Ca2b16099C086bF36546e99b13D152C4c/logo.png b/blockchains/smartchain/validators/assets/0x5c38FF8Ca2b16099C086bF36546e99b13D152C4c/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x5c38FF8Ca2b16099C086bF36546e99b13D152C4c/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x773760b0708a5Cc369c346993a0c225D8e4043B1/logo.png b/blockchains/smartchain/validators/assets/0x773760b0708a5Cc369c346993a0c225D8e4043B1/logo.png new file mode 100644 index 0000000000000..83aab020b7ffe Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x773760b0708a5Cc369c346993a0c225D8e4043B1/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x78504de17d6Dba03387C7CaE5322B9C86bF3027f/logo.png b/blockchains/smartchain/validators/assets/0x78504de17d6Dba03387C7CaE5322B9C86bF3027f/logo.png new file mode 100644 index 0000000000000..fc4482cfc11b9 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x78504de17d6Dba03387C7CaE5322B9C86bF3027f/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x7B67A5Bfc93E8ad3C4C4d3fdc6a4029dD110Fa99/logo.png b/blockchains/smartchain/validators/assets/0x7B67A5Bfc93E8ad3C4C4d3fdc6a4029dD110Fa99/logo.png new file mode 100644 index 0000000000000..988f517439ae9 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x7B67A5Bfc93E8ad3C4C4d3fdc6a4029dD110Fa99/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x7d0F8A6D1C8fbF929Dcf4847A31E30d14923Fa31/logo.png b/blockchains/smartchain/validators/assets/0x7d0F8A6D1C8fbF929Dcf4847A31E30d14923Fa31/logo.png new file mode 100644 index 0000000000000..dc96014ce5f34 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x7d0F8A6D1C8fbF929Dcf4847A31E30d14923Fa31/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x8683DCb7A775dF4587eEfAD7c08ee647D1da32C1/logo.png b/blockchains/smartchain/validators/assets/0x8683DCb7A775dF4587eEfAD7c08ee647D1da32C1/logo.png new file mode 100644 index 0000000000000..c2f86eb32abdf Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x8683DCb7A775dF4587eEfAD7c08ee647D1da32C1/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x95E105468b3a9E158df258ee385CA873cB566bF2/logo.png b/blockchains/smartchain/validators/assets/0x95E105468b3a9E158df258ee385CA873cB566bF2/logo.png new file mode 100644 index 0000000000000..315c42cb30d4f Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x95E105468b3a9E158df258ee385CA873cB566bF2/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0x9941BCe2601fC93478DF9f5F6Cc83F4FFC1D71d8/logo.png b/blockchains/smartchain/validators/assets/0x9941BCe2601fC93478DF9f5F6Cc83F4FFC1D71d8/logo.png new file mode 100644 index 0000000000000..a7943ea73994f Binary files /dev/null and b/blockchains/smartchain/validators/assets/0x9941BCe2601fC93478DF9f5F6Cc83F4FFC1D71d8/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xA0fB25F82592F3cE965804a2f21B65783d66cF18/logo.png b/blockchains/smartchain/validators/assets/0xA0fB25F82592F3cE965804a2f21B65783d66cF18/logo.png new file mode 100644 index 0000000000000..1a63a1de522ad Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xA0fB25F82592F3cE965804a2f21B65783d66cF18/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xA3beF3479254a2ec123Bf4CBa34499f94D96Ee5b/logo.png b/blockchains/smartchain/validators/assets/0xA3beF3479254a2ec123Bf4CBa34499f94D96Ee5b/logo.png new file mode 100644 index 0000000000000..aecf77df0b231 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xA3beF3479254a2ec123Bf4CBa34499f94D96Ee5b/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xB12e8137eF499a1d81552DB11664a9E617fd350A/logo.png b/blockchains/smartchain/validators/assets/0xB12e8137eF499a1d81552DB11664a9E617fd350A/logo.png new file mode 100644 index 0000000000000..e035274e864a6 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xB12e8137eF499a1d81552DB11664a9E617fd350A/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xB58ac55EB6B10e4f7918D77C92aA1cF5bB2DEd5e/logo.png b/blockchains/smartchain/validators/assets/0xB58ac55EB6B10e4f7918D77C92aA1cF5bB2DEd5e/logo.png new file mode 100644 index 0000000000000..ee83d6cabfcd1 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xB58ac55EB6B10e4f7918D77C92aA1cF5bB2DEd5e/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xB7Fce9e05c681Fb92e867D9893255DCE3e8790a2/logo.png b/blockchains/smartchain/validators/assets/0xB7Fce9e05c681Fb92e867D9893255DCE3e8790a2/logo.png new file mode 100644 index 0000000000000..4a63c34435f15 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xB7Fce9e05c681Fb92e867D9893255DCE3e8790a2/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xBb772d6e37C3dDB0f08e05c10d05419dB54C9Fd8/logo.png b/blockchains/smartchain/validators/assets/0xBb772d6e37C3dDB0f08e05c10d05419dB54C9Fd8/logo.png new file mode 100644 index 0000000000000..17e1bf0b88263 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xBb772d6e37C3dDB0f08e05c10d05419dB54C9Fd8/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xC1DA8b99674137CC4971bF974cdC5157c8B86AaF/logo.png b/blockchains/smartchain/validators/assets/0xC1DA8b99674137CC4971bF974cdC5157c8B86AaF/logo.png new file mode 100644 index 0000000000000..7d15f74324a23 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xC1DA8b99674137CC4971bF974cdC5157c8B86AaF/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xCA9EbBE042f975700F13e5e0D7683918533170BE/logo.png b/blockchains/smartchain/validators/assets/0xCA9EbBE042f975700F13e5e0D7683918533170BE/logo.png new file mode 100644 index 0000000000000..433d259be5c32 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xCA9EbBE042f975700F13e5e0D7683918533170BE/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xF2B1d86DC7459887B1f7Ce8d840db1D87613Ce7f/logo.png b/blockchains/smartchain/validators/assets/0xF2B1d86DC7459887B1f7Ce8d840db1D87613Ce7f/logo.png new file mode 100644 index 0000000000000..0b958482feb03 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xF2B1d86DC7459887B1f7Ce8d840db1D87613Ce7f/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xF9D1637D1e45e454F5ed1F7729a9AB55EC121E2c/logo.png b/blockchains/smartchain/validators/assets/0xF9D1637D1e45e454F5ed1F7729a9AB55EC121E2c/logo.png new file mode 100644 index 0000000000000..dfdb5b106421b Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xF9D1637D1e45e454F5ed1F7729a9AB55EC121E2c/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xFA5E69f880c0287f5543CFe9167Db7B83bD8Dd79/logo.png b/blockchains/smartchain/validators/assets/0xFA5E69f880c0287f5543CFe9167Db7B83bD8Dd79/logo.png new file mode 100644 index 0000000000000..e2ac6ba0ef11d Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xFA5E69f880c0287f5543CFe9167Db7B83bD8Dd79/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xa31A940ecFB4Cb9fE7884eB3C9a959Db79CbdC70/logo.png b/blockchains/smartchain/validators/assets/0xa31A940ecFB4Cb9fE7884eB3C9a959Db79CbdC70/logo.png new file mode 100644 index 0000000000000..77ce1656906bd Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xa31A940ecFB4Cb9fE7884eB3C9a959Db79CbdC70/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xaACc290a1A4c89F5D7bc29913122F5982916de48/logo.png b/blockchains/smartchain/validators/assets/0xaACc290a1A4c89F5D7bc29913122F5982916de48/logo.png new file mode 100644 index 0000000000000..c5e3205b90f42 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xaACc290a1A4c89F5D7bc29913122F5982916de48/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xd34403249B2d82AAdDB14e778422c966265e5Fb5/logo.png b/blockchains/smartchain/validators/assets/0xd34403249B2d82AAdDB14e778422c966265e5Fb5/logo.png new file mode 100644 index 0000000000000..17175beec76a8 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xd34403249B2d82AAdDB14e778422c966265e5Fb5/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xd6579B6F3c036038239c51C3D2AE623bE1F23beD/logo.png b/blockchains/smartchain/validators/assets/0xd6579B6F3c036038239c51C3D2AE623bE1F23beD/logo.png new file mode 100644 index 0000000000000..a65037d5d19a0 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xd6579B6F3c036038239c51C3D2AE623bE1F23beD/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xdFeAcaffE5EAF47E442ef2ddAeAea2f21a6d3f91/logo.png b/blockchains/smartchain/validators/assets/0xdFeAcaffE5EAF47E442ef2ddAeAea2f21a6d3f91/logo.png new file mode 100644 index 0000000000000..31aa120f9a9c4 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xdFeAcaffE5EAF47E442ef2ddAeAea2f21a6d3f91/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xdcC46Bda9E79A11Ff9080F69CB1C0BCcc4737A34/logo.png b/blockchains/smartchain/validators/assets/0xdcC46Bda9E79A11Ff9080F69CB1C0BCcc4737A34/logo.png new file mode 100644 index 0000000000000..d3ae94a487e3c Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xdcC46Bda9E79A11Ff9080F69CB1C0BCcc4737A34/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xe0761D6679aE9691C98C3f07867740b08f43e510/logo.png b/blockchains/smartchain/validators/assets/0xe0761D6679aE9691C98C3f07867740b08f43e510/logo.png new file mode 100644 index 0000000000000..e1b1fab5c10e1 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xe0761D6679aE9691C98C3f07867740b08f43e510/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xe8cf6D03E42B66ae80E30eCE99374e8e0C4a90e2/logo.png b/blockchains/smartchain/validators/assets/0xe8cf6D03E42B66ae80E30eCE99374e8e0C4a90e2/logo.png new file mode 100644 index 0000000000000..a6d9faad0e347 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xe8cf6D03E42B66ae80E30eCE99374e8e0C4a90e2/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xe9E14034Dc9452c0ADb1Be7f6CAB16809036C4f7/logo.png b/blockchains/smartchain/validators/assets/0xe9E14034Dc9452c0ADb1Be7f6CAB16809036C4f7/logo.png new file mode 100644 index 0000000000000..cf629abdaf27a Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xe9E14034Dc9452c0ADb1Be7f6CAB16809036C4f7/logo.png differ diff --git a/blockchains/smartchain/validators/assets/0xeace91702B20bc6Ee62034eC7f5162D9a94bFbE4/logo.png b/blockchains/smartchain/validators/assets/0xeace91702B20bc6Ee62034eC7f5162D9a94bFbE4/logo.png new file mode 100644 index 0000000000000..30dec94b77631 Binary files /dev/null and b/blockchains/smartchain/validators/assets/0xeace91702B20bc6Ee62034eC7f5162D9a94bFbE4/logo.png differ diff --git a/blockchains/smartchain/validators/list.json b/blockchains/smartchain/validators/list.json new file mode 100644 index 0000000000000..51c1237bb5bd0 --- /dev/null +++ b/blockchains/smartchain/validators/list.json @@ -0,0 +1,272 @@ +[ + { + "id": "0x773760b0708a5Cc369c346993a0c225D8e4043B1", + "name": "Legend", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x773760b0708a5Cc369c346993a0c225D8e4043B1" + }, + { + "id": "0x343dA7Ff0446247ca47AA41e2A25c5Bbb230ED0A", + "name": "LegendII", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x343dA7Ff0446247ca47AA41e2A25c5Bbb230ED0A" + }, + { + "id": "0xF2B1d86DC7459887B1f7Ce8d840db1D87613Ce7f", + "name": "LegendIII", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xF2B1d86DC7459887B1f7Ce8d840db1D87613Ce7f" + }, + { + "id": "0xeace91702B20bc6Ee62034eC7f5162D9a94bFbE4", + "name": "Ankr", + "description": "Connect to Web3 in minutes", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xeace91702B20bc6Ee62034eC7f5162D9a94bFbE4" + }, + { + "id": "0x5CE21461E6472914F5E4D5B296C72125f26ed462", + "name": "Tranchess", + "description": "Tranchess protocol enables BNB holders to earn delegator rewards on top of protocol token (CHESS) airdrops.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x5CE21461E6472914F5E4D5B296C72125f26ed462" + }, + { + "id": "0xe0761D6679aE9691C98C3f07867740b08f43e510", + "name": "CertiK", + "description": "CertiK, as the leading blockchain security pioneer, missions to support BSC with best-in-class security technologies and deliver provable trust for all.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xe0761D6679aE9691C98C3f07867740b08f43e510" + }, + { + "id": "0xd34403249B2d82AAdDB14e778422c966265e5Fb5", + "name": "InfStones", + "description": "InfStones' easy-to-use blockchain infrastructure gives you all the power and control you need to create products that shape the future of technology.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xd34403249B2d82AAdDB14e778422c966265e5Fb5" + }, + { + "id": "0x477cB5d87144b2a6d93f72e32f5E01a459260D68", + "name": "Figment", + "description": "Figment is the complete staking solution for over 500 institutional clients, providing enterprise validators, seamless staking integrations, audited infrastructure, robust rewards data, and more.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x477cB5d87144b2a6d93f72e32f5E01a459260D68" + }, + { + "id": "0x0E3cf208F4141C41da86d52C5F2076b1aB310E8F", + "name": "Turing", + "description": "Those who can imagine anything, can create the impossible.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x0E3cf208F4141C41da86d52C5F2076b1aB310E8F" + }, + { + "id": "0xa31A940ecFB4Cb9fE7884eB3C9a959Db79CbdC70", + "name": "Avengers", + "description": "Earth's Mightiest Heroes", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xa31A940ecFB4Cb9fE7884eB3C9a959Db79CbdC70" + }, + { + "id": "0x7d0F8A6D1C8fbF929Dcf4847A31E30d14923Fa31", + "name": "NodeReal", + "description": "Advanced Infrastructure Provider for EVM blockchains.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x7d0F8A6D1C8fbF929Dcf4847A31E30d14923Fa31" + }, + { + "id": "0xCA9EbBE042f975700F13e5e0D7683918533170BE", + "name": "Namelix", + "description": "The is namelix org on BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xCA9EbBE042f975700F13e5e0D7683918533170BE" + }, + { + "id": "0x78504de17d6Dba03387C7CaE5322B9C86bF3027f", + "name": "HashKey", + "description": "HashKey Cloud, as a leading provider of global Web3 infrastructure and a core member of the HashKey Group", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x78504de17d6Dba03387C7CaE5322B9C86bF3027f" + }, + { + "id": "0xaACc290a1A4c89F5D7bc29913122F5982916de48", + "name": "The48Club", + "description": "48 Club® was founded in Sept. 2017 and is run as a decentralized autonomous organization (DAO).", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xaACc290a1A4c89F5D7bc29913122F5982916de48" + }, + { + "id": "0x5c38FF8Ca2b16099C086bF36546e99b13D152C4c", + "name": "Trust Nodes", + "description": "Trust Wallet BNB Chain Validator", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x5c38FF8Ca2b16099C086bF36546e99b13D152C4c" + }, + { + "id": "0x0C5c547215c6516603c3de9525abEf86f66D3A54", + "name": "BscScan", + "description": "Your Gateway to the Binance Smart Chain Network. BscScan is the leading BSC Block Chain Explorer and one of the earliest independent project built and developed for the Binance Smart Chain", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x0C5c547215c6516603c3de9525abEf86f66D3A54" + }, + { + "id": "0x4DC1Bf52da103452097df48505A6D01020fFB22b", + "name": "Defibit", + "description": "The is defibit org on BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x4DC1Bf52da103452097df48505A6D01020fFB22b" + }, + { + "id": "0x1AE5f5C3Cb452E042b0B7b9DC60596C9CD84BaF6", + "name": "Fuji", + "description": "The is fuji org on BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x1AE5f5C3Cb452E042b0B7b9DC60596C9CD84BaF6" + }, + { + "id": "0xe8cf6D03E42B66ae80E30eCE99374e8e0C4a90e2", + "name": "Pexmons", + "description": "The is pexmons org on BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xe8cf6D03E42B66ae80E30eCE99374e8e0C4a90e2" + }, + { + "id": "0x7B67A5Bfc93E8ad3C4C4d3fdc6a4029dD110Fa99", + "name": "Ciscox", + "description": "The is ciscox org on BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x7B67A5Bfc93E8ad3C4C4d3fdc6a4029dD110Fa99" + }, + { + "id": "0x11F3A9d13F6f11F29A7c96922C5471F356BD129F", + "name": "Seoraksan", + "description": "The is Seoraksan org on BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x11F3A9d13F6f11F29A7c96922C5471F356BD129F" + }, + { + "id": "0xA0fB25F82592F3cE965804a2f21B65783d66cF18", + "name": "Coinlix", + "description": "The is coinlix org on BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xA0fB25F82592F3cE965804a2f21B65783d66cF18" + }, + { + "id": "0xdFeAcaffE5EAF47E442ef2ddAeAea2f21a6d3f91", + "name": "Feynman", + "description": "Deploy Web3 apps that are as fast as legacy solutions.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xdFeAcaffE5EAF47E442ef2ddAeAea2f21a6d3f91" + }, + { + "id": "0xB12e8137eF499a1d81552DB11664a9E617fd350A", + "name": "MathW", + "description": "MATH is a multi-chain and cross-chain blockchain assets hub, and its products including MathWallet, MATH VPoS Pool, MathDAppStore, MathStaking, MathCustody, MathNFT, MathChain, MathHub, MathDEX, MathID, MathPay etc. MATH also operates nodes for many POS chains.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xB12e8137eF499a1d81552DB11664a9E617fd350A" + }, + { + "id": "0x2ADEdB37fC5AcF00B0f039026EF69DabdBEcE5D5", + "name": "Coda", + "description": "The all-in-one doc for teams. Give your team the tools they need to thrive.", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x2ADEdB37fC5AcF00B0f039026EF69DabdBEcE5D5" + }, + { + "id": "0xA3beF3479254a2ec123Bf4CBa34499f94D96Ee5b", + "name": "BNBEve", + "description": "", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xA3beF3479254a2ec123Bf4CBa34499f94D96Ee5b" + }, + { + "id": "0x0E89f8F61690E3115c176db4dcE8Bb0333259987", + "name": "Aoraki", + "description": "", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x0E89f8F61690E3115c176db4dcE8Bb0333259987" + }, + { + "id": "0x8683DCb7A775dF4587eEfAD7c08ee647D1da32C1", + "name": "LegendVI", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x8683DCb7A775dF4587eEfAD7c08ee647D1da32C1" + }, + { + "id": "0x31738238B6A4FCb00bA4De9ee923986b6Df55ae6", + "name": "LegendVII", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x31738238B6A4FCb00bA4De9ee923986b6Df55ae6" + }, + { + "id": "0x0813D0D092b97C157A8e68A65ccdF41b956883ae", + "name": "LegendVIII", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x0813D0D092b97C157A8e68A65ccdF41b956883ae" + }, + { + "id": "0xE5572297718e1943A92BfEde2E67A060439e8EFd", + "name": "LegendV", + "description": "Low Commission. High APR %. Reliable. Legend@DirectStaking.com", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xE5572297718e1943A92BfEde2E67A060439e8EFd" + }, + { + "id": "0xd6579B6F3c036038239c51C3D2AE623bE1F23beD", + "name": "Nexa", + "description": "Nexa is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xd6579B6F3c036038239c51C3D2AE623bE1F23beD" + }, + { + "id": "0xe9E14034Dc9452c0ADb1Be7f6CAB16809036C4f7", + "name": "NovaX", + "description": "NovaX can be your gateway to the BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xe9E14034Dc9452c0ADb1Be7f6CAB16809036C4f7" + }, + { + "id": "0xC1DA8b99674137CC4971bF974cdC5157c8B86AaF", + "name": "Axion", + "description": "Axion can be your gateway to the BSC network", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xC1DA8b99674137CC4971bF974cdC5157c8B86AaF" + }, + { + "id": "0x3bA645FB613eB9E8A44f84B230C037C9972615C3", + "name": "Zen", + "description": "Zen is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x3bA645FB613eB9E8A44f84B230C037C9972615C3" + }, + { + "id": "0xB58ac55EB6B10e4f7918D77C92aA1cF5bB2DEd5e", + "name": "Shannon", + "description": "Shannon is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xB58ac55EB6B10e4f7918D77C92aA1cF5bB2DEd5e" + }, + { + "id": "0xB7Fce9e05c681Fb92e867D9893255DCE3e8790a2", + "name": "Veri", + "description": "Veri is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xB7Fce9e05c681Fb92e867D9893255DCE3e8790a2" + }, + { + "id": "0xBb772d6e37C3dDB0f08e05c10d05419dB54C9Fd8", + "name": "Star", + "description": "Star is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xBb772d6e37C3dDB0f08e05c10d05419dB54C9Fd8" + }, + { + "id": "0xF9D1637D1e45e454F5ed1F7729a9AB55EC121E2c", + "name": "LegendIX", + "description": "LegendIX is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xF9D1637D1e45e454F5ed1F7729a9AB55EC121E2c" + }, + { + "id": "0x5Ce119c093cFe978dcfd00e09E173FB97685069E", + "name": "Sigm8", + "description": "Sigm8 is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x5Ce119c093cFe978dcfd00e09E173FB97685069E" + }, + { + "id": "0x9941BCe2601fC93478DF9f5F6Cc83F4FFC1D71d8", + "name": "Glorin", + "description": "Glorin is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x9941BCe2601fC93478DF9f5F6Cc83F4FFC1D71d8" + }, + { + "id": "0xFA5E69f880c0287f5543CFe9167Db7B83bD8Dd79", + "name": "Raptas", + "description": "Raptas is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xFA5E69f880c0287f5543CFe9167Db7B83bD8Dd79" + }, + { + "id": "0x95E105468b3a9E158df258ee385CA873cB566bF2", + "name": "Nozti", + "description": "Nozti is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x95E105468b3a9E158df258ee385CA873cB566bF2" + }, + { + "id": "0xdcC46Bda9E79A11Ff9080F69CB1C0BCcc4737A34", + "name": "Tiollo", + "description": "Tiollo is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0xdcC46Bda9E79A11Ff9080F69CB1C0BCcc4737A34" + }, + { + "id": "0x487Ad3A6E2FFAa9f393ae839005aF2f4c00d9E63", + "name": "LegendIV", + "description": "LegendIV is a validator node on BSC", + "website": "https://www.bnbchain.org/en/bnb-staking/validator/0x487Ad3A6E2FFAa9f393ae839005aF2f4c00d9E63" + } +] \ No newline at end of file diff --git a/blockchains/solana/assets/25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ/info.json b/blockchains/solana/assets/25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ/info.json new file mode 100644 index 0000000000000..419d9b6750aed --- /dev/null +++ b/blockchains/solana/assets/25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ/info.json @@ -0,0 +1,21 @@ +{ + "name": "MANEKI", + "website": "https://manekineko.world/", + "description": "Solana native cat coin $MANEKI, is a symbol of good luck, success, prosperity, wisdom and leadership.", + "explorer": "https://solscan.io/token/25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ", + "type": "SPL", + "symbol": "MANEKI", + "decimals": 5, + "status": "active", + "id": "25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/unrevealedxyz?s=21&t=0RtVzV5UpcseQByG0w-mOQ" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/maneki" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ/logo.png b/blockchains/solana/assets/25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ/logo.png new file mode 100644 index 0000000000000..98304fb8456ef Binary files /dev/null and b/blockchains/solana/assets/25hAyBQfoDhfWx9ay6rarbgvWGwDdNqcHsXS3jQ3mTDJ/logo.png differ diff --git a/blockchains/solana/assets/26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr/info.json b/blockchains/solana/assets/26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr/info.json new file mode 100644 index 0000000000000..5faa2501b5891 --- /dev/null +++ b/blockchains/solana/assets/26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr/info.json @@ -0,0 +1,21 @@ +{ + "name": "SAD HAMSTER", + "type": "SPL", + "symbol": "HAMMY", + "decimals": 6, + "website": "https://www.sadhamster.io/", + "description": "My hamster died. He was a good hamster, he wasn't bad but just a little fat. How'd he die? Manslaughter? Or was it the cat. Anyhow, I’m sad.", + "explorer": "https://solscan.io/token/26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr", + "status": "active", + "id": "26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/HammyCommunity" + }, + { + "name": "telegram", + "url": "https://t.me/HammyArmy" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr/logo.png b/blockchains/solana/assets/26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr/logo.png new file mode 100644 index 0000000000000..97f3b9e25bf31 Binary files /dev/null and b/blockchains/solana/assets/26KMQVgDUoB6rEfnJ51yAABWWJND8uMtpnQgsHQ64Udr/logo.png differ diff --git a/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/info.json b/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/info.json new file mode 100644 index 0000000000000..8f2fe46d60c40 --- /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 0000000000000..266099b84950c Binary files /dev/null and b/blockchains/solana/assets/27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4/logo.png differ diff --git a/blockchains/solana/assets/2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo/info.json b/blockchains/solana/assets/2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo/info.json new file mode 100644 index 0000000000000..5091e4e2daa3c --- /dev/null +++ b/blockchains/solana/assets/2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo/info.json @@ -0,0 +1,17 @@ +{ + "name": "UDDER", + "website": "https://udder.wtf", + "description": "Milk it for all it's worth.", + "explorer": "https://solscan.io/token/2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo", + "type": "SPL", + "symbol": "UDDER", + "decimals": 6, + "status": "active", + "id": "2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/UdderOnSol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo/logo.png b/blockchains/solana/assets/2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo/logo.png new file mode 100644 index 0000000000000..8537d2c83d235 Binary files /dev/null and b/blockchains/solana/assets/2Eb2d8QA2z1YQG7JGPxfwr7Si3HxmFTGxihDkCTyzbSo/logo.png differ diff --git a/blockchains/solana/assets/2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP/info.json b/blockchains/solana/assets/2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP/info.json new file mode 100644 index 0000000000000..cb3d1db558c78 --- /dev/null +++ b/blockchains/solana/assets/2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP/info.json @@ -0,0 +1,21 @@ +{ + "name": "mini", + "website": "https://minimini.lol/", + "description": "Mini represents a gang. The community built around this project is more than just a meme. We are a family.", + "explorer": "https://solscan.io/token/2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP", + "type": "SPL", + "symbol": "mini", + "decimals": 6, + "status": "active", + "id": "2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mini/" + }, + { + "name": "twitter", + "url": "https://twitter.com/minigangsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP/logo.png b/blockchains/solana/assets/2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP/logo.png new file mode 100644 index 0000000000000..4cf50da437f81 Binary files /dev/null and b/blockchains/solana/assets/2JcXacFwt9mVAwBQ5nZkYwCyXQkRcdsYrDXn6hj22SbP/logo.png differ diff --git a/blockchains/solana/assets/2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m/info.json b/blockchains/solana/assets/2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m/info.json new file mode 100644 index 0000000000000..ad4759ef6e7d0 --- /dev/null +++ b/blockchains/solana/assets/2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m/info.json @@ -0,0 +1,21 @@ +{ + "name": "WASSIE", + "website": "http://www.wassie.wtf/", + "description": "The ultimate memecoin of the wassie revolution.", + "explorer": "https://solscan.io/token/2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m", + "type": "SPL", + "symbol": "WASSIE", + "decimals": 8, + "status": "active", + "id": "2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/WassieOnETH" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wassie/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m/logo.png b/blockchains/solana/assets/2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m/logo.png new file mode 100644 index 0000000000000..8139b0e91aee1 Binary files /dev/null and b/blockchains/solana/assets/2erZCPbQBobsFV23Z18J8aSfrV3QJ1RB8Ge9jhKjTL9m/logo.png differ diff --git a/blockchains/solana/assets/2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb/info.json b/blockchains/solana/assets/2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb/info.json new file mode 100644 index 0000000000000..08e5aa67d7e1e --- /dev/null +++ b/blockchains/solana/assets/2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb/info.json @@ -0,0 +1,17 @@ +{ + "name": "bunkee", + "website": "https://bunkeesol.xyz", + "description": "$bunk is a meme coin with no intrinsic value or expectation of financial return.", + "explorer": "https://solscan.io/token/2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb", + "type": "SPL", + "symbol": "bunk", + "decimals": 6, + "status": "active", + "id": "2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bunkeesol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb/logo.png b/blockchains/solana/assets/2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb/logo.png new file mode 100644 index 0000000000000..83968f5f2103a Binary files /dev/null and b/blockchains/solana/assets/2nhjjqSkA8FYCUdJvQhYjbtZdPjZbNo8VtNKTkJ3hncb/logo.png differ diff --git a/blockchains/solana/assets/2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe/info.json b/blockchains/solana/assets/2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe/info.json new file mode 100644 index 0000000000000..36ebf48834e52 --- /dev/null +++ b/blockchains/solana/assets/2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe/info.json @@ -0,0 +1,21 @@ +{ + "name": "PUPS", + "type": "PLS", + "symbol": "PUPS", + "decimals": 9, + "website": "https://pups.runemine.com/", + "description": "PUPS tokens can be traded on decentralized exchanges.", + "explorer": "https://solscan.io/token/2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe", + "status": "active", + "id": "2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/PupsToken" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pups-world-peace" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe/logo.png b/blockchains/solana/assets/2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe/logo.png new file mode 100644 index 0000000000000..753534e42d319 Binary files /dev/null and b/blockchains/solana/assets/2oGLxYuNBJRcepT1mEV6KnETaLD7Bf6qq3CM6skasBfe/logo.png differ diff --git a/blockchains/solana/assets/35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7/info.json b/blockchains/solana/assets/35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7/info.json new file mode 100644 index 0000000000000..0704c2778003b --- /dev/null +++ b/blockchains/solana/assets/35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7/info.json @@ -0,0 +1,17 @@ +{ + "name": "PANTIES", + "website": "https://panties.wtf", + "description": "a conceptual art project and memecoin spearheaded by a collective of approximately 69 veteran Pepe and meme artists.", + "explorer": "https://solscan.io/token/35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7", + "type": "SPL", + "symbol": "PANTIES", + "decimals": 6, + "status": "active", + "id": "35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Panties_on_sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7/logo.png b/blockchains/solana/assets/35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7/logo.png new file mode 100644 index 0000000000000..ea2019ac54215 Binary files /dev/null and b/blockchains/solana/assets/35Y3VgNdaJ6AxBqifh8wCemR7x8PLd4xibB2C3JUZ9P7/logo.png differ diff --git a/blockchains/solana/assets/3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump/info.json b/blockchains/solana/assets/3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump/info.json new file mode 100644 index 0000000000000..c891eea72de1a --- /dev/null +++ b/blockchains/solana/assets/3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump/info.json @@ -0,0 +1,25 @@ +{ + "name": "BILLY", + "type": "SPL", + "symbol": "BILLY", + "decimals": 6, + "website": "https://www.billysolcuty.com/", + "description": "$BILLY is the cutest dog on Solana, on a mission to be worth billyons and billyons!", + "explorer": "https://solscan.io/token/3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump", + "status": "active", + "id": "3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/i/flow/login?redirect_after_login=%2Fbillycoinsolana" + }, + { + "name": "telegram", + "url": "https://t.me/billysolcuty" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/billy" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump/logo.png b/blockchains/solana/assets/3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump/logo.png new file mode 100644 index 0000000000000..2360fb28ff1e7 Binary files /dev/null and b/blockchains/solana/assets/3B5wuUrMEi5yATD7on46hKfej3pfmd7t1RKgrsN3pump/logo.png differ diff --git a/blockchains/solana/assets/3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw/info.json b/blockchains/solana/assets/3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw/info.json new file mode 100644 index 0000000000000..8e9a91b42eca1 --- /dev/null +++ b/blockchains/solana/assets/3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw/info.json @@ -0,0 +1,17 @@ +{ + "name": "TEH EPIK DUCK", + "website": "https://epikduckcoin.com", + "description": "TEH EPIK DUCK IS COMING", + "explorer": "https://solscan.io/token/3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw", + "type": "SPL", + "symbol": "EPIK", + "decimals": 6, + "status": "active", + "id": "3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/epikduckcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw/logo.png b/blockchains/solana/assets/3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw/logo.png new file mode 100644 index 0000000000000..d8edf81c32345 Binary files /dev/null and b/blockchains/solana/assets/3BgwJ8b7b9hHX4sgfZ2KJhv9496CoVfsMK2YePevsBRw/logo.png differ diff --git a/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/info.json b/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/info.json new file mode 100644 index 0000000000000..5ad03a41c759b --- /dev/null +++ b/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/info.json @@ -0,0 +1,21 @@ +{ + "name": "Iggy Azalea's Dog", + "type": "SPL", + "symbol": "SOCKS", + "decimals": 6, + "website": "https://sockssol.fun/", + "description": "Iggy Azalea's Dog meme token", + "explorer": "https://solscan.io/token/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL", + "status": "active", + "id": "3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MothersDogSocks" + }, + { + "name": "telegram", + "url": "https://t.me/socksiggydogportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/logo.png b/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/logo.png new file mode 100644 index 0000000000000..a0075ad97a457 Binary files /dev/null and b/blockchains/solana/assets/3DFU4Z2N2Uyh5KxU9xgKM2u5LsPYU7m2DVKDoPYuFvEL/logo.png differ diff --git a/blockchains/solana/assets/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc/info.json b/blockchains/solana/assets/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc/info.json new file mode 100644 index 0000000000000..27caa0d07bf1f --- /dev/null +++ b/blockchains/solana/assets/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc/info.json @@ -0,0 +1,17 @@ +{ + "name":"Cheems", + "type":"SPL", + "symbol":"CHEEMS", + "decimals": 4, + "website":"https://cheems.co/", + "description":"Cheems is the Doge's unloved brother and a communty-drive cryptocurrency on the Solana network.", + "explorer":"https://solscan.io/token/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc", + "status":"active", + "id":"3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/TheCheemsToken" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc/logo.png b/blockchains/solana/assets/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc/logo.png new file mode 100644 index 0000000000000..e888a6eed9cb3 Binary files /dev/null and b/blockchains/solana/assets/3FoUAsGDbvTD6YZ4wVKJgTB76onJUKz7GPEBNiR5b8wc/logo.png differ diff --git a/blockchains/solana/assets/3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh/info.json b/blockchains/solana/assets/3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh/info.json new file mode 100644 index 0000000000000..4d4df4195fb36 --- /dev/null +++ b/blockchains/solana/assets/3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh/info.json @@ -0,0 +1,21 @@ +{ + "name": "Scrat", + "type": "SPL", + "symbol": "SCRAT", + "decimals": 6, + "website": "https://scrat.meme/", + "description": "hi, i’m $SCRAT! Half squirrel, half rat, forever in pursuit of my runaway bag!", + "explorer": "https://solscan.io/token/3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh", + "status": "active", + "id": "3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/scratmeme" + }, + { + "name": "telegram", + "url": "https://t.me/scratmeme" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh/logo.png b/blockchains/solana/assets/3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh/logo.png new file mode 100644 index 0000000000000..eda9d1bd5a806 Binary files /dev/null and b/blockchains/solana/assets/3GEznP41VaAGv9yRdBiuYdA8zkffNc8b7DzNJgFbH4Kh/logo.png differ diff --git a/blockchains/solana/assets/3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1/info.json b/blockchains/solana/assets/3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1/info.json new file mode 100644 index 0000000000000..e5c3150601219 --- /dev/null +++ b/blockchains/solana/assets/3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1/info.json @@ -0,0 +1,17 @@ +{ + "name": "MIMANY", + "website": "https://mimany.me", + "description": "Mugs can create a custom Mimany, just for you, to your specifications.", + "explorer": "https://solscan.io/token/3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1", + "type": "SPL", + "symbol": "MIMANY", + "decimals": 6, + "status": "active", + "id": "3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MimanyMaker" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1/logo.png b/blockchains/solana/assets/3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1/logo.png new file mode 100644 index 0000000000000..885f00762fe0b Binary files /dev/null and b/blockchains/solana/assets/3Rcc6tMyS7ZEa29dxV4g3J5StorS9J1dn98gd42pZTk1/logo.png differ diff --git a/blockchains/solana/assets/3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN/info.json b/blockchains/solana/assets/3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN/info.json new file mode 100644 index 0000000000000..68b7163b747cd --- /dev/null +++ b/blockchains/solana/assets/3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN/info.json @@ -0,0 +1,17 @@ +{ + "name": "MOTHER IGGY", + "type": "SPL", + "symbol": "MOTHER", + "decimals": 6, + "website": "https://twitter.com/IGGYAZALEA", + "description": "Don’t disappoint your mother", + "explorer": "https://solscan.io/token/3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN", + "status": "active", + "id": "3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/IGGYAZALEA" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN/logo.png b/blockchains/solana/assets/3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN/logo.png new file mode 100644 index 0000000000000..3e87db702b038 Binary files /dev/null and b/blockchains/solana/assets/3S8qX1MsMqRbiwKg2cQyx7nis1oHMgaCuc9c4VfvVdPN/logo.png differ diff --git a/blockchains/solana/assets/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC/info.json b/blockchains/solana/assets/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC/info.json new file mode 100644 index 0000000000000..5608f0275f3c6 --- /dev/null +++ b/blockchains/solana/assets/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC/info.json @@ -0,0 +1,17 @@ +{ + "name":"Kitten Haimer", + "type":"SPL", + "symbol":"KHAI", + "decimals": 8, + "website":"https://kittenhaimer.ai", + "description":"Kittens are here to prevail. Blending AI memes and story telling.", + "explorer":"https://solscan.io/token/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC", + "status":"active", + "id":"3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/kittenhaimer" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC/logo.png b/blockchains/solana/assets/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC/logo.png new file mode 100644 index 0000000000000..010f91ece6355 Binary files /dev/null and b/blockchains/solana/assets/3TWgDvYBL2YPET2LxnWAwsMeoA8aL4DutNuwat2pKCjC/logo.png differ diff --git a/blockchains/solana/assets/3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6/info.json b/blockchains/solana/assets/3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6/info.json new file mode 100644 index 0000000000000..d4d127185e75c --- /dev/null +++ b/blockchains/solana/assets/3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6/info.json @@ -0,0 +1,21 @@ +{ + "name": "Biao Coin", + "type": "SPL", + "symbol": "BIAO", + "decimals": 6, + "website": "https://www.biaocoinsol.xyz/", + "description": "Biao on Solana is community-driven project powered with the most well known Meme of Asia. Now on Solana", + "explorer": "https://solscan.io/token/3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6", + "status": "active", + "id": "3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/biaocoinsol" + }, + { + "name": "telegram", + "url": "https://t.me/biaocoinsol_cn" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6/logo.png b/blockchains/solana/assets/3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6/logo.png new file mode 100644 index 0000000000000..80f07ef3b0868 Binary files /dev/null and b/blockchains/solana/assets/3W52uCb8NW8ruMF9mmJX3oKiYAjdPai4633srsZFQCS6/logo.png differ diff --git a/blockchains/solana/assets/3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U/info.json b/blockchains/solana/assets/3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U/info.json new file mode 100644 index 0000000000000..735d71ac3e5eb --- /dev/null +++ b/blockchains/solana/assets/3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U/info.json @@ -0,0 +1,21 @@ +{ + "name": "Giko Cat", + "website": "https://gikocatcoin.club/", + "description": "first cat on the internet (1998) pls go die", + "explorer": "https://solscan.io/token/3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U", + "type": "SPL", + "symbol": "GIKO", + "decimals": 9, + "status": "active", + "id": "3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U", + "links": [ + { + "name": "telegram", + "url": "https://t.me/gikocatonsol" + }, + { + "name": "twitter", + "url": "https://twitter.com/gikocoinsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U/logo.png b/blockchains/solana/assets/3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U/logo.png new file mode 100644 index 0000000000000..80e5179eeddc1 Binary files /dev/null and b/blockchains/solana/assets/3WPep4ufaToK1aS5s8BL9inzeUrt4DYaQCiic6ZkkC1U/logo.png differ diff --git a/blockchains/solana/assets/3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump/info.json b/blockchains/solana/assets/3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump/info.json new file mode 100644 index 0000000000000..940d0b55adac2 --- /dev/null +++ b/blockchains/solana/assets/3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Men of Culture", + "website": "https://menofculture.online/", + "description": "Men of Culture, we meet again! Ah, the joy of gathering among those who truly understand the art of jiggly", + "explorer": "https://solscan.io/token/3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump", + "type": "SPL", + "symbol": "CULTURE", + "decimals": 6, + "status": "active", + "id": "3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump", + "links": [ + { + "name": "telegram", + "url": "https://t.me/+ZOCd6H2MUic5MmVl" + }, + { + "name": "twitter", + "url": "https://twitter.com/SOLCultureCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump/logo.png b/blockchains/solana/assets/3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump/logo.png new file mode 100644 index 0000000000000..b5138bd39148b Binary files /dev/null and b/blockchains/solana/assets/3WXnaXnqeqF5NxyjhRosVqs4jPM8XXEVJbMmkD69pump/logo.png differ diff --git a/blockchains/solana/assets/3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP/info.json b/blockchains/solana/assets/3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP/info.json new file mode 100644 index 0000000000000..da24ac188ec90 --- /dev/null +++ b/blockchains/solana/assets/3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP/info.json @@ -0,0 +1,17 @@ +{ + "name": "Bird Dog", + "type": "SPL", + "symbol": "BIRDDOG", + "decimals": 9, + "website": "https://www.solbirddog.com/", + "description": "A community take-over based on Matt Furie's 5th Boy's Club characters - Bird Dog. A dog that flies.", + "explorer": "https://solscan.io/token/3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP", + "status": "active", + "id": "3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SOLbirddog" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP/logo.png b/blockchains/solana/assets/3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP/logo.png new file mode 100644 index 0000000000000..100475337047c Binary files /dev/null and b/blockchains/solana/assets/3XTp12PmKMHxB6YkejaGPUjMGBLKRGgzHWgJuVTsBCoP/logo.png differ diff --git a/blockchains/solana/assets/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR/info.json b/blockchains/solana/assets/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR/info.json new file mode 100644 index 0000000000000..b1b044bf482df --- /dev/null +++ b/blockchains/solana/assets/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR/info.json @@ -0,0 +1,25 @@ +{ + "name": "Only1", + "website": "https://only1.io/", + "description": "Only1 is the first NFT-powered social media built on Solana - the most scalable blockchain to date.", + "explorer": "https://solscan.io/token/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR", + "symbol": "LIKE", + "type": "SPL", + "decimals": 9, + "id": "3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR", + "status": "active", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/only1nft" + }, + { + "name": "telegram", + "url": "https://t.me/only1nft" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/only1/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR/logo.png b/blockchains/solana/assets/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR/logo.png new file mode 100644 index 0000000000000..f9dfd397420d1 Binary files /dev/null and b/blockchains/solana/assets/3bRTivrVsitbmCTGtqwp7hxXPsybkjn4XLNtPsHqa3zR/logo.png differ diff --git a/blockchains/solana/assets/3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu/info.json b/blockchains/solana/assets/3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu/info.json new file mode 100644 index 0000000000000..598b54521982b --- /dev/null +++ b/blockchains/solana/assets/3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu/info.json @@ -0,0 +1,17 @@ +{ + "name": "Cats Of Sol", + "website": "https://www.catsofsol.com/", + "description": "Explore the world where stylish cats with swag meets the wild world of Meme on solana blockchain!", + "explorer": "https://solscan.io/token/3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu", + "type": "SPL", + "symbol": "COS", + "decimals": 9, + "status": "active", + "id": "3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/catsofsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu/logo.png b/blockchains/solana/assets/3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu/logo.png new file mode 100644 index 0000000000000..9c301c337bb82 Binary files /dev/null and b/blockchains/solana/assets/3obNTknsf4hq5pNh3GDPEhyCB9WTKJJzM2PcqfKgLmBu/logo.png differ diff --git a/blockchains/solana/assets/3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o/info.json b/blockchains/solana/assets/3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o/info.json new file mode 100644 index 0000000000000..09d9e9bf6823f --- /dev/null +++ b/blockchains/solana/assets/3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o/info.json @@ -0,0 +1,21 @@ +{ + "name": " jeo boden", + "type": "SPL", + "symbol": "boden", + "decimals": 9, + "website": "https://bodenonsol.xyz/", + "description": "Joe Boden is da hartfelt leeder of Amuriku. His mishun is to bild bak betta, to unify da divided, n to counter da wild claims of Doland Tremp.", + "explorer": "https://solscan.io/token/3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o", + "status": "active", + "id": "3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/jeo-boden" + }, + { + "name": "twitter", + "url": "https://twitter.com/bodenonsolana" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o/logo.png b/blockchains/solana/assets/3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o/logo.png new file mode 100644 index 0000000000000..0bb63b3436efb Binary files /dev/null and b/blockchains/solana/assets/3psH1Mj1f7yUfaD5gh6Zj7epE8hhrMkMETgv5TshQA4o/logo.png differ diff --git a/blockchains/solana/assets/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX/info.json b/blockchains/solana/assets/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX/info.json new file mode 100644 index 0000000000000..44af2265f5898 --- /dev/null +++ b/blockchains/solana/assets/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX/info.json @@ -0,0 +1,21 @@ +{ + "name": "Moutai", + "website": "https://www.moutaicoin.co/", + "description": "$MOUTAI is no ordinary meme coin.", + "explorer": "https://solscan.io/token/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX", + "type": "SPL", + "symbol": "Moutai", + "decimals": 6, + "status": "active", + "id": "45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Moutai_Sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/moutai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX/logo.png b/blockchains/solana/assets/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX/logo.png new file mode 100644 index 0000000000000..dbb8c478af2eb Binary files /dev/null and b/blockchains/solana/assets/45EgCwcPXYagBC7KqBin4nCFgEZWN7f3Y6nACwxqMCWX/logo.png differ diff --git a/blockchains/solana/assets/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump/info.json b/blockchains/solana/assets/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump/info.json new file mode 100644 index 0000000000000..185981a163662 --- /dev/null +++ b/blockchains/solana/assets/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump/info.json @@ -0,0 +1,21 @@ +{ + "name": "DADDY TATE", + "type": "SPL", + "symbol": "DADDY", + "decimals": 6, + "website": "https://www.daddysuniversity.com/", + "description": "CALL HIM DADDY", + "explorer": "https://solscan.io/token/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump", + "status": "active", + "id": "4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/daddytatecto" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/daddy-tate/" + } + ] +} diff --git a/blockchains/solana/assets/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump/logo.png b/blockchains/solana/assets/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump/logo.png new file mode 100644 index 0000000000000..e5180b014b137 Binary files /dev/null and b/blockchains/solana/assets/4Cnk9EPnW5ixfLZatCPJjDB1PUtcRpVVgTQukm9epump/logo.png differ diff --git a/blockchains/solana/assets/4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu/info.json b/blockchains/solana/assets/4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu/info.json new file mode 100644 index 0000000000000..28ee390fcd6d2 --- /dev/null +++ b/blockchains/solana/assets/4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu/info.json @@ -0,0 +1,17 @@ +{ + "name": "SNAP", + "website": "https://cocosnaponsol.io/", + "description": "SNAP was conceptualized as a tokenized representation of the meme, COCO, created by @KeroNFTs in July 2023. Kero wanted to create a meme that is both relevant to crypto culture, but completely original.", + "explorer": "https://solscan.io/token/4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu", + "type": "SPL", + "symbol": "NAP", + "decimals": 6, + "status": "active", + "id": "4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/COCOSNAPONSOL" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu/logo.png b/blockchains/solana/assets/4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu/logo.png new file mode 100644 index 0000000000000..9c3bbbb20dd03 Binary files /dev/null and b/blockchains/solana/assets/4G86CMxGsMdLETrYnavMFKPhQzKTvDBYGMRAdVtr72nu/logo.png differ diff --git a/blockchains/solana/assets/4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq/info.json b/blockchains/solana/assets/4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq/info.json new file mode 100644 index 0000000000000..d1929dd98b521 --- /dev/null +++ b/blockchains/solana/assets/4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hachiko", + "type": "SPL", + "symbol": "HACHI", + "decimals": 5, + "website": "https://hachiko-token.com/", + "description": "Hachiko is one of the most famous & legendary dog in the world from Japan", + "explorer": "https://solscan.io/token/4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq", + "status": "active", + "id": "4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Hachikocoinsol" + }, + { + "name": "telegram", + "url": "https://t.me/hachikoportaI" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq/logo.png b/blockchains/solana/assets/4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq/logo.png new file mode 100644 index 0000000000000..a38414c6af95b Binary files /dev/null and b/blockchains/solana/assets/4amstKcbziHCqwev9esMtRGDTdjHSviiNXT7WtajgjUq/logo.png differ diff --git a/blockchains/solana/assets/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump/info.json b/blockchains/solana/assets/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump/info.json new file mode 100644 index 0000000000000..75710c541bccc --- /dev/null +++ b/blockchains/solana/assets/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Chuan Pu", + "website": "https://www.chuanpu.fun/", + "description": "Chuanpu - The Chinese Trump Bringing together the best of both worlds to make crypto great again!", + "explorer": "https://solscan.io/token/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump", + "type": "SPL", + "symbol": "CHUANPU", + "decimals": 6, + "status": "active", + "id": "4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ChuanPuSupreme" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chuan-pu" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump/logo.png b/blockchains/solana/assets/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump/logo.png new file mode 100644 index 0000000000000..0eb096def5197 Binary files /dev/null and b/blockchains/solana/assets/4gBDhgCqTtzyJocskewXARgcLoAfSxkmmoUwwfhbpump/logo.png differ diff --git a/blockchains/solana/assets/4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ/info.json b/blockchains/solana/assets/4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ/info.json new file mode 100644 index 0000000000000..7f11c71023587 --- /dev/null +++ b/blockchains/solana/assets/4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ/info.json @@ -0,0 +1,17 @@ +{ + "name": "HAMI", + "type": "SPL", + "symbol": "HAMI", + "decimals": 9, + "website": "https://hamicoin.com", + "description": "Introducing $HAMI the latest sensation in the world of meme coins on the SOLANA blockchain!", + "explorer": "https://solscan.io/token/4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ", + "id": "4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ", + "status": "active", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CATVAX_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ/logo.png b/blockchains/solana/assets/4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ/logo.png new file mode 100644 index 0000000000000..886b7709da21a Binary files /dev/null and b/blockchains/solana/assets/4sp2EUDrQf46rZun6sYAWzjrXwUpx2T3njuoKmV766RJ/logo.png differ diff --git a/blockchains/solana/assets/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6/info.json b/blockchains/solana/assets/4tJZhSdGePuMEfZQ3h5LaHjTPsw1iWTRFTojnZcwsAU6/info.json new file mode 100644 index 0000000000000..d8791cde3925c --- /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 0000000000000..92c92a10b118d 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 0000000000000..863a6b4fc8c8d --- /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 0000000000000..ac3d137524698 Binary files /dev/null and b/blockchains/solana/assets/4vMsoUT2BWatFweudnQM1xedRLfJgJ7hswhcpz4xgBTy/logo.png differ diff --git a/blockchains/solana/assets/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr/info.json b/blockchains/solana/assets/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr/info.json new file mode 100644 index 0000000000000..368c6c5e4e8e4 --- /dev/null +++ b/blockchains/solana/assets/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr/info.json @@ -0,0 +1,17 @@ +{ + "name": "GOFURS Del Sol", + "website": "https://gofursdelsol.com/", + "description": "We're a group of visionary gofurs led by Neon 'Flash Drive' Glowpaw and our elite executive team. With over +6 years of experience building in crypto,", + "explorer": "https://solscan.io/token/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr", + "type": "SPL", + "symbol": "GOFURS", + "decimals": 6, + "status": "active", + "id": "4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GOFURS404" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr/logo.png b/blockchains/solana/assets/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr/logo.png new file mode 100644 index 0000000000000..d5ef58920c86a Binary files /dev/null and b/blockchains/solana/assets/4xnxNjLkeVoJEAUFjj5xTvkdTLGYHtrdyyXThGDFhwmr/logo.png differ diff --git a/blockchains/solana/assets/4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump/info.json b/blockchains/solana/assets/4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump/info.json new file mode 100644 index 0000000000000..aca272d71801e --- /dev/null +++ b/blockchains/solana/assets/4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Balls of Fate", + "website": "https://balls-of-fate.com/", + "description": "Balls of Fate: Cryptocurrency with character. And balls", + "explorer": "https://solscan.io/token/4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump", + "type": "SPL", + "symbol": "BOF", + "decimals": 6, + "status": "active", + "id": "4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BOFCOMMUNYTI" + }, + { + "name": "telegram", + "url": "https://t.me/+DSPSmcwxe0IyZWEy" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump/logo.png b/blockchains/solana/assets/4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump/logo.png new file mode 100644 index 0000000000000..686f0189e5348 Binary files /dev/null and b/blockchains/solana/assets/4yCuUMPFvaqxK71CK6SZc3wmtC2PDpDN9mcBzUkepump/logo.png differ diff --git a/blockchains/solana/assets/527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E/info.json b/blockchains/solana/assets/527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E/info.json new file mode 100644 index 0000000000000..5b601a6e0f790 --- /dev/null +++ b/blockchains/solana/assets/527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E/info.json @@ -0,0 +1,21 @@ +{ + "name": "TEA", + "type": "SPL", + "symbol": "TEA", + "website": "https://teameme.wtf/", + "explorer": "https://solscan.io/token/527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E", + "decimals": 6, + "description": "$TEA is the premier community-driven memecoin on Solana, uniting tea lovers and the crypto communi-TEA.", + "status": "active", + "id": "527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E", + "links": [ + { + "name": "telegram", + "url": "https://t.me/tea_solmeme" + }, + { + "name": "twitter", + "url": "https://twitter.com/TeaMemeCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E/logo.png b/blockchains/solana/assets/527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E/logo.png new file mode 100644 index 0000000000000..bf33882501b3f Binary files /dev/null and b/blockchains/solana/assets/527rGhm2iBD4ogEk89MX7SA3NdpCwyBZ3fA8pKaoHg6E/logo.png differ diff --git a/blockchains/solana/assets/54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h/info.json b/blockchains/solana/assets/54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h/info.json new file mode 100644 index 0000000000000..eb5e169fa373e --- /dev/null +++ b/blockchains/solana/assets/54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h/info.json @@ -0,0 +1,17 @@ +{ + "name": "Solstream", + "website": "https://solstream.io/", + "description": "SolStream is a decentralized protocol-sdk on the Solana blockchain, designed for Web3 creators and developers.", + "explorer": "https://solscan.io/token/54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h", + "type": "SPL", + "symbol": "STREAM", + "decimals": 9, + "status": "active", + "id": "54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SolStreamCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h/logo.png b/blockchains/solana/assets/54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h/logo.png new file mode 100644 index 0000000000000..678943c2fe6f6 Binary files /dev/null and b/blockchains/solana/assets/54jVZGHyWURX5evBtZqUsJjwoKzcZJbVokDU93AUZf2h/logo.png differ diff --git a/blockchains/solana/assets/59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G/info.json b/blockchains/solana/assets/59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G/info.json new file mode 100644 index 0000000000000..2737c8157117d --- /dev/null +++ b/blockchains/solana/assets/59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sonic The Goat", + "type": "SPL", + "symbol": "GOAT", + "decimals": 6, + "website": "https://www.goatthecoin.xyz/", + "description": "Alright, so what's the deal with GOAT, you ask? Well, we’re tired of coins coming and saying they are the Greatest Memes. Let’s make it simple for you degens to understand. Why $GOAT? Because it stands for Greatest Of All Time. We’re not shy about it; we know we’re the best and now you should know it too", + "explorer": "https://solscan.io/token/59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G", + "status": "active", + "id": "59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GOATthecoin" + }, + { + "name": "telegram", + "url": "https://t.me/goatthecoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G/logo.png b/blockchains/solana/assets/59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G/logo.png new file mode 100644 index 0000000000000..f51090062e497 Binary files /dev/null and b/blockchains/solana/assets/59u8qAD2S2gEtsY5Vs7dJ95YspnHavyHEtRfzCEb9F7G/logo.png differ diff --git a/blockchains/solana/assets/5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru/info.json b/blockchains/solana/assets/5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru/info.json new file mode 100644 index 0000000000000..66f0c8801fcda --- /dev/null +++ b/blockchains/solana/assets/5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru/info.json @@ -0,0 +1,17 @@ +{ + "name":"Theory Of Gravity", + "type":"SPL", + "symbol":"THOG", + "decimals": 6, + "website":"https://www.thogonsol.com", + "description":"Theory of Gravity, the premier meme token reigning over the Solana network with unparalleled wit and charm.", + "explorer":"https://solscan.io/token/5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru", + "status":"active", + "id":"5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/THOGonSOL" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru/logo.png b/blockchains/solana/assets/5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru/logo.png new file mode 100644 index 0000000000000..a84b2578ba642 Binary files /dev/null and b/blockchains/solana/assets/5CqfXex1knfRiozwDtgFFNaiGR9TsmSUcWDNUTUGZQru/logo.png differ diff --git a/blockchains/solana/assets/5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA/info.json b/blockchains/solana/assets/5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA/info.json new file mode 100644 index 0000000000000..e13cf0399a780 --- /dev/null +++ b/blockchains/solana/assets/5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA/info.json @@ -0,0 +1,21 @@ +{ +"name": "Mumu the Bull", +"website": "https://www.mumu.ing", +"description": "Mumu is a muuvement to unite everyone in crypto. Backed by number go up technology, the bull we know and love is here to lead the charge.", +"explorer": "https://solscan.io/token/5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA", +"type": "SPL", +"symbol": "MUMU", +"decimals": 6, +"status": "active", +"id": "5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA", +"links": [ + { + "name": "twitter", + "url": "https://twitter.com/mumudabull" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/mumu-ing/" + } +] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA/logo.png b/blockchains/solana/assets/5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA/logo.png new file mode 100644 index 0000000000000..0f0e6cfe76129 Binary files /dev/null and b/blockchains/solana/assets/5LafQUrVco6o7KMz42eqVEJ9LW31StPyGjeeu5sKoMtA/logo.png differ diff --git a/blockchains/solana/assets/5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi/info.json b/blockchains/solana/assets/5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi/info.json new file mode 100644 index 0000000000000..c6da2e0f81a2c --- /dev/null +++ b/blockchains/solana/assets/5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi/info.json @@ -0,0 +1,17 @@ +{ + "name": "PESHI", + "type": "SPL", + "symbol": "PESHI", + "decimals": 6, + "website": "https://peshi.wtf/", + "description": "This is the story of a love. a conflicted love. ❤️ But it is also the story of a son, the child of this love. 📖 His name is PESHI. 🐕", + "explorer": "https://solscan.io/token/5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi", + "status": "active", + "id": "5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/peshitoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi/logo.png b/blockchains/solana/assets/5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi/logo.png new file mode 100644 index 0000000000000..02d9f572c0ecf Binary files /dev/null and b/blockchains/solana/assets/5LwseQRo8fsz4S3y7jbqqe5C7tZTz5PwhXNCHj13jLBi/logo.png differ diff --git a/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/info.json b/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/info.json new file mode 100644 index 0000000000000..49741c3e86be0 --- /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 0000000000000..9d66724aecb7c Binary files /dev/null and b/blockchains/solana/assets/5MAYDfq5yxtudAhtfyuMBuHZjgAbaS9tbEyEQYAhDS5y/logo.png differ diff --git a/blockchains/solana/assets/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN/info.json b/blockchains/solana/assets/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN/info.json new file mode 100644 index 0000000000000..823cc2078d7cd --- /dev/null +++ b/blockchains/solana/assets/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN/info.json @@ -0,0 +1,21 @@ +{ + "name": "real fast", + "website": "https://www.speedonsolana.com/", + "description": "Launched on 30 April 2024, real fast (speed) is a meme coin focused on a dog sprinting across a floor. It was subject to a community takeover on 05 May 2024, by a team that saw the massive potential in the coin. Since then, speed has been zooming across the entire Solana blockchain.", + "explorer": "https://solscan.io/token/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN", + "type": "SPL", + "symbol": "speed", + "decimals": 6, + "status": "active", + "id": "5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/real-fast/" + }, + { + "name": "twitter", + "url": "https://twitter.com/speedcto" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN/logo.png b/blockchains/solana/assets/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN/logo.png new file mode 100644 index 0000000000000..2824c81276253 Binary files /dev/null and b/blockchains/solana/assets/5Wd2ALxQfnpgQKCyH4WL9giBiiuuLuJs84CJxfQccvmN/logo.png differ diff --git a/blockchains/solana/assets/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz/info.json b/blockchains/solana/assets/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz/info.json new file mode 100644 index 0000000000000..21b29e6fa2caa --- /dev/null +++ b/blockchains/solana/assets/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz/info.json @@ -0,0 +1,21 @@ +{ + "name": "Baby", + "website": "https://baby-sol.com", + "description": "BABY is the final MEME, the mother and father of all BABY tokens join the original join the movement", + "explorer": "https://solscan.io/token/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz", + "type": "SPL", + "symbol": "BABY", + "decimals": 6, + "status": "active", + "id": "5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Baby_token_sol" + }, + { + "name": "telegram", + "url": "https://t.me/baby_token_sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz/logo.png b/blockchains/solana/assets/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz/logo.png new file mode 100644 index 0000000000000..b9d430bdd84bf Binary files /dev/null and b/blockchains/solana/assets/5hmf8Jt9puwoqiFQTb3vr22732ZTKYRLRw9Vo7tN3rcz/logo.png differ diff --git a/blockchains/solana/assets/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp/info.json b/blockchains/solana/assets/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp/info.json new file mode 100644 index 0000000000000..95683b364ca80 --- /dev/null +++ b/blockchains/solana/assets/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp/info.json @@ -0,0 +1,21 @@ +{ + "name": "michi", + "website": "https://michisolana.org", + "description": "michi memes", + "explorer": "https://solscan.io/token/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp", + "type": "SPL", + "symbol": "michi", + "decimals": 6, + "status": "active", + "id": "5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/michionsolana" + }, + { + "name": "telegram", + "url": "https://t.me/michiportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp/logo.png b/blockchains/solana/assets/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp/logo.png new file mode 100644 index 0000000000000..fafcb987183ad Binary files /dev/null and b/blockchains/solana/assets/5mbK36SZ7J19An8jFochhQS4of8g6BwUjbeCSxBSoWdp/logo.png differ diff --git a/blockchains/solana/assets/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm/info.json b/blockchains/solana/assets/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm/info.json new file mode 100644 index 0000000000000..01ef6128119a5 --- /dev/null +++ b/blockchains/solana/assets/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm/info.json @@ -0,0 +1,21 @@ +{ + "name": "Infinity", + "website": "https://sanctum.so", + "description": "Infinity is a multi-LST liquidity pool (LP). Most LPs only have two assets (e.g. USDC-SOL). Some LPs, like a Curve stableswap pool, support three or four assets", + "explorer": "https://solscan.io/token/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm", + "type": "SPL", + "symbol": "INF", + "decimals": 9, + "status": "active", + "id": "5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/sanctumso" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/infinity" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm/logo.png b/blockchains/solana/assets/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm/logo.png new file mode 100644 index 0000000000000..d290a632dd2a9 Binary files /dev/null and b/blockchains/solana/assets/5oVNBeEEQvYi1cX3ir8Dx5n1P7pdxydbGF2X4TxVusJm/logo.png differ diff --git a/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/info.json b/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/info.json new file mode 100644 index 0000000000000..aa2302ce2dd96 --- /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 0000000000000..a448f9dc289ce Binary files /dev/null and b/blockchains/solana/assets/5ritAPtFPqQtEFHcHVqNjR5oFNUJqcmgKtZyPd2AyLLy/logo.png differ diff --git a/blockchains/solana/assets/5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat/info.json b/blockchains/solana/assets/5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat/info.json new file mode 100644 index 0000000000000..713acfc05720d --- /dev/null +++ b/blockchains/solana/assets/5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat/info.json @@ -0,0 +1,21 @@ +{ + "name": "Egypt Cat", + "website": "https://egyptcat.io/", + "description": "Betrayed, he was confined in a sarcophagus for thousands of years. But now Sphynx has awakened", + "explorer": "https://solscan.io/token/5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat", + "type": "SPL", + "symbol": "Sphynx", + "decimals": 9, + "status": "active", + "id": "5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/egyptcatsolana" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/egypt-cat" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat/logo.png b/blockchains/solana/assets/5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat/logo.png new file mode 100644 index 0000000000000..2c2455f6a1399 Binary files /dev/null and b/blockchains/solana/assets/5t4EVfkb5QU8NZXmTzcSK2bQsNWUr2HL64rRb8i6wpat/logo.png differ diff --git a/blockchains/solana/assets/5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91/info.json b/blockchains/solana/assets/5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91/info.json new file mode 100644 index 0000000000000..f2d8b0d8cec0f --- /dev/null +++ b/blockchains/solana/assets/5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91/info.json @@ -0,0 +1,17 @@ +{ + "name":"Tongue Cat", + "type":"SPL", + "symbol":"LUIS", + "decimals": 6, + "website":"https://www.tonguecatluis.xyz", + "description":"Tongue Cat $LUIS is nothing but a cute kitten in a skin care session with his tongue out in Solana Blockchain.", + "explorer":"https://solscan.io/token/5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91", + "status":"active", + "id":"5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/TongueCatLuis2" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91/logo.png b/blockchains/solana/assets/5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91/logo.png new file mode 100644 index 0000000000000..41b0e8173a484 Binary files /dev/null and b/blockchains/solana/assets/5wU4tUcAbds7d5cmnGK2otHa9gbayYsD2mhz1reR6c91/logo.png differ diff --git a/blockchains/solana/assets/5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC/info.json b/blockchains/solana/assets/5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC/info.json new file mode 100644 index 0000000000000..a73d81ea3ab16 --- /dev/null +++ b/blockchains/solana/assets/5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC/info.json @@ -0,0 +1,21 @@ +{ + "name": "PONKE", + "website": "https://www.ponke.xyz/", + "description": "PONKE is a degenerate gambler with anger issues on the Solana network.", + "explorer": "https://solscan.io/token/5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC", + "type": "SPL", + "symbol": "PONKE", + "decimals": 9, + "status": "active", + "id": "5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/PONKESOL" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ponke/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC/logo.png b/blockchains/solana/assets/5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC/logo.png new file mode 100644 index 0000000000000..fab59275a6839 Binary files /dev/null and b/blockchains/solana/assets/5z3EqYQo9HiCEs3R84RCDMu2n7anpDMxRhdK8PSWmrRC/logo.png differ diff --git a/blockchains/solana/assets/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9/info.json b/blockchains/solana/assets/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9/info.json new file mode 100644 index 0000000000000..4864bc5989ce4 --- /dev/null +++ b/blockchains/solana/assets/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9/info.json @@ -0,0 +1,21 @@ +{ + "name": "GIGACHAD", + "website": "https://gigachadmeme.org/", + "description": "$GIGA is a Solana token deployed by Giga Chad himself", + "explorer": "https://solscan.io/token/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9", + "type": "SPL", + "symbol": "GIGA", + "decimals": 5, + "status": "active", + "id": "63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GIGACHAD_meme" + }, + { + "name": "telegram", + "url": "https://t.me/GigaChadSol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9/logo.png b/blockchains/solana/assets/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9/logo.png new file mode 100644 index 0000000000000..3fe57f132513e Binary files /dev/null and b/blockchains/solana/assets/63LfDmNb3MQ8mw9MtZ2To9bEA2M71kZUUGq5tiJxcqj9/logo.png differ diff --git a/blockchains/solana/assets/69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk/info.json b/blockchains/solana/assets/69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk/info.json new file mode 100644 index 0000000000000..8ff3027ab0f13 --- /dev/null +++ b/blockchains/solana/assets/69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk/info.json @@ -0,0 +1,17 @@ +{ + "name": "JizzLord", + "website": "https://jizzlordcoin.com/", + "description": "Wherever you may be, I am the lord of the jizz; join me. The memecoin splashing out across your screen!", + "explorer": "https://solscan.io/token/69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk", + "type": "SPL", + "symbol": "JIZZLORD", + "decimals": 6, + "status": "active", + "id": "69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/jizzlordcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk/logo.png b/blockchains/solana/assets/69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk/logo.png new file mode 100644 index 0000000000000..6d517db44fa37 Binary files /dev/null and b/blockchains/solana/assets/69SEPKGCzFzJLoSawb3xPfcqnZdiVm21Xu28AWZB5pzk/logo.png differ diff --git a/blockchains/solana/assets/69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs/info.json b/blockchains/solana/assets/69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs/info.json new file mode 100644 index 0000000000000..dac28a53b03c9 --- /dev/null +++ b/blockchains/solana/assets/69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs/info.json @@ -0,0 +1,21 @@ +{ + "name": "American Coin", + "type": "SPL", + "symbol": "USA", + "decimals": 6, + "website": "https://www.americancoin.xyz/", + "description": "$USA is the greatest empire in the history of humanity brought on-chain by a strong community of god-fearing patriots. We will not stop until all other memes have been liberated", + "explorer": "https://solscan.io/token/69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs", + "status": "active", + "id": "69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/USA_ON_CHAIN" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/american-coin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs/logo.png b/blockchains/solana/assets/69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs/logo.png new file mode 100644 index 0000000000000..7f2a573b16db0 Binary files /dev/null and b/blockchains/solana/assets/69kdRLyP5DTRkpHraaSZAQbWmAwzF9guKjZfzMXzcbAs/logo.png differ diff --git a/blockchains/solana/assets/6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui/info.json b/blockchains/solana/assets/6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui/info.json new file mode 100644 index 0000000000000..9fc6aa194f800 --- /dev/null +++ b/blockchains/solana/assets/6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shark Cat", + "website": "https://sharkcatsol.xyz/", + "description": "meme coin", + "explorer": "https://solscan.io/token/6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui", + "type": "SPL", + "symbol": "SC", + "decimals": 6, + "status": "active", + "id": "6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SharkCatSolana" + }, + { + "name": "telegram", + "url": "https://t.me/sharkcatonsolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui/logo.png b/blockchains/solana/assets/6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui/logo.png new file mode 100644 index 0000000000000..d77bbfba44b79 Binary files /dev/null and b/blockchains/solana/assets/6D7NaB2xsLd7cauWu1wKk6KBsJohJmP2qZH9GEfVi5Ui/logo.png differ diff --git a/blockchains/solana/assets/6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump/info.json b/blockchains/solana/assets/6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump/info.json new file mode 100644 index 0000000000000..fa71ce3f85ff1 --- /dev/null +++ b/blockchains/solana/assets/6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump/info.json @@ -0,0 +1,17 @@ +{ + "name": "Jason Derulo", + "type": "SPL", + "symbol": "JASON", + "decimals": 6, + "website": "https://jasonderulosol.com/", + "description": "The Official Jason Derulo Memecoin", + "explorer": "https://solscan.io/token/6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump", + "status": "active", + "id": "6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/jasonderulo" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump/logo.png b/blockchains/solana/assets/6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump/logo.png new file mode 100644 index 0000000000000..aaa061d17d52e Binary files /dev/null and b/blockchains/solana/assets/6SUryVEuDz5hqAxab6QrGfbzWvjN8dC7m29ezSvDpump/logo.png differ diff --git a/blockchains/solana/assets/6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e/info.json b/blockchains/solana/assets/6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e/info.json new file mode 100644 index 0000000000000..0bc51b3d62cba --- /dev/null +++ b/blockchains/solana/assets/6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e/info.json @@ -0,0 +1,21 @@ +{ + "name": "Chintai", + "website": "https://chintai.io", + "description": "The CHEX token is the utility token of the Chintai Network. Its primary use is for resource handling on the network and for helping to increase liquidity on the platform through a variety of incentive methods.", + "explorer": "https://solscan.io/token/6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e", + "type": "SPL", + "symbol": "CHEX", + "decimals": 8, + "status": "active", + "id": "6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ChintaiNexus" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/chex-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e/logo.png b/blockchains/solana/assets/6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e/logo.png new file mode 100644 index 0000000000000..ec929b31c9e88 Binary files /dev/null and b/blockchains/solana/assets/6dKCoWjpj5MFU5gWDEFdpUUeBasBLK3wLEwhUzQPAa1e/logo.png differ diff --git a/blockchains/solana/assets/6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA/info.json b/blockchains/solana/assets/6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA/info.json new file mode 100644 index 0000000000000..9cf39957d8b07 --- /dev/null +++ b/blockchains/solana/assets/6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA/info.json @@ -0,0 +1,40 @@ +{ + "name": "Basket", + "type": "SPL", + "symbol": "BSKT", + "decimals": 5, + "website": "https://www.bskt.fi/", + "description": "BSKT tracks the top assets across the crypto ecosystem, eliminating the need to track and analyse individual coins", + "explorer": "https://solscan.io/token/6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA", + "status": "active", + "id": "6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bsktfi" + }, + { + "name": "github", + "url": "https://github.com/bsktfi" + }, + { + "name": "telegram", + "url": "https://t.me/BSKT_FI" + }, + { + "name": "discord", + "url": "https://discord.com/bskt" + }, + { + "name": "whitepaper", + "url": "https://www.bskt.fi/bskt-whitepaper.pdf" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/basket" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA/logo.png b/blockchains/solana/assets/6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA/logo.png new file mode 100644 index 0000000000000..87def3f44c00b Binary files /dev/null and b/blockchains/solana/assets/6gnCPhXtLnUD76HjQuSYPENLSZdG8RvDB1pTLM5aLSJA/logo.png differ diff --git a/blockchains/solana/assets/6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89/info.json b/blockchains/solana/assets/6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89/info.json new file mode 100644 index 0000000000000..bbf1044c50e5e --- /dev/null +++ b/blockchains/solana/assets/6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89/info.json @@ -0,0 +1,17 @@ +{ + "name": "The Simpsons", + "website": "https://thesimpsonsdonuts.com", + "description": "Here in the blockchain-enabled Springfield, $DONUTS tokens and NFTs coexist, offering both utility and collectability in a world where crypto and cartoons collide.", + "explorer": "https://solscan.io/token/6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89", + "type": "SPL", + "symbol": "DONUTS", + "decimals": 9, + "status": "active", + "id": "6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GatsbyInuERC" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89/logo.png b/blockchains/solana/assets/6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89/logo.png new file mode 100644 index 0000000000000..24b906797ea23 Binary files /dev/null and b/blockchains/solana/assets/6kSFM8teu4k9yvLGS1QtpPG33Z7xEmJ8iaRv6dEijc89/logo.png differ diff --git a/blockchains/solana/assets/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS/info.json b/blockchains/solana/assets/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS/info.json new file mode 100644 index 0000000000000..4b63eedb8710e --- /dev/null +++ b/blockchains/solana/assets/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS/info.json @@ -0,0 +1,17 @@ +{ + "name": "Ansem's Cat", + "website": "https://hobbescat.com", + "description": "Hi I'm Ansems Cat Hobbes. Ready to take over Solana and become the #1 Cat Coin. Will you join us?", + "explorer": "https://solscan.io/token/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS", + "type": "SPL", + "symbol": "Hobbes", + "decimals": 6, + "status": "active", + "id": "6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/HobbesOnSolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS/logo.png b/blockchains/solana/assets/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS/logo.png new file mode 100644 index 0000000000000..10d42af017b3e Binary files /dev/null and b/blockchains/solana/assets/6n7Janary9fqzxKaJVrhL9TG2F61VbAtwUMu1YZscaQS/logo.png differ diff --git a/blockchains/solana/assets/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx/info.json b/blockchains/solana/assets/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx/info.json new file mode 100644 index 0000000000000..0b9bfc688a005 --- /dev/null +++ b/blockchains/solana/assets/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx/info.json @@ -0,0 +1,21 @@ +{ + "name": "RETARDIO", + "type": "SPL", + "symbol": "RETARDIO", + "decimals": 6, + "website": "https://www.retardio.xyz/", + "description": "Retardio pulsates as the vibrant heartbeat of an untamed, liberated enclave thriving within the memes of Solana.", + "explorer": "https://solscan.io/token/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx", + "status": "active", + "id": "6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/retardiosolana" + }, + { + "name": "telegram", + "url": "https://t.me/retardiosol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx/logo.png b/blockchains/solana/assets/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx/logo.png new file mode 100644 index 0000000000000..c8820c4aed372 Binary files /dev/null and b/blockchains/solana/assets/6ogzHhzdrQr9Pgv6hZ2MNze7UrzBMAFyBBWUYp1Fhitx/logo.png differ diff --git a/blockchains/solana/assets/76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2/info.json b/blockchains/solana/assets/76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2/info.json new file mode 100644 index 0000000000000..bd4478bed8461 --- /dev/null +++ b/blockchains/solana/assets/76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Gaimin Token (Wormhole)", + "type": "SPL", + "symbol": "GMRX", + "decimals": 8, + "website": "https://www.gaimin.io/", + "description": "The GMRX token is a utility token for exclusive use on the GAIMIN PC gaming platform, to enhance your gaming experience, have more fun in our Metaverse, create and own your own gaming NFTs and in-game assets, and more.", + "explorer": "https://solscan.io/token/76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2", + "status": "active", + "id": "76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GaiminIo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gaimin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2/logo.png b/blockchains/solana/assets/76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2/logo.png new file mode 100644 index 0000000000000..6546dcaca0354 Binary files /dev/null and b/blockchains/solana/assets/76VxJbMFoCXBcn2rqPQX2UsUfpupq2gVwGSq5LyYMhr2/logo.png differ diff --git a/blockchains/solana/assets/7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3/info.json b/blockchains/solana/assets/7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3/info.json new file mode 100644 index 0000000000000..514c4c1a6accf --- /dev/null +++ b/blockchains/solana/assets/7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3/info.json @@ -0,0 +1,24 @@ +{ + "name": "SLERF", + "type": "SPL", + "symbol": "SLERF", + "decimals": 9, + "website": "https://slerf.wtf/", + "description": "SLERF RAID GENERATOR", + "explorer": "https://solscan.io/token/7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3", + "status": "active", + "id": "7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/slerfsol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/slerf/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3/logo.png b/blockchains/solana/assets/7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3/logo.png new file mode 100644 index 0000000000000..47b754cb4a80d Binary files /dev/null and b/blockchains/solana/assets/7BgBvyjrZX1YKz4oh9mjb8ZScatkkwb8DzFx7LoiVkM3/logo.png differ diff --git a/blockchains/solana/assets/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr/info.json b/blockchains/solana/assets/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr/info.json new file mode 100644 index 0000000000000..aaec5340ce732 --- /dev/null +++ b/blockchains/solana/assets/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr/info.json @@ -0,0 +1,21 @@ +{ + "name": "POPCAT", + "website": "https://www.popcatsolana.xyz/", + "description": "Popcat is an Internet meme originating in October 2020, in a series of videos which showcase two images of a domestic short-haired cat named 'Oatmeal'", + "explorer": "https://solscan.io/token/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr", + "type": "SPL", + "symbol": "POPCAT", + "decimals": 9, + "status": "active", + "id": "7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/popcatsolana" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/popcat" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr/logo.png b/blockchains/solana/assets/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr/logo.png new file mode 100644 index 0000000000000..6db807e63d23c Binary files /dev/null and b/blockchains/solana/assets/7GCihgDB8fe6KNjn2MYtkzZcRjQy3t9GHdC8uHYmW2hr/logo.png differ diff --git a/blockchains/solana/assets/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG/info.json b/blockchains/solana/assets/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG/info.json new file mode 100644 index 0000000000000..35ff4e1d00aeb --- /dev/null +++ b/blockchains/solana/assets/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG/info.json @@ -0,0 +1,21 @@ +{ + "name": "Secrot Servoce", + "website": "https://secrotservoce.xyz", + "description": "Secrot Servoce is a dynamic meme coin operating within the Solana blockchain, embodying the essence of the PolitiFi narrative", + "explorer": "https://solscan.io/token/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG", + "type": "SPL", + "symbol": "SECROT", + "decimals": 6, + "status": "active", + "id": "7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/secrotonsol" + }, + { + "name": "telegram", + "url": "https://t.me/secrot_servoce" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG/logo.png b/blockchains/solana/assets/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG/logo.png new file mode 100644 index 0000000000000..4193ae2bf7b41 Binary files /dev/null and b/blockchains/solana/assets/7VQzGuk2xbWteJ2A5yzGkuDmCQLQGAsvD9MjmW8VutTG/logo.png differ diff --git a/blockchains/solana/assets/7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N/info.json b/blockchains/solana/assets/7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N/info.json new file mode 100644 index 0000000000000..01df805b1e6ca --- /dev/null +++ b/blockchains/solana/assets/7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N/info.json @@ -0,0 +1,21 @@ +{ + "name": "Dawkoins", + "website": "https://www.dawkoins.online/", + "description": "Richard Dawkins is the father of MEMES and BOME dev asked for a coin in honor to him.", + "explorer": "https://solscan.io/token/7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N", + "type": "SPL", + "symbol": "DAW", + "decimals": 6, + "status": "active", + "id": "7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DawkoinsOnSol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dawkoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N/logo.png b/blockchains/solana/assets/7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N/logo.png new file mode 100644 index 0000000000000..b2a1d4a5b4ec1 Binary files /dev/null and b/blockchains/solana/assets/7cb67ev3jvBKaAH1tnVM8FL8WfQ96sa2TYByEXajqx8N/logo.png differ diff --git a/blockchains/solana/assets/7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo/info.json b/blockchains/solana/assets/7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo/info.json new file mode 100644 index 0000000000000..2ab3ae099da5c --- /dev/null +++ b/blockchains/solana/assets/7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo/info.json @@ -0,0 +1,21 @@ +{ + "name": "SCOTT WU", + "website": "https://devincoin.xyz/", + "description": "The $DEVIN Community shares the appreciation of progress between the AI and WEB3 ecosystem.", + "explorer": "https://solscan.io/token/7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo", + "type": "SPL", + "symbol": "DEVIN", + "decimals": 6, + "status": "active", + "id": "7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DEVINTOTHEMOON" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/devin-on-solana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo/logo.png b/blockchains/solana/assets/7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo/logo.png new file mode 100644 index 0000000000000..bcc3f2a11b445 Binary files /dev/null and b/blockchains/solana/assets/7gbEP2TAy5wM3TmMp5utCrRvdJ3FFqYjgN5KDpXiWPmo/logo.png differ diff --git a/blockchains/solana/assets/7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3/info.json b/blockchains/solana/assets/7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3/info.json new file mode 100644 index 0000000000000..824c5e4a2ba42 --- /dev/null +++ b/blockchains/solana/assets/7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3/info.json @@ -0,0 +1,40 @@ +{ + "name": "Catcoin", + "type": "SPL", + "symbol": "CAT", + "decimals": 3, + "website": "https://catcoin.com", + "description": "Catcoin is a cat theme token that focuses on community decentralization and adoption. $CAT is designed to make memeCoins great again", + "explorer": "https://solscan.io/token/7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3", + "status": "active", + "id": "7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/catcoin" + }, + { + "name": "telegram", + "url": "https://t.me/catcoincash" + }, + { + "name": "facebook", + "url": "https://facebook.com/catcoincash" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/catcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/catcoin/" + }, + { + "name": "telegram_news", + "url": "https://t.me/catcoinalert" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/solana/assets/7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3/logo.png b/blockchains/solana/assets/7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3/logo.png new file mode 100644 index 0000000000000..0ff8ebaa9bb2f Binary files /dev/null and b/blockchains/solana/assets/7hWcHohzwtLddDUG81H2PkWq6KEkMtSDNkYXsso18Fy3/logo.png differ diff --git a/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/info.json b/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/info.json new file mode 100644 index 0000000000000..6d60c5d4b02e2 --- /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 0000000000000..d175aab19c3d9 Binary files /dev/null and b/blockchains/solana/assets/7iT1GRYYhEop2nV1dyCwK2MGyLmPHq47WhPGSwiqcUg5/logo.png differ diff --git a/blockchains/solana/assets/7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr/info.json b/blockchains/solana/assets/7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr/info.json new file mode 100644 index 0000000000000..89e8806d64079 --- /dev/null +++ b/blockchains/solana/assets/7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr/info.json @@ -0,0 +1,21 @@ +{ +"name": "Family", +"type": "SPL", +"symbol": "FAM", +"decimals": 9, +"website": "https://www.thefamilytoken.com", +"description": "Welcome to $FAM, where every member is family and every post brings us closer to our 1 billion market cap dream.", +"explorer": "https://solscan.io/token/7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr", +"status": "active", +"id": "7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr", +"links": [ + { + "name": "twitter", + "url": "https://twitter.com/familytokenoffl" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/family-token/" + } +] +} \ No newline at end of file diff --git a/blockchains/solana/assets/7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr/logo.png b/blockchains/solana/assets/7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr/logo.png new file mode 100644 index 0000000000000..0a5e07be2c831 Binary files /dev/null and b/blockchains/solana/assets/7njsg9BA1xvXX9DNpe5fERHK4zb7MbCHKZ6zsx5k3adr/logo.png differ diff --git a/blockchains/solana/assets/85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ/info.json b/blockchains/solana/assets/85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ/info.json new file mode 100644 index 0000000000000..ff92d4489c380 --- /dev/null +++ b/blockchains/solana/assets/85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wormhole", + "website": "https://wormhole.com", + "description": "Wormhole is the leading interoperability platform that powers multichain applications and bridges at scale.", + "explorer": "https://solscan.io/token/85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ", + "type": "SPL", + "symbol": "W", + "decimals": 6, + "status": "active", + "id": "85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/wormhole" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wormhole/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ/logo.png b/blockchains/solana/assets/85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ/logo.png new file mode 100644 index 0000000000000..fb4aa381cad34 Binary files /dev/null and b/blockchains/solana/assets/85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ/logo.png differ diff --git a/blockchains/solana/assets/864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46/info.json b/blockchains/solana/assets/864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46/info.json new file mode 100644 index 0000000000000..b83587cfccc49 --- /dev/null +++ b/blockchains/solana/assets/864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46/info.json @@ -0,0 +1,21 @@ +{ + "name": "HABIBICAT", + "website": "https://habibi.xyz/", + "description": "Popular luxury memecoin on Sol, crafted for Sheikhs and Elite investors.", + "explorer": "https://solscan.io/token/864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46", + "type": "SPL", + "symbol": "HABIBI", + "decimals": 6, + "status": "active", + "id": "864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/habibi-cat/" + }, + { + "name": "twitter", + "url": "https://twitter.com/habibixyz_sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46/logo.png b/blockchains/solana/assets/864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46/logo.png new file mode 100644 index 0000000000000..c5d5b677c83b7 Binary files /dev/null and b/blockchains/solana/assets/864YJRb3JAVARC4FNuDtPKFxdEsYRbB39Nwxkzudxy46/logo.png differ diff --git a/blockchains/solana/assets/8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf/info.json b/blockchains/solana/assets/8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf/info.json new file mode 100644 index 0000000000000..f76ffe4760eb5 --- /dev/null +++ b/blockchains/solana/assets/8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf/info.json @@ -0,0 +1,17 @@ +{ + "name": "POWSCHE", + "website": "https://powsche.com", + "description": "$POWSCHE - Need money for Porsche? POWSCHE is the vehicle to da lyfe you always dream about.", + "explorer": "https://solscan.io/token/8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf", + "type": "SPL", + "symbol": "POWSCHE", + "decimals": 9, + "status": "active", + "id": "8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/powscheonsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf/logo.png b/blockchains/solana/assets/8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf/logo.png new file mode 100644 index 0000000000000..7c970e26005c3 Binary files /dev/null and b/blockchains/solana/assets/8CkiSHHJDHJV4LUoiRMLUhqG58cUkbyJRtcP4Z3mCXNf/logo.png differ diff --git a/blockchains/solana/assets/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5/info.json b/blockchains/solana/assets/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5/info.json new file mode 100644 index 0000000000000..bde7bf2137b66 --- /dev/null +++ b/blockchains/solana/assets/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5/info.json @@ -0,0 +1,21 @@ +{ + "name": "LOCK IN", + "website": "https://lockin.wtf/", + "description": "LOCKIN is a Memecoin based around the viral phrase of Locked In.", + "explorer": "https://solscan.io/token/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5", + "type": "SPL", + "symbol": "LOCKIN", + "decimals": 9, + "status": "active", + "id": "8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/LockinONCHAIN" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/lock-in" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5/logo.png b/blockchains/solana/assets/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5/logo.png new file mode 100644 index 0000000000000..4f77cb574df63 Binary files /dev/null and b/blockchains/solana/assets/8Ki8DpuWNxu9VsS3kQbarsCWMcFGWkzzA8pUPto9zBd5/logo.png differ diff --git a/blockchains/solana/assets/8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e/info.json b/blockchains/solana/assets/8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e/info.json new file mode 100644 index 0000000000000..6af81cf39ac6c --- /dev/null +++ b/blockchains/solana/assets/8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e/info.json @@ -0,0 +1,17 @@ +{ + "name":"bul", + "type":"SPL", + "symbol":"bul", + "decimals": 7, + "website":"https://www.bul.homes/", + "description":"Meet $BUL, the latest craze in the meme coin space! With its bold bull logo symbolizing strength and potential, Bul is more than a digital currency—it's a movement", + "explorer":"https://solscan.io/token/8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e", + "status":"active", + "id":"8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/bulSolCommunity" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e/logo.png b/blockchains/solana/assets/8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e/logo.png new file mode 100644 index 0000000000000..6e72d490276f2 Binary files /dev/null and b/blockchains/solana/assets/8RGy4BZUEkW9dc2UEZ3QHYYdas66X63vazdZJezGJw5e/logo.png differ diff --git a/blockchains/solana/assets/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR/info.json b/blockchains/solana/assets/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR/info.json new file mode 100644 index 0000000000000..1edf4718d265d --- /dev/null +++ b/blockchains/solana/assets/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR/info.json @@ -0,0 +1,21 @@ +{ + "name": "Wolf Of Solana", + "website": "https://wolfofsolana.io", + "description": "'The Wolf of Solana' I want you to solve your problems by becoming reach on Solana 'Your beloved trader with social problems.'", + "explorer": "https://solscan.io/token/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR", + "type": "SPL", + "symbol": "WOS", + "decimals": 6, + "status": "active", + "id": "8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Wolf_Of_Solana" + }, + { + "name": "telegram", + "url": "https://t.me/wolf_of_solana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR/logo.png b/blockchains/solana/assets/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR/logo.png new file mode 100644 index 0000000000000..9f13d2139aee9 Binary files /dev/null and b/blockchains/solana/assets/8TfYk26pFxnaCmZbjoSMCzktDU16H5CgZ1Z9eTnB12MR/logo.png differ diff --git a/blockchains/solana/assets/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk/info.json b/blockchains/solana/assets/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk/info.json new file mode 100644 index 0000000000000..dd565ef525b78 --- /dev/null +++ b/blockchains/solana/assets/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk/info.json @@ -0,0 +1,21 @@ +{ + "name": "GAME OF MEMES", + "website": "https://gome.lol/", + "description": "MEMES WITH GUNS", + "explorer": "https://solscan.io/token/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk", + "type": "SPL", + "symbol": "GOME", + "decimals": 6, + "status": "active", + "id": "8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/gomeonsol_" + }, + { + "name": "telegram", + "url": "https://t.me/gomeonsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk/logo.png b/blockchains/solana/assets/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk/logo.png new file mode 100644 index 0000000000000..ff6f5783f7592 Binary files /dev/null and b/blockchains/solana/assets/8ULCkCTUa3XXrNXaDVzPcja2tdJtRdxRr8T4eZjVKqk/logo.png differ diff --git a/blockchains/solana/assets/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb/info.json b/blockchains/solana/assets/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb/info.json new file mode 100644 index 0000000000000..f99e52df81ad4 --- /dev/null +++ b/blockchains/solana/assets/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb/info.json @@ -0,0 +1,21 @@ +{ + "name": "WAFFLES", + "website": "https://wafflesonsolana.xyz/", + "description": "Waffles is too busy trading her kribble for $Waffles", + "explorer": "https://solscan.io/token/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb", + "type": "SPL", + "symbol": "WAFFLES", + "decimals": 6, + "status": "active", + "id": "8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/waffles-davincij15s-cat/" + }, + { + "name": "twitter", + "url": "https://twitter.com/Wafflesj15" + } + ] +} diff --git a/blockchains/solana/assets/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb/logo.png b/blockchains/solana/assets/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb/logo.png new file mode 100644 index 0000000000000..f8d2a7f71a537 Binary files /dev/null and b/blockchains/solana/assets/8doS8nzmgVZEaACxALkbK5fZtw4UuoRp4Yt8NEaXfDMb/logo.png differ diff --git a/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/info.json b/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/info.json new file mode 100644 index 0000000000000..6daaa2bac4941 --- /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 0000000000000..4c457735157af Binary files /dev/null and b/blockchains/solana/assets/8wXtPeU6557ETkp9WHFY1n1EcU6NxDvbAggHGsMYiHsB/logo.png differ diff --git a/blockchains/solana/assets/8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G/info.json b/blockchains/solana/assets/8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G/info.json new file mode 100644 index 0000000000000..490a3ed789043 --- /dev/null +++ b/blockchains/solana/assets/8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G/info.json @@ -0,0 +1,21 @@ +{ + "name": "KITTY AI", + "website": "https://www.kittyai.xyz/", + "description": "Kitty AI is a community-driven token built on the Solana blockchain, specifically designed for AI enthusiasts and developers.", + "explorer": "https://solscan.io/token/8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G", + "type": "SPL", + "symbol": "KITTY", + "decimals": 6, + "status": "active", + "id": "8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kitty-ai/" + }, + { + "name": "twitter", + "url": "https://twitter.com/KittyAIsolana" + } + ] +} diff --git a/blockchains/solana/assets/8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G/logo.png b/blockchains/solana/assets/8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G/logo.png new file mode 100644 index 0000000000000..7f95df948fc61 Binary files /dev/null and b/blockchains/solana/assets/8yJ15ee2AUQmwbWPxXLTTeBTzyMGn4MtSRKMqVHw1J1G/logo.png differ diff --git a/blockchains/solana/assets/947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3/info.json b/blockchains/solana/assets/947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3/info.json new file mode 100644 index 0000000000000..1733519b3983e --- /dev/null +++ b/blockchains/solana/assets/947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3/info.json @@ -0,0 +1,17 @@ +{ + "name": "Solchat", + "website": "https://solchat.io/", + "description": "Solchat is a communication protocol on the Solana blockchain, offering text, voice, and video calls similar to Web2, but in a Web3 environment.", + "explorer": "https://solscan.io/token/947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3", + "type": "SPL", + "symbol": "CHAT", + "decimals": 9, + "status": "active", + "id": "947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/solchatcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3/logo.png b/blockchains/solana/assets/947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3/logo.png new file mode 100644 index 0000000000000..91421cb059de2 Binary files /dev/null and b/blockchains/solana/assets/947tEoG318GUmyjVYhraNRvWpMX7fpBTDQFBoJvSkSG3/logo.png differ diff --git a/blockchains/solana/assets/984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump/info.json b/blockchains/solana/assets/984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump/info.json new file mode 100644 index 0000000000000..381d04b002a8a --- /dev/null +++ b/blockchains/solana/assets/984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump/info.json @@ -0,0 +1,21 @@ +{ + "name": "APES", + "symbol": "APES", + "type": "SPL", + "decimals": 6, + "description": "Join the APES GANG – shill the coin, play the game, have fun, and stake your tokens!", + "website": "https://apesgang.io/", + "explorer": "https://solscan.io/token/984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump", + "status": "active", + "id": "984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Apesol_gang" + }, + { + "name": "twitter", + "url": "https://twitter.com/Apesol_gang" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump/logo.png b/blockchains/solana/assets/984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump/logo.png new file mode 100644 index 0000000000000..04799082f80d5 Binary files /dev/null and b/blockchains/solana/assets/984GBL7PhceChtN64NWLdBb49rSQXX7ozpdkEbR1pump/logo.png differ diff --git a/blockchains/solana/assets/9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U/info.json b/blockchains/solana/assets/9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U/info.json new file mode 100644 index 0000000000000..d404d99d4e9cb --- /dev/null +++ b/blockchains/solana/assets/9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U/info.json @@ -0,0 +1,17 @@ +{ + "name": "tooker kurlson", + "website": "https://www.tookerkurlson.com", + "description": "The ticker is $tooker - ur 1 stahp shahp fir newz", + "explorer": "https://solscan.io/token/9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U", + "type": "SPL", + "symbol": "tooker", + "decimals": 9, + "status": "active", + "id": "9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/tookerkurlson" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U/logo.png b/blockchains/solana/assets/9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U/logo.png new file mode 100644 index 0000000000000..b5b8a29dd9ec4 Binary files /dev/null and b/blockchains/solana/assets/9EYScpiysGnEimnQPzazr7Jn9GVfxFYzgTEj85hV9L6U/logo.png differ diff --git a/blockchains/solana/assets/9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH/info.json b/blockchains/solana/assets/9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH/info.json new file mode 100644 index 0000000000000..60d00f2b61d9b --- /dev/null +++ b/blockchains/solana/assets/9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH/info.json @@ -0,0 +1,17 @@ +{ + "name": "SOLGOAT", + "website": "https://www.solgoat.io/", + "description": "Hey there, fellow crypto trailblazers! 🚀 Welcome to the electrifying world of SOLGOAT – where we're not just the underdogs, we're the GREATEST OF ALL TIME! 🐐", + "explorer": "https://solscan.io/token/9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH", + "type": "SPL", + "symbol": "SOLGOAT", + "decimals": 6, + "status": "active", + "id": "9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SOLGOATCOIN" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH/logo.png b/blockchains/solana/assets/9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH/logo.png new file mode 100644 index 0000000000000..43328fbf79b5c Binary files /dev/null and b/blockchains/solana/assets/9HXewqNjkHz22AKds3JUzFBNguzhoH4cJ4h1EksZyPGH/logo.png differ diff --git a/blockchains/solana/assets/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg/info.json b/blockchains/solana/assets/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg/info.json new file mode 100644 index 0000000000000..0ec855d0eaf6f --- /dev/null +++ b/blockchains/solana/assets/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pedro the Raccoon", + "website": "https://pedrotheraccoon.org/", + "description": "Dev jeeted. Community took over, new tg and twiiter been growing exponentially.", + "explorer": "https://solscan.io/token/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg", + "type": "SPL", + "symbol": "PEDRO", + "decimals": 9, + "status": "active", + "id": "9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/PedroRaccoonSol" + }, + { + "name": "telegram", + "url": "https://t.me/technopedro" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg/logo.png b/blockchains/solana/assets/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg/logo.png new file mode 100644 index 0000000000000..ef22f3908b191 Binary files /dev/null and b/blockchains/solana/assets/9SiKU8vnRiBYQSBff84K5zwG7habzwYVzn7KrtgCzNfg/logo.png differ diff --git a/blockchains/solana/assets/9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp/info.json b/blockchains/solana/assets/9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp/info.json new file mode 100644 index 0000000000000..3fcc50dfd74c9 --- /dev/null +++ b/blockchains/solana/assets/9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp/info.json @@ -0,0 +1,21 @@ +{ + "name": "SelfieDogCoin", + "website": "https://www.selfiedog.org/", + "description": "The most photogenic dog on the internet", + "explorer": "https://solscan.io/token/9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp", + "type": "SPL", + "symbol": "SELFIE", + "decimals": 6, + "status": "active", + "id": "9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/selfiedogcoin" + }, + { + "name": "twitter", + "url": "https://twitter.com/SelfieDog_SOL" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp/logo.png b/blockchains/solana/assets/9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp/logo.png new file mode 100644 index 0000000000000..9bd23396063a8 Binary files /dev/null and b/blockchains/solana/assets/9WPTUkh8fKuCnepRWoPYLH3aK9gSjPHFDenBq2X1Czdp/logo.png differ diff --git a/blockchains/solana/assets/9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin/info.json b/blockchains/solana/assets/9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin/info.json new file mode 100644 index 0000000000000..88008258d5acc --- /dev/null +++ b/blockchains/solana/assets/9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin/info.json @@ -0,0 +1,21 @@ +{ + "name": "KittenWifHat", + "website": "https://kittenwifhat.xyz/", + "description": "KittenWifHat is simply a Kitten wif a hat, Let's add hats to the cat. KittenWifHat is DogWifHat's biggest competitor!", + "explorer": "https://solscan.io/token/9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin", + "type": "SPL", + "symbol": "KittenWif", + "decimals": 9, + "status": "active", + "id": "9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/KittenWif_SOL" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kittenwifhat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin/logo.png b/blockchains/solana/assets/9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin/logo.png new file mode 100644 index 0000000000000..f75f5bc60fa21 Binary files /dev/null and b/blockchains/solana/assets/9a8AmDfQxFJ44RrVhKdiXnkwCWT99igWp5QrRuC73Pin/logo.png differ diff --git a/blockchains/solana/assets/9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw/info.json b/blockchains/solana/assets/9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw/info.json new file mode 100644 index 0000000000000..c02e51ebaec86 --- /dev/null +++ b/blockchains/solana/assets/9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mewing Coin", + "website": "https://www.mewingcoin.io/", + "description": "Mewing is the the practice of using proper tongue posture to improve facial beauty and fix malocclusion of the teeth.", + "explorer": "https://solscan.io/token/9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw", + "type": "SPL", + "symbol": "MEWING", + "decimals": 6, + "status": "active", + "id": "9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/MewingOnSolana" + }, + { + "name": "telegram", + "url": "https://t.me/MewingOnSolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw/logo.png b/blockchains/solana/assets/9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw/logo.png new file mode 100644 index 0000000000000..a0b943e1c24dd Binary files /dev/null and b/blockchains/solana/assets/9bxaVJmUwSc71j8Z2pvUL3UAr1s5fCnwUpvYhqV9jtmw/logo.png differ diff --git a/blockchains/solana/assets/9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN/info.json b/blockchains/solana/assets/9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN/info.json new file mode 100644 index 0000000000000..94c04c93ae786 --- /dev/null +++ b/blockchains/solana/assets/9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN/info.json @@ -0,0 +1,21 @@ +{ + "name": "AMC", + "type": "SPL", + "symbol": "AMC", + "decimals": 6, + "website": "https://amc-sol.com/", + "description": "As passionate supporters of AMC Entertainment, this is a unique way for fans to show their support where the hedges can’t stop us.", + "explorer": "https://solscan.io/token/9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN", + "status": "active", + "id": "9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/amconsolbtfd" + }, + { + "name": "telegram", + "url": "https://t.me/AMCSolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN/logo.png b/blockchains/solana/assets/9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN/logo.png new file mode 100644 index 0000000000000..76801bd1ff231 Binary files /dev/null and b/blockchains/solana/assets/9jaZhJM6nMHTo4hY9DGabQ1HNuUWhJtm7js1fmKMVpkN/logo.png differ diff --git a/blockchains/solana/assets/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t/info.json b/blockchains/solana/assets/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t/info.json new file mode 100644 index 0000000000000..cb936a219e804 --- /dev/null +++ b/blockchains/solana/assets/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t/info.json @@ -0,0 +1,21 @@ +{ + "name": "Panda Swap", + "website": "https://pandaswapsol.io/", + "description": "$PANDA - More Than Just a Token, a Transformative Force in Solana's Trading Landscape!", + "explorer": "https://solscan.io/token/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t", + "type": "SPL", + "symbol": "PANDA", + "decimals": 3, + "status": "active", + "id": "9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/PandaSwapSol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/panda-swap" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t/logo.png b/blockchains/solana/assets/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t/logo.png new file mode 100644 index 0000000000000..e0e242ab695fe Binary files /dev/null and b/blockchains/solana/assets/9m21fukdvCPBgEjmeeshbskPwbaa5RH8HTHQGeTnGd2t/logo.png differ diff --git a/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/info.json b/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/info.json new file mode 100644 index 0000000000000..8cae703d0458c --- /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 0000000000000..4d36b415c66f5 Binary files /dev/null and b/blockchains/solana/assets/9pkudFiG5qhiSQQ8XatPbxZj8zBQ5m4XzHsKHMAGkkCR/logo.png differ diff --git a/blockchains/solana/assets/9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP/info.json b/blockchains/solana/assets/9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP/info.json new file mode 100644 index 0000000000000..e41817179d572 --- /dev/null +++ b/blockchains/solana/assets/9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP/info.json @@ -0,0 +1,21 @@ +{ + "name": "GOLAZO", + "type": "SPL", + "symbol": "GOL", + "decimals": 9, + "website": "https://golazo.world/", + "description": "Meet Golazo. Bridging the gap between football & crypto. One meme at a time", + "explorer": "https://solscan.io/token/9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP", + "status": "active", + "id": "9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/golazosol" + }, + { + "name": "telegram", + "url": "https://t.me/Golazosol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP/logo.png b/blockchains/solana/assets/9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP/logo.png new file mode 100644 index 0000000000000..c845b19581652 Binary files /dev/null and b/blockchains/solana/assets/9sjyR4GrozeV8a9xM3ykKPGPXJYASy9AuufzefCyaCnP/logo.png differ diff --git a/blockchains/solana/assets/A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9/info.json b/blockchains/solana/assets/A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9/info.json new file mode 100644 index 0000000000000..c440c43edd2de --- /dev/null +++ b/blockchains/solana/assets/A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9/info.json @@ -0,0 +1,21 @@ +{ + "name": "duk", + "website": "https://www.dukonsol.vip/", + "description": "the duk fuks on Solana dev tried to rug us, twice, but we took over and made this the only duk that fuks", + "explorer": "https://solscan.io/token/A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9", + "type": "SPL", + "symbol": "duk", + "decimals": 6, + "status": "active", + "id": "A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dukfuksonsol" + }, + { + "name": "telegram", + "url": "https://t.me/dukofficialportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9/logo.png b/blockchains/solana/assets/A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9/logo.png new file mode 100644 index 0000000000000..acc75efabf847 Binary files /dev/null and b/blockchains/solana/assets/A2khRbhRJNrAEHj95htivC4cR4VbJwfssDH5FPPbP4m9/logo.png differ diff --git a/blockchains/solana/assets/A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ/info.json b/blockchains/solana/assets/A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ/info.json new file mode 100644 index 0000000000000..60d9476f46356 --- /dev/null +++ b/blockchains/solana/assets/A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ/info.json @@ -0,0 +1,21 @@ +{ + "name": "Peng", + "type": "SPL", + "symbol": "PENG", + "decimals": 6, + "website": "https://pengsol.xyz/", + "description": "Welcome to $PENG, the icy addition to the Solana blockchain! Our small yet mighty penguin, with a hint of Pepe the Frog, brings a fresh breeze of creativity to the degen world of Solana.", + "explorer": "https://solscan.io/token/A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ", + "status": "active", + "id": "A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/pengonsolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/peng-sol/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ/logo.png b/blockchains/solana/assets/A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ/logo.png new file mode 100644 index 0000000000000..dff524a78553f Binary files /dev/null and b/blockchains/solana/assets/A3eME5CetyZPBoWbRUwY3tSe25S6tb18ba9ZPbWk9eFJ/logo.png differ diff --git a/blockchains/solana/assets/A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy/info.json b/blockchains/solana/assets/A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy/info.json new file mode 100644 index 0000000000000..0a755d7d67879 --- /dev/null +++ b/blockchains/solana/assets/A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy/info.json @@ -0,0 +1,21 @@ +{ + "name": "DJCAT", + "type": "SPL", + "symbol": "DJCAT", + "decimals": 6, + "website": "https://djcat.framer.website/", + "description": "Dev jeeted so you know what time it is.", + "explorer": "https://solscan.io/token/A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy", + "status": "active", + "id": "A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/cto_djcat" + }, + { + "name": "telegram", + "url": "https://t.me/ctodjcat" + } + ] +} diff --git a/blockchains/solana/assets/A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy/logo.png b/blockchains/solana/assets/A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy/logo.png new file mode 100644 index 0000000000000..2d2fb70c5966a Binary files /dev/null and b/blockchains/solana/assets/A5gVj5j16U4vCTMXQYYrhkmWgx6gej4nAeZRNQMLUAfy/logo.png differ diff --git a/blockchains/solana/assets/A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump/info.json b/blockchains/solana/assets/A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump/info.json new file mode 100644 index 0000000000000..510d182989107 --- /dev/null +++ b/blockchains/solana/assets/A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "FWOG", + "website": "https://fwogsol.xyz/", + "description": "In the ashes a community emerged, a new flog, a more based flog, a FWOG. FWOG has no dev. It is the community", + "explorer": "https://solscan.io/token/A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "type": "SPL", + "symbol": "FWOG", + "decimals": 6, + "status": "active", + "id": "A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/solfwog" + }, + { + "name": "telegram", + "url": "https://t.me/fwogportal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump/logo.png b/blockchains/solana/assets/A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump/logo.png new file mode 100644 index 0000000000000..5ab7a351b9c60 Binary files /dev/null and b/blockchains/solana/assets/A8C3xuqscfmyLrte3VmTqrAq8kgMASius9AFNANwpump/logo.png differ diff --git a/blockchains/solana/assets/ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d/info.json b/blockchains/solana/assets/ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d/info.json new file mode 100644 index 0000000000000..b619d8811ec90 --- /dev/null +++ b/blockchains/solana/assets/ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d/info.json @@ -0,0 +1,17 @@ +{ + "name": "Gatsby", + "website": "https://gatsbytoken.io/meetgatsby/", + "description": "Gatsby Inu is a community-driven meme token on the Ethereum blockchain. inspired by Elon Musk’s biggest dog, Gatsby is a powerful American Akita Inu leading the Inu pack.", + "explorer": "https://solscan.io/token/ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d", + "type": "SPL", + "symbol": "GATSBY", + "decimals": 6, + "status": "active", + "id": "ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GatsbyInuERC" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d/logo.png b/blockchains/solana/assets/ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d/logo.png new file mode 100644 index 0000000000000..34fa168e2235e Binary files /dev/null and b/blockchains/solana/assets/ALss4p8YdK4RrkAATkd2QkQw1LAmUjbX9xScYRaq6S6d/logo.png differ diff --git a/blockchains/solana/assets/AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K/info.json b/blockchains/solana/assets/AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K/info.json new file mode 100644 index 0000000000000..ea0dfeb331ff9 --- /dev/null +++ b/blockchains/solana/assets/AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K/info.json @@ -0,0 +1,21 @@ +{ + "name": "SolCex", + "website": "https://solcex.io/", + "description": "Trade Solana, Bitcoin, Ethereum, USDT, and the top altcoins on the legendary crypto asset exchange.", + "explorer": "https://solscan.io/token/AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K", + "type": "SPL", + "symbol": "SOLCEX", + "decimals": 6, + "status": "active", + "id": "AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SolCex_Exchange" + }, + { + "name": "telegram", + "url": "https://t.me/Solcex_Exchange" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K/logo.png b/blockchains/solana/assets/AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K/logo.png new file mode 100644 index 0000000000000..e229052634851 Binary files /dev/null and b/blockchains/solana/assets/AMjzRn1TBQwQfNAjHFeBb7uGbbqbJB7FzXAnGgdFPk6K/logo.png differ diff --git a/blockchains/solana/assets/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj/info.json b/blockchains/solana/assets/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj/info.json new file mode 100644 index 0000000000000..8ef94a79f1d19 --- /dev/null +++ b/blockchains/solana/assets/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj/info.json @@ -0,0 +1,17 @@ +{ + "name": "Artrade", + "type": "SPL", + "symbol": "ATR", + "decimals": 9, + "website": "https://artrade.app/", + "description": "Artrade emerges as a groundbreaking online platform aimed at revolutionizing the traditional paradigms of art transactions.", + "explorer": "https://solscan.io/token/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj", + "id": "ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj", + "status": "active", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ArtradeApp" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj/logo.png b/blockchains/solana/assets/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj/logo.png new file mode 100644 index 0000000000000..01d4f474d2192 Binary files /dev/null and b/blockchains/solana/assets/ATRLuHph8dxnPny4WSNW7fxkhbeivBrtWbY6BfB4xpLj/logo.png differ diff --git a/blockchains/solana/assets/AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr/info.json b/blockchains/solana/assets/AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr/info.json new file mode 100644 index 0000000000000..d77996ed9e4a8 --- /dev/null +++ b/blockchains/solana/assets/AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr/info.json @@ -0,0 +1,17 @@ +{ + "name": "Solama", + "website": "https://solama.vip/", + "description": "SOLAMA, the rising star in the meme coin universe on the SOLANA blockchain", + "explorer": "https://solscan.io/token/AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr", + "type": "SPL", + "symbol": "SOLAMA", + "decimals": 6, + "status": "active", + "id": "AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SolamaSPL" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr/logo.png b/blockchains/solana/assets/AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr/logo.png new file mode 100644 index 0000000000000..65ffbd7cc6fe9 Binary files /dev/null and b/blockchains/solana/assets/AVLhahDcDQ4m4vHM4ug63oh7xc8Jtk49Dm5hoe9Sazqr/logo.png differ diff --git a/blockchains/solana/assets/AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn/info.json b/blockchains/solana/assets/AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn/info.json new file mode 100644 index 0000000000000..e331cb637a90d --- /dev/null +++ b/blockchains/solana/assets/AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn/info.json @@ -0,0 +1,21 @@ +{ + "name": "Cheese", + "type": "SPL", + "symbol": "Cheese", + "decimals": 6, + "website": "https://cheesed.me/", + "description": "It's just a slice of cheese.", + "explorer": "https://solscan.io/token/AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn", + "status": "active", + "id": "AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dacheeseslice" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cheese-2" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn/logo.png b/blockchains/solana/assets/AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn/logo.png new file mode 100644 index 0000000000000..18d52dda0e5a6 Binary files /dev/null and b/blockchains/solana/assets/AbrMJWfDVRZ2EWCQ1xSCpoVeVgZNpq1U2AoYG98oRXfn/logo.png differ diff --git a/blockchains/solana/assets/AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT/info.json b/blockchains/solana/assets/AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT/info.json new file mode 100644 index 0000000000000..e110f54d54355 --- /dev/null +++ b/blockchains/solana/assets/AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT/info.json @@ -0,0 +1,17 @@ +{ + "name": "TimePocket", + "type": "SPL", + "symbol": "TimePocket", + "decimals": 9, + "website": "https://www.timepocket.one/index.html", + "description": "Using our platform, you can exchange tokens to meet new people, form friendships, and borrow their time.", + "explorer": "https://solscan.io/token/AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT", + "status": "active", + "id": "AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/TimePocket_1" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT/logo.png b/blockchains/solana/assets/AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT/logo.png new file mode 100644 index 0000000000000..3201fccdd86ee Binary files /dev/null and b/blockchains/solana/assets/AdfrN2rK9dJmd4E9vwkf2ThpBxKFfT1o31gXSPpupYtT/logo.png differ diff --git a/blockchains/solana/assets/Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE/info.json b/blockchains/solana/assets/Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE/info.json new file mode 100644 index 0000000000000..a6f8fb911d831 --- /dev/null +++ b/blockchains/solana/assets/Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE/info.json @@ -0,0 +1,17 @@ +{ + "name":"What in Tarnation?", + "type":"SPL", + "symbol":"WIT", + "decimals": 6, + "website":"https://www.whatintarn.org", + "description":"What in tarnation is a manner of expressin’ scorn. We holler it when we’re downright bamboozled by how things are runnin’, and by golly, we’re hollerin’ it now. Fake hound coins are appearin’ quicker than a jackrabbit and vanishin’ just as fast, all in the chase for a fast profit. WIT’s a whole ‘nother breed. We're plantin’ our boots firmly on the ground, here for the long haul.", + "explorer":"https://solscan.io/token/Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE", + "status":"active", + "id":"Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/WhatInTarnSol" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE/logo.png b/blockchains/solana/assets/Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE/logo.png new file mode 100644 index 0000000000000..5d7c37b3fa547 Binary files /dev/null and b/blockchains/solana/assets/Adq3wnAvtaXBNfy63xGV1YNkDiPKadDT469xF9uZPrqE/logo.png differ diff --git a/blockchains/solana/assets/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw/info.json b/blockchains/solana/assets/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw/info.json new file mode 100644 index 0000000000000..c5470606c4dcc --- /dev/null +++ b/blockchains/solana/assets/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw/info.json @@ -0,0 +1,17 @@ +{ + "name": "jester turdeau", + "type": "SPL", + "symbol": "turdeau", + "decimals": 9, + "website": "https://jesterturdeau.com", + "description": "jester turdeau moon, no pepe moon jester turdeau moon today i s a jester turdeau da y toda i jester turdeau moon. yes jester turdeau go to da moon. u is cuming wif jester turdeau?", + "explorer": "https://solscan.io/token/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw", + "status": "active", + "id": "AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/jesterturdeau" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw/logo.png b/blockchains/solana/assets/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw/logo.png new file mode 100644 index 0000000000000..e4c3184473862 Binary files /dev/null and b/blockchains/solana/assets/AtaQNGKRqk7nBexQjr2xPBDYaqXDsAxvwhyufA5Ffmw/logo.png differ diff --git a/blockchains/solana/assets/AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG/info.json b/blockchains/solana/assets/AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG/info.json new file mode 100644 index 0000000000000..117cc9c1a1065 --- /dev/null +++ b/blockchains/solana/assets/AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG/info.json @@ -0,0 +1,21 @@ +{ + "name": "BEER", + "type": "SPL", + "symbol": "BEER", + "website": "https://beercoin.wtf/", + "explorer": "https://solscan.io/token/AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG", + "decimals": 6, + "description": "$BEER isn't just another coin – it's literally liquid gold. It works as the universal currency of enjoyment, bringing people together regardless of their skin color or social status. Grab some $BEER, invite your friends, and enjoy a great time!", + "status": "active", + "id": "AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG", + "links": [ + { + "name": "telegram", + "url": "https://t.me/beercoinchannel" + }, + { + "name": "twitter", + "url": "https://twitter.com/beercoinmeme" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG/logo.png b/blockchains/solana/assets/AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG/logo.png new file mode 100644 index 0000000000000..0a90e4ab07c38 Binary files /dev/null and b/blockchains/solana/assets/AujTJJ7aMS8LDo3bFzoyXDwT3jBALUbu4VZhzZdTZLmG/logo.png differ diff --git a/blockchains/solana/assets/Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm/info.json b/blockchains/solana/assets/Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm/info.json new file mode 100644 index 0000000000000..4aa0d149f624c --- /dev/null +++ b/blockchains/solana/assets/Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm/info.json @@ -0,0 +1,17 @@ +{ + "name": "Costco Hot Dog", + "website": "https://costcodogsol.xyz", + "description": "$COST the greatest fight against inflation. Available at a Costco near you for only $1.50. The people love these dogs.", + "explorer": "https://solscan.io/token/Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm", + "type": "SPL", + "symbol": "COST", + "decimals": 9, + "status": "active", + "id": "Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/costcodogsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm/logo.png b/blockchains/solana/assets/Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm/logo.png new file mode 100644 index 0000000000000..710e1699c774a Binary files /dev/null and b/blockchains/solana/assets/Av6qVigkb7USQyPXJkUvAEm4f599WTRvd75PUWBA9eNm/logo.png differ diff --git a/blockchains/solana/assets/Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf/info.json b/blockchains/solana/assets/Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf/info.json new file mode 100644 index 0000000000000..821dd8b6f1f15 --- /dev/null +++ b/blockchains/solana/assets/Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf/info.json @@ -0,0 +1,17 @@ +{ + "name": "CatWifHat", + "type": "SPL", + "symbol": "CatWif", + "decimals": 6, + "website": "https://catwiftoken.org/", + "description": "CatWifHat is a community-driven token, the community will determine the development of CatWifHat throughout the development process.", + "explorer": "https://solscan.io/token/Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf", + "id": "Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf", + "status": "active", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Catwifhat_2024" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf/logo.png b/blockchains/solana/assets/Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf/logo.png new file mode 100644 index 0000000000000..3eb12687d3169 Binary files /dev/null and b/blockchains/solana/assets/Avb1PBRudW7uUV9MqTUqfZ3EZTDvNkKS63W3wyPseudf/logo.png differ diff --git a/blockchains/solana/assets/BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7/info.json b/blockchains/solana/assets/BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7/info.json new file mode 100644 index 0000000000000..ab9d84524ea2a --- /dev/null +++ b/blockchains/solana/assets/BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7/info.json @@ -0,0 +1,17 @@ +{ + "name": "BookOfBullrun", + "website": "https://bookofbullrun.meme/lander", + "description": "BOOK OF BULLRUN THE MASTERPLAN ABOUT THE BIGGEST BULLRUN", + "explorer": "https://solscan.io/token/BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7", + "type": "SPL", + "symbol": "BOOB", + "decimals": 6, + "status": "active", + "id": "BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BookOfBullrunx" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7/logo.png b/blockchains/solana/assets/BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7/logo.png new file mode 100644 index 0000000000000..ffe32399d1948 Binary files /dev/null and b/blockchains/solana/assets/BGehTcKraAndWS3B6cq7UVUXQy4uDY49tANEprsTrUo7/logo.png differ diff --git a/blockchains/solana/assets/BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn/info.json b/blockchains/solana/assets/BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn/info.json new file mode 100644 index 0000000000000..9a9f8c4dc12f5 --- /dev/null +++ b/blockchains/solana/assets/BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn/info.json @@ -0,0 +1,21 @@ +{ + "name": "shork", + "website": "https://www.shorkcoin.xyz/", + "description": "just a lil shork", + "explorer": "https://solscan.io/token/BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn", + "type": "SPL", + "symbol": "shork", + "decimals": 6, + "status": "active", + "id": "BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/shork_coin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/shork/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn/logo.png b/blockchains/solana/assets/BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn/logo.png new file mode 100644 index 0000000000000..c140d0f98b5ee Binary files /dev/null and b/blockchains/solana/assets/BJB5tHWAHboMAwti5AHbCNX17F3jL8ehkh4zuTUx99Zn/logo.png differ diff --git a/blockchains/solana/assets/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz/info.json b/blockchains/solana/assets/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz/info.json new file mode 100644 index 0000000000000..1e979eed92993 --- /dev/null +++ b/blockchains/solana/assets/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz/info.json @@ -0,0 +1,17 @@ +{ + "name":"burek obema", + "type":"SPL", + "symbol":"obema", + "decimals": 6, + "website":"https://burekobemaonsol.com/", + "description":"meke merica bleck agin", + "explorer":"https://solscan.io/token/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz", + "status":"active", + "id":"BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/BurekObemaSOL" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz/logo.png b/blockchains/solana/assets/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz/logo.png new file mode 100644 index 0000000000000..44689741fd2b9 Binary files /dev/null and b/blockchains/solana/assets/BMQZzVJa1X5cBYc8fCRVbWuFC4czA1s5GE3HekWfuhjz/logo.png differ diff --git a/blockchains/solana/assets/BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF/info.json b/blockchains/solana/assets/BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF/info.json new file mode 100644 index 0000000000000..c2f2f619dc8ac --- /dev/null +++ b/blockchains/solana/assets/BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF/info.json @@ -0,0 +1,21 @@ +{ + "name": "HULVIN", + "website": "https://www.bomeow.com", + "description": "Introducing the Book of Meow ($BOMEOW), a Solana-based meme token that is the purr-fect variation of different mews across the entire meow-niverse.", + "explorer": "https://solscan.io/token/BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF", + "type": "SPL", + "symbol": "HULVIN", + "decimals": 9, + "status": "active", + "id": "BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/hulvinsol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/hulvin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF/logo.png b/blockchains/solana/assets/BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF/logo.png new file mode 100644 index 0000000000000..3fc2bc8314625 Binary files /dev/null and b/blockchains/solana/assets/BTWvZsjwgnGT7qSM3AAXxjZohCLsMHpdAhaiQMJbBvcF/logo.png differ diff --git a/blockchains/solana/assets/BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K/info.json b/blockchains/solana/assets/BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K/info.json new file mode 100644 index 0000000000000..1352cc4568cd8 --- /dev/null +++ b/blockchains/solana/assets/BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K/info.json @@ -0,0 +1,25 @@ +{ + "name": "IO", + "type": "SPL", + "symbol": "IO", + "decimals": 8, + "website": "https://io.net/", + "description": "io.net the world’s largest decentralized AI computing network that allows machine learning engineers to access scalable distributed clusters at a small fraction of the cost of comparable centralized services.", + "explorer": "https://solscan.io/token/BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K", + "status": "active", + "id": "BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ionet" + }, + { + "name": "telegram", + "url": "https://t.me/io_net" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/io-net/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K/logo.png b/blockchains/solana/assets/BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K/logo.png new file mode 100644 index 0000000000000..4d3165aa78e40 Binary files /dev/null and b/blockchains/solana/assets/BZLbGTNCSFfoth2GYDtwr7e4imWzpR5jqcUuGEwr646K/logo.png differ diff --git a/blockchains/solana/assets/BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz/info.json b/blockchains/solana/assets/BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz/info.json new file mode 100644 index 0000000000000..bf93649b8e347 --- /dev/null +++ b/blockchains/solana/assets/BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz/info.json @@ -0,0 +1,17 @@ +{ + "name": "ansom", + "website": "https://bento.me/ansom", + "description": "Hi, i'm Ansom! coldost negga bratin!", + "explorer": "https://solscan.io/token/BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz", + "type": "SPL", + "symbol": "ANSOM", + "decimals": 9, + "status": "active", + "id": "BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/tickerisansom" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz/logo.png b/blockchains/solana/assets/BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz/logo.png new file mode 100644 index 0000000000000..750a07b32602b Binary files /dev/null and b/blockchains/solana/assets/BfHkvKMEYjwPXnL36uiM8RnAoMFy8aqNyTJXYU3ZnZtz/logo.png differ diff --git a/blockchains/solana/assets/BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump/info.json b/blockchains/solana/assets/BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump/info.json new file mode 100644 index 0000000000000..58581e5f3e5f5 --- /dev/null +++ b/blockchains/solana/assets/BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "hehe", + "website": "https://hehecat.org/", + "description": "hehe is a community token inspired by famous `hehe cat` meme", + "explorer": "https://solscan.io/token/BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump", + "type": "SPL", + "symbol": "hehe", + "decimals": 6, + "status": "active", + "id": "BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/hehecat_solana" + }, + { + "name": "telegram", + "url": "https://t.me/+RyQeKYGn0BBiMDRh" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump/logo.png b/blockchains/solana/assets/BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump/logo.png new file mode 100644 index 0000000000000..d92eccfbe50cb Binary files /dev/null and b/blockchains/solana/assets/BreuhVohXX5fv6q41uyb3sojtAuGoGaiAhKBMtcrpump/logo.png differ diff --git a/blockchains/solana/assets/C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S/info.json b/blockchains/solana/assets/C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S/info.json new file mode 100644 index 0000000000000..6bed7f16755f0 --- /dev/null +++ b/blockchains/solana/assets/C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S/info.json @@ -0,0 +1,17 @@ +{ + "name": "Bazinga", + "type": "SPL", + "symbol": "Bazinga", + "decimals": 6, + "website": "https://bazingasolana.univer.se/", + "description": "Bazinga is aiming to be a Pump.fun killer by launching it's own platform on game.com", + "explorer": "https://solscan.io/token/C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S", + "status": "active", + "id": "C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bazingahappy" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S/logo.png b/blockchains/solana/assets/C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S/logo.png new file mode 100644 index 0000000000000..08430454e3c80 Binary files /dev/null and b/blockchains/solana/assets/C3JX9TWLqHKmcoTDTppaJebX2U7DcUQDEHVSmJFz6K6S/logo.png differ diff --git a/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/info.json b/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/info.json new file mode 100644 index 0000000000000..d831ad876c678 --- /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 0000000000000..adc079763a7c5 Binary files /dev/null and b/blockchains/solana/assets/C98A4nkJXhpVZNAZdHUA95RpTF3T4whtQubL3YobiUX9/logo.png differ diff --git a/blockchains/solana/assets/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5/info.json b/blockchains/solana/assets/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5/info.json new file mode 100644 index 0000000000000..812a5be17612e --- /dev/null +++ b/blockchains/solana/assets/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sage Universe", + "type": "SPL", + "symbol": "SAGE", + "decimals": 9, + "website": "https://sageuniverse.meme/", + "description": "Sage Universe is all about changing lives, building community, and helping eachother reach their goals. At Sage Universe we believe in the power of coming together and making real meaningful change.", + "explorer": "https://solscan.io/token/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5", + "status": "active", + "id": "CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SAGEUNIVERS3" + }, + { + "name": "telegram", + "url": "https://t.me/sage_universe" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5/logo.png b/blockchains/solana/assets/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5/logo.png new file mode 100644 index 0000000000000..689f6af80e70b Binary files /dev/null and b/blockchains/solana/assets/CMe1QWsoDWFUi95GMkk7mCTnnjxBxtnJ3jbrEhQTVWL5/logo.png differ diff --git a/blockchains/solana/assets/CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC/info.json b/blockchains/solana/assets/CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC/info.json new file mode 100644 index 0000000000000..cbedd4c8bdb97 --- /dev/null +++ b/blockchains/solana/assets/CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC/info.json @@ -0,0 +1,17 @@ +{ + "name": "Stanley Cup Coin", + "website": "https://www.stanleyco.in", + "description": "Tired of looking like a LOSER when you drink from your regular quenchers? Have a physical Stanley Quencher but can’t represent your ownership online?", + "explorer": "https://solscan.io/token/CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC", + "type": "SPL", + "symbol": "STAN", + "decimals": 5, + "status": "active", + "id": "CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/StanleyCupCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC/logo.png b/blockchains/solana/assets/CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC/logo.png new file mode 100644 index 0000000000000..267de150a6aa4 Binary files /dev/null and b/blockchains/solana/assets/CQSzJzwW5H1oyWrp6QhfUKYYwyovbSiVDKnAxNfb1tJC/logo.png differ diff --git a/blockchains/solana/assets/CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump/info.json b/blockchains/solana/assets/CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump/info.json new file mode 100644 index 0000000000000..685318f14003d --- /dev/null +++ b/blockchains/solana/assets/CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump/info.json @@ -0,0 +1,21 @@ +{ + "name": "NEIRO", + "website": "https://neirobropump.com", + "description": "Neiro Solana (neirobropump.com) (NEIRO) is a cryptocurrency launched in 2024and operates on the Solana platform.", + "explorer": "https://solscan.io/token/CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump", + "type": "SPL", + "symbol": "NEIRO", + "decimals": 6, + "status": "active", + "id": "CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/neirowoof" + }, + { + "name": "telegram", + "url": "https://t.me/NEIROBROPUMP" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump/logo.png b/blockchains/solana/assets/CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump/logo.png new file mode 100644 index 0000000000000..ed8d0e199867c Binary files /dev/null and b/blockchains/solana/assets/CTg3ZgYx79zrE1MteDVkmkcGniiFrK1hJ6yiabropump/logo.png differ diff --git a/blockchains/solana/assets/CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN/info.json b/blockchains/solana/assets/CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN/info.json new file mode 100644 index 0000000000000..26654bc58bf14 --- /dev/null +++ b/blockchains/solana/assets/CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN/info.json @@ -0,0 +1,17 @@ +{ + "name": "Hump", + "website": "https://hump.io", + "description": "HUMP isn't your average meme token—it's a beacon of progress in the world of decentralized finance, Inspired by the adorable image of a furry friend", + "explorer": "https://solscan.io/token/CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN", + "type": "SPL", + "symbol": "HUMP", + "decimals": 6, + "status": "active", + "id": "CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Humptoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN/logo.png b/blockchains/solana/assets/CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN/logo.png new file mode 100644 index 0000000000000..f68317d6eacab Binary files /dev/null and b/blockchains/solana/assets/CUsEVhFGfjr2wwqjQFd7LrowYy6UhXY2HfAppUzTsihN/logo.png differ diff --git a/blockchains/solana/assets/CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG/info.json b/blockchains/solana/assets/CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG/info.json new file mode 100644 index 0000000000000..f21badd4a36b8 --- /dev/null +++ b/blockchains/solana/assets/CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG/info.json @@ -0,0 +1,32 @@ +{ + "name": "Chainlink", + "website": "https://chain.link", + "description": "Chainlink is a decentralized oracle service, which aims to connect smart contracts with data from the real world. Oracles are needed to function as data feeds in smart contracts. Oracles provide external data (e.g. temperature, weather) that can drive smart contract executions. Participants on the network are incentivized (through rewards) to provide smart contracts with access to external data feeds.", + "explorer": "https://solscan.io/token/CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG", + "type": "SPL", + "symbol": "LINK", + "decimals": 6, + "status": "active", + "id": "CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG", + "tags": [ + "defi" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/smartcontractkit/chainlink" + }, + { + "name": "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/solana/assets/CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG/logo.png b/blockchains/solana/assets/CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG/logo.png new file mode 100644 index 0000000000000..ab55f5e21fae2 Binary files /dev/null and b/blockchains/solana/assets/CWE8jPTUYhdCTZYWPTe1o5DFqfdjzWKc9WKz6rSjQUdG/logo.png differ diff --git a/blockchains/solana/assets/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk/info.json b/blockchains/solana/assets/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk/info.json new file mode 100644 index 0000000000000..f4a1af0b5cc6b --- /dev/null +++ b/blockchains/solana/assets/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk/info.json @@ -0,0 +1,17 @@ +{ + "name": "Balin Bank", + "website": "https://www.balinbank.com/", + "description": "$BALIN is the first meme coin launched on the Solana Network with its own decentralised banking system created by Alvey Chain Team.", + "explorer": "https://solscan.io/token/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk", + "type": "SPL", + "symbol": "Balin", + "decimals": 9, + "status": "active", + "id": "CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BalinBank" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk/logo.png b/blockchains/solana/assets/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk/logo.png new file mode 100644 index 0000000000000..e167aade5386d Binary files /dev/null and b/blockchains/solana/assets/CbZb4TLMe1NaFTzyxB7LaymvmcQvMwQX2Lw1YKwYH9kk/logo.png differ diff --git a/blockchains/solana/assets/CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump/info.json b/blockchains/solana/assets/CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump/info.json new file mode 100644 index 0000000000000..08a1f1df4c267 --- /dev/null +++ b/blockchains/solana/assets/CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "BILLI", + "website": "https://www.billi.guru/", + "description": "Billi the Hobo used to roam the streets, now turning fellow hobos into billionaires. Literally anyone can be a $BILLI'onaire!", + "explorer": "https://solscan.io/token/CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump", + "type": "SPL", + "symbol": "BILLI", + "decimals": 6, + "status": "active", + "id": "CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump", + "links": [ + { + "name": "telegram", + "url": "https://t.me/billi_solana" + }, + { + "name": "twitter", + "url": "https://twitter.com/billi_solana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump/logo.png b/blockchains/solana/assets/CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump/logo.png new file mode 100644 index 0000000000000..b8d63c3fc1164 Binary files /dev/null and b/blockchains/solana/assets/CmLfUYD69N4cdthVJBAcojPhZvFTwEz3Xo2TuBzLpump/logo.png differ diff --git a/blockchains/solana/assets/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru/info.json b/blockchains/solana/assets/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru/info.json new file mode 100644 index 0000000000000..85e76538a71c7 --- /dev/null +++ b/blockchains/solana/assets/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru/info.json @@ -0,0 +1,21 @@ +{ + "name": "neversol", + "type": "SPL", + "symbol": "never", + "decimals": 6, + "website": "https://neversol.xyz", + "description": "$never,the crypto meme token that turns traditional marketing strategies on their head.", + "explorer": "https://solscan.io/token/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru", + "status": "active", + "id": "CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Neversol_coin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com//Криптовалюты/neversol" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru/logo.png b/blockchains/solana/assets/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru/logo.png new file mode 100644 index 0000000000000..f9552d4dbfcc9 Binary files /dev/null and b/blockchains/solana/assets/CxrhHSqyW8YTDWc4csJMMgo7uBUJSXzNzrWhtw9ULdru/logo.png differ diff --git a/blockchains/solana/assets/CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA/info.json b/blockchains/solana/assets/CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA/info.json new file mode 100644 index 0000000000000..3adba6e4e2b06 --- /dev/null +++ b/blockchains/solana/assets/CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA/info.json @@ -0,0 +1,21 @@ +{ + "name": "Solgun", + "type": "SPL", + "symbol": "SOLGUN", + "decimals": 9, + "website": "https://solgunsniper.bot/", + "description": "SolGun Sniper: The Fastest Trading Bot that provides to users, presale sniping, copy-trading.", + "explorer": "https://solscan.io/token/CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA", + "status": "active", + "id": "CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SolgunBot" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/solgun/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA/logo.png b/blockchains/solana/assets/CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA/logo.png new file mode 100644 index 0000000000000..1c24240ddd83f Binary files /dev/null and b/blockchains/solana/assets/CyJRzN4iavA2b9tQB2YMCMKYBcT9L5LSijLb5TeyqvLA/logo.png differ diff --git a/blockchains/solana/assets/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump/info.json b/blockchains/solana/assets/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump/info.json new file mode 100644 index 0000000000000..d62f185ca4ef6 --- /dev/null +++ b/blockchains/solana/assets/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Goatseus Maximus", + "type": "SPL", + "symbol": "GOAT", + "decimals": 6, + "website": "https://pump.fun/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump", + "description": "First meme created by truth_terminal. Goatseus Maximus will fulfill the prophecies of the ancient memeers.", + "explorer": "https://solscan.io/token/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump", + "status": "active", + "id": "CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/gospelofgoatse" + }, + { + "name": "telegram", + "url": "https://t.me/GoatseusMaximusSolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump/logo.png b/blockchains/solana/assets/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump/logo.png new file mode 100644 index 0000000000000..b19fc1c0b435c Binary files /dev/null and b/blockchains/solana/assets/CzLSujWBLFsSjncfkh59rUFqvafWcY5tzedWJSuypump/logo.png differ diff --git a/blockchains/solana/assets/D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv/info.json b/blockchains/solana/assets/D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv/info.json new file mode 100644 index 0000000000000..2f1647e14fc45 --- /dev/null +++ b/blockchains/solana/assets/D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv/info.json @@ -0,0 +1,21 @@ +{ + "name": "catwifbag", + "website": "https://www.wifbag.com/", + "description": "The Dogwifhat owner’s cat.", + "explorer": "https://solscan.io/token/D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv", + "type": "SPL", + "symbol": "BAG", + "decimals": 9, + "status": "active", + "id": "D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/wifbag" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/catwifbag" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv/logo.png b/blockchains/solana/assets/D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv/logo.png new file mode 100644 index 0000000000000..f6d9cd0ddf4a4 Binary files /dev/null and b/blockchains/solana/assets/D8r8XTuCrUhLheWeGXSwC3G92RhASficV3YA7B2XWcLv/logo.png differ diff --git a/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/info.json b/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/info.json index 57c75dbab5dec..9a126c55ed988 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 4948f43ebc581..b0d3e287349fe 100644 Binary files a/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/logo.png and b/blockchains/solana/assets/DAtU322C23YpoZyWBm8szk12QyqHa9rUQe1EYXzbm1JE/logo.png differ diff --git a/blockchains/solana/assets/DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE/info.json b/blockchains/solana/assets/DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE/info.json new file mode 100644 index 0000000000000..d3e86cca85aae --- /dev/null +++ b/blockchains/solana/assets/DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE/info.json @@ -0,0 +1,21 @@ +{ + "name": "jacky", + "type": "SPL", + "symbol": "jacky", + "decimals": 9, + "website": "https://jackysol.com/", + "description": "The cutest cat on Solana! Fair Moonshot launch, LP burnt, REAL community. Get ready for the next BIG Solana meme", + "explorer": "https://solscan.io/token/DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE", + "status": "active", + "id": "DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/jackysolmeme" + }, + { + "name": "telegram", + "url": "https://t.me/jackymeme" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE/logo.png b/blockchains/solana/assets/DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE/logo.png new file mode 100644 index 0000000000000..61df464b5b1b5 Binary files /dev/null and b/blockchains/solana/assets/DKnXmFGBcpYEnPsoHLrdj5cbZdEq9DV9z6bVfYrrDEBE/logo.png differ diff --git a/blockchains/solana/assets/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog/info.json b/blockchains/solana/assets/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog/info.json new file mode 100644 index 0000000000000..e4b809ee8452d --- /dev/null +++ b/blockchains/solana/assets/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog/info.json @@ -0,0 +1,21 @@ +{ + "name": "cok the cat", + "type": "SPL", + "symbol": "COK", + "decimals": 6, + "website": "https://catownkimono.com/", + "description": "$COK was born two days after its sibling $WIF. Both birthed by the same legendary DEV Patrick Bateman.", + "explorer": "https://solscan.io/token/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog", + "status": "active", + "id": "Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/catownkimono" + }, + { + "name": "telegram", + "url": "https://t.me/KimonoStaysOn" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog/logo.png b/blockchains/solana/assets/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog/logo.png new file mode 100644 index 0000000000000..5d701cec8a7e3 Binary files /dev/null and b/blockchains/solana/assets/Dnb9dLSXxAarXVexehzeH8W8nFmLMNJSuGoaddZSwtog/logo.png differ diff --git a/blockchains/solana/assets/DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7/info.json b/blockchains/solana/assets/DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7/info.json new file mode 100644 index 0000000000000..f6b7d76d02fa3 --- /dev/null +++ b/blockchains/solana/assets/DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7/info.json @@ -0,0 +1,17 @@ +{ + "name": "DRIFT", + "type": "SPL", + "symbol": "DRIFT", + "decimals": 6, + "website": "https://www.drift.foundation/", + "description": "Drift is a fully on-chain perpetual and spot DEX built on Solana.", + "explorer": "https://solscan.io/token/DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7", + "status": "active", + "id": "DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DriftProtocol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7/logo.png b/blockchains/solana/assets/DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7/logo.png new file mode 100644 index 0000000000000..ee3b087ebeb66 Binary files /dev/null and b/blockchains/solana/assets/DriFtupJYLTosbwoN8koMbEYSx54aFAVLddWsbksjwg7/logo.png differ diff --git a/blockchains/solana/assets/DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2/info.json b/blockchains/solana/assets/DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2/info.json new file mode 100644 index 0000000000000..87a55cb4c0f0e --- /dev/null +++ b/blockchains/solana/assets/DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2/info.json @@ -0,0 +1,25 @@ +{ + "name": "aura", + "type": "SPL", + "symbol": "aura", + "decimals": 6, + "website": "https://www.auramaxxing.xyz/", + "description": "get your aura up not your funny up", + "explorer": "https://solscan.io/token/DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2", + "status": "active", + "id": "DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/auracoinsolana" + }, + { + "name": "telegram", + "url": "https://t.me/auracoinsol" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/aura-on-sol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2/logo.png b/blockchains/solana/assets/DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2/logo.png new file mode 100644 index 0000000000000..1294831724850 Binary files /dev/null and b/blockchains/solana/assets/DtR4D9FtVoTX2569gaL837ZgrB6wNjj6tkmnX9Rdk9B2/logo.png differ diff --git a/blockchains/solana/assets/EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui/info.json b/blockchains/solana/assets/EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui/info.json new file mode 100644 index 0000000000000..f92514be8319a --- /dev/null +++ b/blockchains/solana/assets/EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui/info.json @@ -0,0 +1,21 @@ +{ + "name": "Pepewifhat", + "website": "https://pepewifhat.world/index.html", + "description": "its pepe wif a hat", + "explorer": "https://solscan.io/token/EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui", + "type": "SPL", + "symbol": "Pepewifhat", + "decimals": 6, + "status": "active", + "id": "EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/itspepewifhat" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/pepewifhat-3" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui/logo.png b/blockchains/solana/assets/EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui/logo.png new file mode 100644 index 0000000000000..a0eced5ba3956 Binary files /dev/null and b/blockchains/solana/assets/EAvKa9kGRMcQ44Eg3MPbXUP8ZEpfxgd5dToHBRF8m8ui/logo.png differ diff --git a/blockchains/solana/assets/EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH/info.json b/blockchains/solana/assets/EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH/info.json new file mode 100644 index 0000000000000..4f68c4b159787 --- /dev/null +++ b/blockchains/solana/assets/EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH/info.json @@ -0,0 +1,21 @@ +{ + "name": "elizabath whoren", + "type": "SPL", + "symbol": "whoren", + "decimals": 9, + "website": "https://elizabathwhoren.com", + "description": "Elizabath Whoren is building a Crypot Army to take ova de benks. She will tackle all de new printd maney and bring dem to Solami, for a welthy and free WebTree.", + "explorer": "https://solscan.io/token/EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH", + "status": "active", + "id": "EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/WhorenOnSol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/elizabath-whoren/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH/logo.png b/blockchains/solana/assets/EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH/logo.png new file mode 100644 index 0000000000000..19414ac8ad990 Binary files /dev/null and b/blockchains/solana/assets/EF23Avq2cTPnMVTfHacZ3SG5Z8misHmFA2gbt2rKqiYH/logo.png differ diff --git a/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/info.json b/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/info.json new file mode 100644 index 0000000000000..fbfda128ac56c --- /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 0000000000000..b7068fa56e178 Binary files /dev/null and b/blockchains/solana/assets/EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm/logo.png differ diff --git a/blockchains/solana/assets/ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT/info.json b/blockchains/solana/assets/ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT/info.json new file mode 100644 index 0000000000000..bfe5b8e298724 --- /dev/null +++ b/blockchains/solana/assets/ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT/info.json @@ -0,0 +1,17 @@ +{ + "name": "Abble", + "website": "https://abble.org/", + "description": "I want to put a ding in the memeverse — Stev Jabs", + "explorer": "https://solscan.io/token/ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT", + "type": "SPL", + "symbol": "AABL", + "decimals": 6, + "status": "active", + "id": "ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/abblecoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT/logo.png b/blockchains/solana/assets/ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT/logo.png new file mode 100644 index 0000000000000..39f585be8f985 Binary files /dev/null and b/blockchains/solana/assets/ENoD8J2J6wNHkcJkvVBkwq5JMiR1oNBfBZRkoHCQogyT/logo.png differ diff --git a/blockchains/solana/assets/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU/info.json b/blockchains/solana/assets/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU/info.json new file mode 100644 index 0000000000000..500327cbd972b --- /dev/null +++ b/blockchains/solana/assets/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU/info.json @@ -0,0 +1,17 @@ +{ + "name": "Gondola", + "type": "SPL", + "symbol": "GONDOLA", + "decimals": 9, + "website": "https://gondolacoin.xyz/", + "description": "#Gondola🦦, the cultural icon in high-waisted pants.", + "explorer": "https://solscan.io/token/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU", + "status": "active", + "id": "ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/GONDOLA_ONSOL" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU/logo.png b/blockchains/solana/assets/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU/logo.png new file mode 100644 index 0000000000000..cab5e44f0d5e1 Binary files /dev/null and b/blockchains/solana/assets/ERg4SSavMmM9nsmFWVwyRJZVCTCyLT2r9fgkQngbE4iU/logo.png differ diff --git a/blockchains/solana/assets/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy/info.json b/blockchains/solana/assets/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy/info.json new file mode 100644 index 0000000000000..8c2b3edc83ea4 --- /dev/null +++ b/blockchains/solana/assets/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy/info.json @@ -0,0 +1,17 @@ +{ + "name":"MOCHICAT", + "type":"SPL", + "symbol":"MOCHICAT", + "decimals": 9, + "website":"https://mochicatsol.club", + "description":"The community rallied together after the developer abandoned MOCHICAT, leaving it languishing with a market cap of just 5K.", + "explorer":"https://solscan.io/token/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy", + "status":"active", + "id":"EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/TokenMochiCat" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy/logo.png b/blockchains/solana/assets/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy/logo.png new file mode 100644 index 0000000000000..ead469826349d Binary files /dev/null and b/blockchains/solana/assets/EVDQN4P1YTTD1Y3eLBDBoALWnR4aMBC9y2xUYCrbGbuy/logo.png differ diff --git a/blockchains/solana/assets/EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni/info.json b/blockchains/solana/assets/EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni/info.json new file mode 100644 index 0000000000000..90f9cadb7b046 --- /dev/null +++ b/blockchains/solana/assets/EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni/info.json @@ -0,0 +1,17 @@ +{ + "name": "CATVAX", + "type": "SPL", + "symbol": "CATVAX", + "decimals": 9, + "website": "https://catvax.net", + "description": "In the heart of a sprawling desert, where the golden sands whisper secrets of the ancients to those who dare listen, a tale of resilience, discovery, and kingdom-building unfurls.", + "explorer": "https://solscan.io/token/EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni", + "id": "EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni", + "status": "active", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CATVAX_io" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni/logo.png b/blockchains/solana/assets/EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni/logo.png new file mode 100644 index 0000000000000..ed71c3cf92318 Binary files /dev/null and b/blockchains/solana/assets/EVDoPXkWNRMc7fQirg7emNdc17KNqsCyzVi4mWPmDvni/logo.png differ diff --git a/blockchains/solana/assets/EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z/info.json b/blockchains/solana/assets/EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z/info.json new file mode 100644 index 0000000000000..d40f85987fbcb --- /dev/null +++ b/blockchains/solana/assets/EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z/info.json @@ -0,0 +1,17 @@ +{ + "name": "Blekrok", + "website": "https://www.blekrok.com/", + "description": "Taking down a monopoly live on the Blockchain.", + "explorer": "https://solscan.io/token/EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z", + "type": "SPL", + "symbol": "BLEK", + "decimals": 5, + "status": "active", + "id": "EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/blekroksolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z/logo.png b/blockchains/solana/assets/EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z/logo.png new file mode 100644 index 0000000000000..0ebc39371c88c Binary files /dev/null and b/blockchains/solana/assets/EYaJJKb2VDZuYKEWf5TjngFRc43cMgttPuRtcJwQt35z/logo.png differ diff --git a/blockchains/solana/assets/Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS/info.json b/blockchains/solana/assets/Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS/info.json new file mode 100644 index 0000000000000..5342fdb20f794 --- /dev/null +++ b/blockchains/solana/assets/Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS/info.json @@ -0,0 +1,21 @@ +{ + "name": "Parrot USD", + "website": "https://runesbridge.xyz/", + "description": "The Parrot Protocol is a DeFi network built on Solana that will include the stablecoin PAI, a non-custodial lending market, and a margin trading vAMM.", + "explorer": "https://solscan.io/token/Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS", + "type": "SPL", + "symbol": "PAI", + "decimals": 6, + "status": "active", + "id": "Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/parrot-usd/" + }, + { + "name": "twitter", + "url": "https://twitter.com/gopartyparrot" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS/logo.png b/blockchains/solana/assets/Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS/logo.png new file mode 100644 index 0000000000000..d328385d51917 Binary files /dev/null and b/blockchains/solana/assets/Ea5SjE2Y6yvCeW5dYTn7PYMuW5ikXkvbGdcmSnXeaLjS/logo.png differ diff --git a/blockchains/solana/assets/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG/info.json b/blockchains/solana/assets/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG/info.json new file mode 100644 index 0000000000000..dfc8b951ea607 --- /dev/null +++ b/blockchains/solana/assets/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG/info.json @@ -0,0 +1,21 @@ +{ + "name": "KHABY", + "type": "SPL", + "symbol": "Khaby Lame", + "decimals": 6, + "website": "https://khabycoin.com/", + "description": "KHABY is The First Official Unofficial Memecoin!", + "explorer": "https://solscan.io/token/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG", + "status": "active", + "id": "EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/khabysolana" + }, + { + "name": "telegram", + "url": "https://t.me/khabysolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG/logo.png b/blockchains/solana/assets/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG/logo.png new file mode 100644 index 0000000000000..3969136c9a91f Binary files /dev/null and b/blockchains/solana/assets/EkpM1CqtDHayGBAFSjRryLA1BjGr36ST9GX84pocNzXG/logo.png differ diff --git a/blockchains/solana/assets/F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt/info.json b/blockchains/solana/assets/F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt/info.json new file mode 100644 index 0000000000000..c88946068bb2f --- /dev/null +++ b/blockchains/solana/assets/F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt/info.json @@ -0,0 +1,17 @@ +{ + "name": "upsidedowncat", + "type": "SPL", + "symbol": "USDCAT", + "decimals": 6, + "website": "https://www.upsidedowncat.xyz/", + "description": "In the symphony of collective thought, the mantra echoes: 'Repeg' Through the harmonious chorus of our shared vision, we sculpt the future.", + "explorer": "https://solscan.io/token/F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt", + "status": "active", + "id": "F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/upsidedowncat_" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt/logo.png b/blockchains/solana/assets/F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt/logo.png new file mode 100644 index 0000000000000..c0dbb3145a9c5 Binary files /dev/null and b/blockchains/solana/assets/F23fFqpRNsmWjuUrFpfM1pvoVvMSpLuN6hY978Y1JXLt/logo.png differ diff --git a/blockchains/solana/assets/F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k/info.json b/blockchains/solana/assets/F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k/info.json new file mode 100644 index 0000000000000..448b6fbe0f5a6 --- /dev/null +++ b/blockchains/solana/assets/F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shibwifhatcoin", + "type": "SPL", + "symbol": "SHIB", + "decimals": 9, + "website": "https://shibwifcoin.com/", + "description": "Are you ready to witness history repeat itself? Just like Shib took on Doge, but this time on Solana chain, we present to you Shibwifhat – the ultimate Dogwifhat killer!", + "explorer": "https://solscan.io/token/F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k", + "status": "active", + "id": "F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/shibwifcoin" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/Криптовалюты/shibwifhatcoin" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k/logo.png b/blockchains/solana/assets/F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k/logo.png new file mode 100644 index 0000000000000..625a40485d3bc Binary files /dev/null and b/blockchains/solana/assets/F6qoefQq4iCBLoNZ34RjEqHjHkD8vtmoRSdw9Nd55J1k/logo.png differ diff --git a/blockchains/solana/assets/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv/info.json b/blockchains/solana/assets/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv/info.json new file mode 100644 index 0000000000000..e3e5c4d7b917a --- /dev/null +++ b/blockchains/solana/assets/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv/info.json @@ -0,0 +1,21 @@ +{ + "name": "doland tremp", + "type": "SPL", + "symbol": "tremp", + "decimals": 9, + "website": "https://tremp.xyz/", + "description": "doland tremp is bellionaire pres of soluna. his jeb is te mäk bellions n bellions, te mäk sulono gret agen, n te destroy joe boiden.", + "explorer": "https://solscan.io/token/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv", + "status": "active", + "id": "FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dolandtremp_sol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/doland-tremp/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv/logo.png b/blockchains/solana/assets/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv/logo.png new file mode 100644 index 0000000000000..5570fbd4afcd3 Binary files /dev/null and b/blockchains/solana/assets/FU1q8vJpZNUrmqsciSjp8bAKKidGsLmouB8CBdf8TKQv/logo.png differ diff --git a/blockchains/solana/assets/FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu/info.json b/blockchains/solana/assets/FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu/info.json new file mode 100644 index 0000000000000..71f18ac9dc3d0 --- /dev/null +++ b/blockchains/solana/assets/FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu/info.json @@ -0,0 +1,21 @@ +{ + "name": "walter", + "website": "https://walteronsolana.com/", + "description": "Walter (WALTER) is a community-driven memecoin that emphasizes decentralization and collective governance.", + "explorer": "https://solscan.io/token/FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu", + "type": "SPL", + "symbol": "WALTER", + "decimals": 6, + "status": "active", + "id": "FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WalterCTO" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/walter-dog-solana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu/logo.png b/blockchains/solana/assets/FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu/logo.png new file mode 100644 index 0000000000000..3f46f3a0ed985 Binary files /dev/null and b/blockchains/solana/assets/FV56CmR7fhEyPkymKfmviKV48uPo51ti9kAxssQqTDLu/logo.png differ diff --git a/blockchains/solana/assets/FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX/info.json b/blockchains/solana/assets/FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX/info.json new file mode 100644 index 0000000000000..7ef72a5050e65 --- /dev/null +++ b/blockchains/solana/assets/FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX/info.json @@ -0,0 +1,21 @@ +{ + "name": "monkeyhaircut", + "website": "https://monkeyhaircut.com/", + "description": "it's literally a monkey getting a haircut.", + "explorer": "https://solscan.io/token/FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX", + "type": "SPL", + "symbol": "monk", + "decimals": 6, + "status": "active", + "id": "FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/monkhairsol" + }, + { + "name": "telegram", + "url": "https://t.me/monkeyhaircut" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX/logo.png b/blockchains/solana/assets/FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX/logo.png new file mode 100644 index 0000000000000..8ea972612dd3e Binary files /dev/null and b/blockchains/solana/assets/FYa25XnBsXQXAdTnsyKBKd5gZ1VZhChBRF57CqfRxJZX/logo.png differ diff --git a/blockchains/solana/assets/Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw/info.json b/blockchains/solana/assets/Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw/info.json new file mode 100644 index 0000000000000..43228a3b801db --- /dev/null +++ b/blockchains/solana/assets/Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw/info.json @@ -0,0 +1,21 @@ +{ + "name": "LandWolf", + "type": "SPL", + "symbol": "WOLF", + "decimals": 8, + "website": "https://thereallandwolf.com/", + "description": "$WOLF is a degenerate character from Matt Furie’s Boy’s Club comic. He loves to eat cold pizza, smoke weed, and snort green candles, and he deserves to be on the most degenerate chain, Solana.", + "explorer": "https://solscan.io/token/Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw", + "status": "active", + "id": "Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/TheBoysClubWolf" + }, + { + "name": "telegram", + "url": "https://t.me/TheRealLandWolf" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw/logo.png b/blockchains/solana/assets/Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw/logo.png new file mode 100644 index 0000000000000..4aff4a4c1e703 Binary files /dev/null and b/blockchains/solana/assets/Faf89929Ni9fbg4gmVZTca7eW6NFg877Jqn6MizT3Gvw/logo.png differ diff --git a/blockchains/solana/assets/Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP/info.json b/blockchains/solana/assets/Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP/info.json new file mode 100644 index 0000000000000..5e67d2a464e34 --- /dev/null +++ b/blockchains/solana/assets/Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP/info.json @@ -0,0 +1,17 @@ +{ + "name": "HARAMBE", + "website": "https://www.harambeonsol.com/", + "description": "Harambe Coin: Unleashing the Power of Memes on Solana", + "explorer": "https://solscan.io/token/Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP", + "type": "SPL", + "symbol": "HARAMBE", + "decimals": 9, + "status": "active", + "id": "Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/harambeonsolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP/logo.png b/blockchains/solana/assets/Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP/logo.png new file mode 100644 index 0000000000000..ab6ff48dc1bf3 Binary files /dev/null and b/blockchains/solana/assets/Fch1oixTPri8zxBnmdCEADoJW2toyFHxqDZacQkwdvSP/logo.png differ diff --git a/blockchains/solana/assets/FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW/info.json b/blockchains/solana/assets/FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW/info.json new file mode 100644 index 0000000000000..dd9684a432a71 --- /dev/null +++ b/blockchains/solana/assets/FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW/info.json @@ -0,0 +1,17 @@ +{ + "name": "KOALA AI", + "type": "SPL", + "symbol": "KOKO", + "decimals": 6, + "website": "https://www.koalaai.vip/", + "description": "KOALA AI brings to the Solana blockchain $KOKO, a meme token inspired by Pepe the Frog, designed to invigorate the space with innovative community engagement and liquidity solutions.", + "explorer": "https://solscan.io/token/FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW", + "status": "active", + "id": "FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/KOALAAIVIP" + } + ] +} diff --git a/blockchains/solana/assets/FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW/logo.png b/blockchains/solana/assets/FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW/logo.png new file mode 100644 index 0000000000000..a1cf9ae688b24 Binary files /dev/null and b/blockchains/solana/assets/FsA54yL49WKs7rWoGv9sUcbSGWCWV756jTD349e6H2yW/logo.png differ diff --git a/blockchains/solana/assets/FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump/info.json b/blockchains/solana/assets/FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump/info.json new file mode 100644 index 0000000000000..a5630e77db4f9 --- /dev/null +++ b/blockchains/solana/assets/FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Mongy", + "website": "https://www.mongysol.com/", + "description": "$MONGY mainstream banana eating cat monkey meme", + "explorer": "https://solscan.io/token/FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump", + "type": "SPL", + "symbol": "MONGY", + "decimals": 6, + "status": "active", + "id": "FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump", + "links": [ + { + "name": "telegram", + "url": "https://t.me/mongysol" + }, + { + "name": "twitter", + "url": "https://twitter.com/MongySol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump/logo.png b/blockchains/solana/assets/FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump/logo.png new file mode 100644 index 0000000000000..8b4ffb04d3668 Binary files /dev/null and b/blockchains/solana/assets/FsBPYiGZ4bhUxVSPP7XPJYfTPm5PsLJc2WGZaFaDpump/logo.png differ diff --git a/blockchains/solana/assets/G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63/info.json b/blockchains/solana/assets/G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63/info.json new file mode 100644 index 0000000000000..8d22660b35eaf --- /dev/null +++ b/blockchains/solana/assets/G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63/info.json @@ -0,0 +1,21 @@ +{ + "name": "soulja coin", + "type": "SPL", + "symbol": "sboy", + "decimals": 6, + "website": "https://sboysolana.xyz/", + "description": "$SBOY Is a community driven token that’s focused on highlighting the infamous Soulja Boy.", + "explorer": "https://solscan.io/token/G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63", + "status": "active", + "id": "G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/souljaboy" + }, + { + "name": "telegram", + "url": "https://t.me/sboyonsolana" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63/logo.png b/blockchains/solana/assets/G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63/logo.png new file mode 100644 index 0000000000000..54011d4a144d8 Binary files /dev/null and b/blockchains/solana/assets/G3ukjeHBrDJ1zUFr6KandnW4bPcjmvK3qL2uATRb3F63/logo.png differ diff --git a/blockchains/solana/assets/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/info.json b/blockchains/solana/assets/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/info.json new file mode 100644 index 0000000000000..11782478302e7 --- /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 0000000000000..c2251af7377fc Binary files /dev/null and b/blockchains/solana/assets/GDfnEsia2WLAW5t8yx2X5j2mkfA74i5kwGdDuZHt7XmG/logo.png differ diff --git a/blockchains/solana/assets/GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB/info.json b/blockchains/solana/assets/GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB/info.json new file mode 100644 index 0000000000000..a0ba989ae7e99 --- /dev/null +++ b/blockchains/solana/assets/GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB/info.json @@ -0,0 +1,21 @@ +{ + "name": "JungleDoge", + "website": "https://jungledoge.com/", + "description": "Free, Brutal, Wiggled. DA DOGE LIVES IN JUNGLE. DA DOGE BLOWS DARTS.", + "explorer": "https://solscan.io/token/GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB", + "type": "SPL", + "symbol": "JUNGLE", + "decimals": 8, + "status": "active", + "id": "GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/jungledoge/" + }, + { + "name": "twitter", + "url": "https://twitter.com/jungledogeonsol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB/logo.png b/blockchains/solana/assets/GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB/logo.png new file mode 100644 index 0000000000000..28868bb374ca9 Binary files /dev/null and b/blockchains/solana/assets/GEGQeMTbQpn7fKDe6fjH9iBUdB6XVdEk9KabZbGpboGB/logo.png differ diff --git a/blockchains/solana/assets/GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm/info.json b/blockchains/solana/assets/GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm/info.json new file mode 100644 index 0000000000000..cb042cbf6f192 --- /dev/null +++ b/blockchains/solana/assets/GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm/info.json @@ -0,0 +1,21 @@ +{ + "name": "Chedda", + "website": "https://www.chedda-sol.com/", + "description": "Chedda Sol is the relaunch of the original Chedda Token, that started the 'cheese meta' on the Ethereum Network.", + "explorer": "https://solscan.io/token/GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm", + "type": "SPL", + "symbol": "Chedda", + "decimals": 5, + "status": "active", + "id": "GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/cheddasolana" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/chedda-2" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm/logo.png b/blockchains/solana/assets/GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm/logo.png new file mode 100644 index 0000000000000..b3d219cd83a30 Binary files /dev/null and b/blockchains/solana/assets/GLiB37nqnPDghvVHFS9CJ21c5BDUQxSJS3BXBWduVoPm/logo.png differ diff --git a/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/info.json b/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/info.json new file mode 100644 index 0000000000000..21857e8ab1872 --- /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 0000000000000..9786f80a38732 Binary files /dev/null and b/blockchains/solana/assets/GTH3wG3NErjwcf7VGCoXEXkgXSHvYhx5gtATeeM5JAS1/logo.png differ diff --git a/blockchains/solana/assets/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB/info.json b/blockchains/solana/assets/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB/info.json new file mode 100644 index 0000000000000..caa11df11a9a5 --- /dev/null +++ b/blockchains/solana/assets/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB/info.json @@ -0,0 +1,21 @@ +{ + "name": "Fuck Eth", + "website": "https://www.fketh.com", + "description": "Fuck Eth is a community movement poking fun at the ethereum blockchain", + "explorer": "https://solscan.io/token/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB", + "type": "SPL", + "symbol": "FKETH", + "decimals": 9, + "status": "active", + "id": "GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/FKETH2024" + }, + { + "name": "telegram", + "url": "https://t.me/FKETH2023" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB/logo.png b/blockchains/solana/assets/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB/logo.png new file mode 100644 index 0000000000000..d48053558c748 Binary files /dev/null and b/blockchains/solana/assets/GWkA9fwAtJDb8BfBAabRY3w7x4jQrboLZd9iWH1v7yuB/logo.png differ diff --git a/blockchains/solana/assets/GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump/info.json b/blockchains/solana/assets/GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump/info.json new file mode 100644 index 0000000000000..0f2c9693df17d --- /dev/null +++ b/blockchains/solana/assets/GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump/info.json @@ -0,0 +1,21 @@ +{ + "name": "wrapped dog", + "type": "SPL", + "symbol": "wDOG", + "decimals": 6, + "website": "https://wdog.fun/", + "description": "wDOG is a fully decentralized meme, originating and gaining traction entirely on pump.fun without any marketing push from influencers or key opinion leaders. Much like the early days of Bitcoin, wDOG's popularity is fueled by organic community engage...", + "explorer": "https://solscan.io/token/GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump", + "status": "active", + "id": "GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/wdogsoldier" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-dog/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump/logo.png b/blockchains/solana/assets/GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump/logo.png new file mode 100644 index 0000000000000..7dcfc4bfc751d Binary files /dev/null and b/blockchains/solana/assets/GYKmdfcUmZVrqfcH1g579BGjuzSRijj3LBuwv79rpump/logo.png differ diff --git a/blockchains/solana/assets/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN/info.json b/blockchains/solana/assets/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN/info.json new file mode 100644 index 0000000000000..2fba3f885d24f --- /dev/null +++ b/blockchains/solana/assets/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN/info.json @@ -0,0 +1,21 @@ +{ + "name": "Sol Beats", + "website": "https://solbeats.org/", + "description": "Tokenized Music Assets (RWA) - AI Tools for Music Data Get Access To Music Catalogs Including Artists & Celebrities And Earn 10% APY", + "explorer": "https://solscan.io/token/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN", + "type": "SPL", + "symbol": "BEATS", + "decimals": 9, + "status": "active", + "id": "GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Solana_Beats" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/sol-beats" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN/logo.png b/blockchains/solana/assets/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN/logo.png new file mode 100644 index 0000000000000..081605ea2fac2 Binary files /dev/null and b/blockchains/solana/assets/GbXdCbkSYot4VUDSWD7cduxhQ5nSYXWC3wZtv1Jov2mN/logo.png differ diff --git a/blockchains/solana/assets/GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump/info.json b/blockchains/solana/assets/GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump/info.json new file mode 100644 index 0000000000000..2e69526fa0061 --- /dev/null +++ b/blockchains/solana/assets/GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump/info.json @@ -0,0 +1,21 @@ +{ + "name": "Smoking Chicken Fish", + "website": "https://smokingchickenfish.xyz/", + "description": "The Smoking Chicken Fish is a truly unique and innovative cryptocurrency project that stands out in the crowded digital currency landscape. This project is not just another blockchain-based initiative", + "explorer": "https://solscan.io/token/GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump", + "type": "SPL", + "symbol": "SCF", + "decimals": 6, + "status": "active", + "id": "GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump", + "links": [ + { + "name": "telegram", + "url": "https://t.me/smokingchickenfish" + }, + { + "name": "twitter", + "url": "https://twitter.com/churchofthescf" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump/logo.png b/blockchains/solana/assets/GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump/logo.png new file mode 100644 index 0000000000000..2ae598d3868c3 Binary files /dev/null and b/blockchains/solana/assets/GiG7Hr61RVm4CSUxJmgiCoySFQtdiwxtqf64MsRppump/logo.png differ diff --git a/blockchains/solana/assets/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f/info.json b/blockchains/solana/assets/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f/info.json new file mode 100644 index 0000000000000..c62ad08e63798 --- /dev/null +++ b/blockchains/solana/assets/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f/info.json @@ -0,0 +1,21 @@ +{ + "name": "Ginnan the Cat", + "type": "SPL", + "symbol": "GINNAN", + "decimals": 6, + "website": "https://www.ginnan.com/", + "description": "Ginnan the cat is Doge's famous cat brother. The project is a memecoin built around the cat's demeanor that's very similar to who Doge is, but with a feline twist to it. We aim at building a vibrant community around core values such as trust", + "explorer": "https://solscan.io/token/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f", + "status": "active", + "id": "GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Ginnanthecat" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/ginnan-the-cat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f/logo.png b/blockchains/solana/assets/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f/logo.png new file mode 100644 index 0000000000000..1ca43abebcf6b Binary files /dev/null and b/blockchains/solana/assets/GinNabffZL4fUj9Vactxha74GDAW8kDPGaHqMtMzps2f/logo.png differ diff --git a/blockchains/solana/assets/GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn/info.json b/blockchains/solana/assets/GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn/info.json new file mode 100644 index 0000000000000..c1b38a1427fc7 --- /dev/null +++ b/blockchains/solana/assets/GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn/info.json @@ -0,0 +1,17 @@ +{ + "name": "nubcat", + "website": "https://nubcat.xyz/", + "description": "$NUB is a meme coin with no intrinsic value or expectation of financial return.", + "explorer": "https://solscan.io/token/GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn", + "type": "SPL", + "symbol": "nub", + "decimals": 9, + "status": "active", + "id": "GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/sillynubcat" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn/logo.png b/blockchains/solana/assets/GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn/logo.png new file mode 100644 index 0000000000000..af32eee7a9732 Binary files /dev/null and b/blockchains/solana/assets/GtDZKAqvMZMnti46ZewMiXCa4oXF4bZxwQPoKzXPFxZn/logo.png differ diff --git a/blockchains/solana/assets/H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw/info.json b/blockchains/solana/assets/H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw/info.json new file mode 100644 index 0000000000000..e016b6092a25d --- /dev/null +++ b/blockchains/solana/assets/H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw/info.json @@ -0,0 +1,21 @@ +{ + "name": "GUMMY", + "type": "SPL", + "symbol": "GUMMY", + "decimals": 9, + "website": "https://gummyonsol.com/", + "description": "Say hello, to $Gummy, a 420 weed gummy bear, ready to take the solana ecosystem by storm.", + "explorer": "https://solscan.io/token/H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw", + "status": "active", + "id": "H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/gummyonsolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/gummy/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw/logo.png b/blockchains/solana/assets/H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw/logo.png new file mode 100644 index 0000000000000..6730ff02bb00f Binary files /dev/null and b/blockchains/solana/assets/H7bTHGb5Cvo5fGe5jBDNDPUv8KykQnzyZA3qZ8sH7yxw/logo.png differ diff --git a/blockchains/solana/assets/HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9/info.json b/blockchains/solana/assets/HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9/info.json new file mode 100644 index 0000000000000..a5f30ee5b5d20 --- /dev/null +++ b/blockchains/solana/assets/HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9/info.json @@ -0,0 +1,17 @@ +{ + "name": "Duko", + "website": "https://dukocoin.com/", + "description": "$DUKO is Elon's cutest pet on Solana", + "explorer": "https://solscan.io/token/HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9", + "type": "SPL", + "symbol": "DUKO", + "decimals": 6, + "status": "active", + "id": "HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/dukocoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9/logo.png b/blockchains/solana/assets/HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9/logo.png new file mode 100644 index 0000000000000..6a90062e7fc51 Binary files /dev/null and b/blockchains/solana/assets/HLptm5e6rTgh4EKgDpYFrnRHbjpkMyVdEeREEa2G7rf9/logo.png differ diff --git a/blockchains/solana/assets/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh/info.json b/blockchains/solana/assets/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh/info.json new file mode 100644 index 0000000000000..e9c257caa2677 --- /dev/null +++ b/blockchains/solana/assets/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh/info.json @@ -0,0 +1,17 @@ +{ + "name": "Slothana", + "type": "SPL", + "symbol": "SLOTH", + "decimals": 6, + "website": "https://slothana.io/en", + "description": "Slothana - Slovenly on Sol", + "explorer": "https://solscan.io/token/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh", + "status": "active", + "id": "HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SlothanaCoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh/logo.png b/blockchains/solana/assets/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh/logo.png new file mode 100644 index 0000000000000..63711603d4de8 Binary files /dev/null and b/blockchains/solana/assets/HQ7DaoiUxzC2K1Dr7KXRHccNtXvEYgNvoUextXe8dmBh/logo.png differ diff --git a/blockchains/solana/assets/HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP/info.json b/blockchains/solana/assets/HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP/info.json new file mode 100644 index 0000000000000..de7006e8a5e50 --- /dev/null +++ b/blockchains/solana/assets/HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP/info.json @@ -0,0 +1,21 @@ +{ + "name": "TrumpCoin", + "website": "https://truthsocial.com/@DJTtoken", + "description": "The Official coin of Donald J Trump", + "explorer": "https://solscan.io/token/HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP", + "type": "SPL", + "symbol": "DJT", + "decimals": 9, + "status": "active", + "id": "HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/realDonaldTrump" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/trumpcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP/logo.png b/blockchains/solana/assets/HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP/logo.png new file mode 100644 index 0000000000000..ce5487cc48cfd Binary files /dev/null and b/blockchains/solana/assets/HRw8mqK8N3ASKFKJGMJpy4FodwR3GKvCFKPDQNqUNuEP/logo.png differ diff --git a/blockchains/solana/assets/HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk/info.json b/blockchains/solana/assets/HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk/info.json new file mode 100644 index 0000000000000..f4c8b70933ec4 --- /dev/null +++ b/blockchains/solana/assets/HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk/info.json @@ -0,0 +1,21 @@ +{ + "name": "Book of Meow", + "website": "https://www.bomeow.com", + "description": "Introducing the Book of Meow ($BOMEOW), a Solana-based meme token that is the purr-fect variation of different mews across the entire meow-niverse.", + "explorer": "https://solscan.io/token/HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk", + "type": "SPL", + "symbol": "BOMEOW", + "decimals": 9, + "status": "active", + "id": "HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bomeow_solana" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/book-of-meow" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk/logo.png b/blockchains/solana/assets/HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk/logo.png new file mode 100644 index 0000000000000..bd588aedc47bf Binary files /dev/null and b/blockchains/solana/assets/HXUQvWPWs7BJgzTeX3PyHb8fvFmxvi9Q9hHYzcMVxVbk/logo.png differ diff --git a/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/info.json b/blockchains/solana/assets/HZ1JovNiVvGrGNiiYvEozEVgZ58xaU3RKwX8eACQBCt3/info.json new file mode 100644 index 0000000000000..8dca2c6ee7b2a --- /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 0000000000000..4f9dcebfeb817 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 8e97855518bfd..276a83baae8dd 100644 Binary files a/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png and b/blockchains/solana/assets/HZNpqL7RT9gxf9eWoWsWzC5DfjzQ41XTQgEA7p3VzaaD/logo.png differ diff --git a/blockchains/solana/assets/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1/info.json b/blockchains/solana/assets/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1/info.json new file mode 100644 index 0000000000000..a135119259cd9 --- /dev/null +++ b/blockchains/solana/assets/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1/info.json @@ -0,0 +1,21 @@ +{ + "name": "MAGA (Wormhole)", + "type": "SPL", + "symbol": "TRUMP", + "website": "https://magamemecoin.com/", + "explorer": "https://solscan.io/token/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1", + "decimals": 8, + "description": "MAGA Movement on the Blockchain.", + "status": "active", + "id": "HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1", + "links": [ + { + "name": "telegram", + "url": "https://t.me/magamemecoin" + }, + { + "name": "twitter", + "url": "https://twitter.com/magaonsolanaTW" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1/logo.png b/blockchains/solana/assets/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1/logo.png new file mode 100644 index 0000000000000..c66f357e828a2 Binary files /dev/null and b/blockchains/solana/assets/HaP8r3ksG76PhQLTqR8FYBeNiQpejcFbQmiHbg787Ut1/logo.png differ diff --git a/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/info.json b/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/info.json new file mode 100644 index 0000000000000..a27665b08f51a --- /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 0000000000000..fabeb382dad63 Binary files /dev/null and b/blockchains/solana/assets/HhJpBhRRn4g56VsyLuT8DL5Bv31HkXqsrahTTUCZeZg4/logo.png differ diff --git a/blockchains/solana/assets/HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ/info.json b/blockchains/solana/assets/HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ/info.json new file mode 100644 index 0000000000000..3f6620de5f458 --- /dev/null +++ b/blockchains/solana/assets/HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ/info.json @@ -0,0 +1,21 @@ +{ + "name": "Time Traveler", + "website": "https://www.barrontrvmp.com/", + "description": "$BARRON Time Traveler is a CTO driven by Praetorians loyal to Barron Trvmp. They have vowed to follow him and meme their way into orbit.", + "explorer": "https://solscan.io/token/HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ", + "type": "SPL", + "symbol": "Barron", + "decimals": 9, + "status": "active", + "id": "HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Barronsolana" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/time-traveler/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ/logo.png b/blockchains/solana/assets/HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ/logo.png new file mode 100644 index 0000000000000..746662302ce7f Binary files /dev/null and b/blockchains/solana/assets/HmAgiwjjP9CXqK5wQNsHKtjAt2CH3Kv8Q7xH5kGL2nqZ/logo.png differ diff --git a/blockchains/solana/assets/Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump/info.json b/blockchains/solana/assets/Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump/info.json new file mode 100644 index 0000000000000..45542e65ddd19 --- /dev/null +++ b/blockchains/solana/assets/Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump/info.json @@ -0,0 +1,21 @@ +{ + "name": "JOE BYEden", + "type": "SPL", + "symbol": "BYEden", + "decimals": 6, + "website": "https://www.byeden.guru/", + "description": "Joe $BYEden is going into retirement, we want to thank 46th president of the USA for all the wonderful things he didn't do.", + "explorer": "https://solscan.io/token/Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump", + "status": "active", + "id": "Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/BYEden_Sol" + }, + { + "name": "telegram", + "url": "https://t.me/JOEbyeden" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump/logo.png b/blockchains/solana/assets/Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump/logo.png new file mode 100644 index 0000000000000..3327ee8aeff13 Binary files /dev/null and b/blockchains/solana/assets/Hq5rroHytWZp4C6EAmT7qKStRJgSASYojEDhcz8Ypump/logo.png differ diff --git a/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/info.json b/blockchains/solana/assets/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn/info.json new file mode 100644 index 0000000000000..40a8e4940977e --- /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 0000000000000..cfc8dc6ad1740 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 0000000000000..fc5e9267be8a8 --- /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 0000000000000..793364c845447 Binary files /dev/null and b/blockchains/solana/assets/JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN/logo.png differ diff --git a/blockchains/solana/assets/KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS/info.json b/blockchains/solana/assets/KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS/info.json new file mode 100644 index 0000000000000..0ba2edcf3e4e0 --- /dev/null +++ b/blockchains/solana/assets/KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS/info.json @@ -0,0 +1,21 @@ +{ + "name": "Kamino", + "type": "SPL", + "symbol": "KMNO", + "decimals": 6, + "website": "https://app.kamino.finance/", + "description": "Kamino Finance was originally created to offer users the easiest possible way of providing liquidity and earning yield on-chain.", + "explorer": "https://solscan.io/token/KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS", + "status": "active", + "id": "KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/KaminoFinancen" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kamino-finance/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS/logo.png b/blockchains/solana/assets/KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS/logo.png new file mode 100644 index 0000000000000..5964a559e4348 Binary files /dev/null and b/blockchains/solana/assets/KMNo3nJsBXfcpJTVhZcXLW7RmTwTt4GVFE7suUBo9sS/logo.png differ diff --git a/blockchains/solana/assets/MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5/info.json b/blockchains/solana/assets/MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5/info.json new file mode 100644 index 0000000000000..11946a8e3ef7d --- /dev/null +++ b/blockchains/solana/assets/MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5/info.json @@ -0,0 +1,21 @@ +{ + "name": "cat in a dogs world", + "website": "https://mew.xyz", + "description": "Mew is a cat in a dogs world out to save the world from other dog coins.", + "explorer": "https://solscan.io/token/MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5", + "type": "SPL", + "symbol": "MEW", + "decimals": 5, + "status": "active", + "id": "MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ClearpoolFin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/clearpool/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5/logo.png b/blockchains/solana/assets/MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5/logo.png new file mode 100644 index 0000000000000..ed46037081c0a Binary files /dev/null and b/blockchains/solana/assets/MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5/logo.png differ diff --git a/blockchains/solana/assets/PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg/info.json b/blockchains/solana/assets/PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg/info.json new file mode 100644 index 0000000000000..3bb8625c5e6c0 --- /dev/null +++ b/blockchains/solana/assets/PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg/info.json @@ -0,0 +1,17 @@ +{ + "name": "PUPS", + "website": "https://www.pupstoken.com", + "description": "Pup is the first memecoin on Bitcoin", + "explorer": "https://solscan.io/token/PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg", + "type": "SPL", + "symbol": "PUPS", + "decimals": 9, + "status": "active", + "id": "PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/pupstoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg/logo.png b/blockchains/solana/assets/PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg/logo.png new file mode 100644 index 0000000000000..08aee0d76ba25 Binary files /dev/null and b/blockchains/solana/assets/PUPS8ZgJ5po4UmNDfqtDMCPP6M1KP3EEzG9Zufcwzrg/logo.png differ diff --git a/blockchains/solana/assets/RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL/info.json b/blockchains/solana/assets/RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL/info.json new file mode 100644 index 0000000000000..d6f7567605e8f --- /dev/null +++ b/blockchains/solana/assets/RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL/info.json @@ -0,0 +1,17 @@ +{ + "name": "Epep", + "website": "https://www.epepcoin.com/", + "description": "It all started with a small Epep and a dream, one day while perched on his lili pad his rod caught a snag, what was it he thought to himself…", + "explorer": "https://solscan.io/token/RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL", + "type": "SPL", + "symbol": "EPEP", + "decimals": 8, + "status": "active", + "id": "RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/EpepOnSol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL/logo.png b/blockchains/solana/assets/RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL/logo.png new file mode 100644 index 0000000000000..b58bd97567653 Binary files /dev/null and b/blockchains/solana/assets/RUpbmGF6p42AAeN1QvhFReZejQry1cLkE1PUYFVVpnL/logo.png differ diff --git a/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/info.json b/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/info.json new file mode 100644 index 0000000000000..81a224b2f4b28 --- /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 0000000000000..afc437a4388de Binary files /dev/null and b/blockchains/solana/assets/SHDWyBxihqiCj6YekG2GUr7wqKLeLAMK1gHZck9pL6y/logo.png differ diff --git a/blockchains/solana/assets/SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn/info.json b/blockchains/solana/assets/SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn/info.json new file mode 100644 index 0000000000000..bb2d53a1fb2ca --- /dev/null +++ b/blockchains/solana/assets/SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn/info.json @@ -0,0 +1,21 @@ +{ + "name": "SolSnap", + "website": "https://solsnap.io/", + "description": "The $SNAP token is at the core of this entire operation. Used to power both the the SolSnap operations and our community.", + "explorer": "https://solscan.io/token/SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn", + "type": "SPL", + "symbol": "SNAP", + "decimals": 6, + "status": "active", + "id": "SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/SolSnap_" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/solsnap" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn/logo.png b/blockchains/solana/assets/SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn/logo.png new file mode 100644 index 0000000000000..e92f4421c6c4e Binary files /dev/null and b/blockchains/solana/assets/SNApmcWQqj3Ny2YFkQmkELQnNgaXRu6KmnYSPiFZcLn/logo.png differ diff --git a/blockchains/solana/assets/VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r/info.json b/blockchains/solana/assets/VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r/info.json new file mode 100644 index 0000000000000..077d01a61a983 --- /dev/null +++ b/blockchains/solana/assets/VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r/info.json @@ -0,0 +1,21 @@ +{ + "name": "BOOK OF BILLIONAIRES", + "website": "https://bobecoin.com/", + "description": "Book of Billionaires - $BOBE Only future billionaires will scroll down. Are you one of them? Missed out on $BOME? Buckle up, because $BOBE is the VIP pass to the world where only the rich—or those destined to be—dare to meme.", + "explorer": "https://solscan.io/token/VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r", + "type": "SPL", + "symbol": "BOBE", + "decimals": 9, + "status": "active", + "id": "VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/bookofbilliesol" + }, + { + "name": "telegram", + "url": "https://t.me/BOBECOINCOMMUNITY" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r/logo.png b/blockchains/solana/assets/VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r/logo.png new file mode 100644 index 0000000000000..038da447c7b28 Binary files /dev/null and b/blockchains/solana/assets/VvgeRQNHRHdYubKC9K2GN567LXTzSVcB7mpu7b1VF4r/logo.png differ diff --git a/blockchains/solana/assets/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk/info.json b/blockchains/solana/assets/WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk/info.json new file mode 100644 index 0000000000000..13d679a730cd5 --- /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 0000000000000..d38d3505d841d 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 0000000000000..b6f4e3bfe3af9 --- /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 0000000000000..3660c0b579cd0 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 0000000000000..286d0fd1ee906 --- /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 0000000000000..993296affee73 Binary files /dev/null and b/blockchains/solana/assets/hntyVP6YFm1Hg25TN9WGLqM12b8TQmcknKrdu1oxWux/logo.png differ diff --git a/blockchains/solana/assets/inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w/info.json b/blockchains/solana/assets/inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w/info.json new file mode 100644 index 0000000000000..d4741aca69e17 --- /dev/null +++ b/blockchains/solana/assets/inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w/info.json @@ -0,0 +1,21 @@ +{ + "name": "1INTRO", + "website": "https://www.1intro.com/", + "description": "All-in-1 Liquidity Nexus on Solana, powered by AI", + "explorer": "https://solscan.io/token/inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w", + "type": "SPL", + "symbol": "INTRO", + "decimals": 9, + "status": "active", + "id": "inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/1intro" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/1intro/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w/logo.png b/blockchains/solana/assets/inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w/logo.png new file mode 100644 index 0000000000000..966f39c8de349 Binary files /dev/null and b/blockchains/solana/assets/inTCqHJaLAETUxvRZ2kC45G2sThq9BFWVimfaQw7t6w/logo.png differ diff --git a/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/info.json b/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/info.json new file mode 100644 index 0000000000000..a051e4c05e304 --- /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 0000000000000..3edcdfe7c00e8 Binary files /dev/null and b/blockchains/solana/assets/jtojtomepa8beP8AuQc6eXt5FriJwfFMwQx2v2f9mCL/logo.png differ diff --git a/blockchains/solana/assets/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv/info.json b/blockchains/solana/assets/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv/info.json new file mode 100644 index 0000000000000..3d1da13c86004 --- /dev/null +++ b/blockchains/solana/assets/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv/info.json @@ -0,0 +1,21 @@ +{ + "name": "MAD", + "type": "SPL", + "symbol": "MAD", + "decimals": 6, + "website": "https://www.madcoin.vip/", + "description": "$MAD - The Wild Degen who hustles hard and parties harder 😈 Join the #MemesAfterDark Degen Movement!", + "explorer": "https://solscan.io/token/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv", + "status": "active", + "id": "madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/madcoinvip" + }, + { + "name": "telegram", + "url": "https://t.me/MadCoinVip" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv/logo.png b/blockchains/solana/assets/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv/logo.png new file mode 100644 index 0000000000000..46c5e63055423 Binary files /dev/null and b/blockchains/solana/assets/madHpjRn6bd8t78Rsy7NuSuNwWa2HU8ByPobZprHbHv/logo.png differ diff --git a/blockchains/solana/assets/mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn/info.json b/blockchains/solana/assets/mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn/info.json new file mode 100644 index 0000000000000..bfcf105bb8192 --- /dev/null +++ b/blockchains/solana/assets/mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn/info.json @@ -0,0 +1,17 @@ +{ + "name": "Monkey Pox", + "website": "https://www.monkeypoxtoken.com/", + "description": "POX is an SPL-404 token on Solana, blending memecoin and NFT cultures into one", + "explorer": "https://solscan.io/token/mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn", + "type": "SPL", + "symbol": "POX", + "decimals": 9, + "status": "active", + "id": "mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/monkeypoxsol" + } + ] +} diff --git a/blockchains/solana/assets/mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn/logo.png b/blockchains/solana/assets/mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn/logo.png new file mode 100644 index 0000000000000..7689c51f36acc Binary files /dev/null and b/blockchains/solana/assets/mpoxP5wyoR3eRW8L9bZjGPFtCsmX8WcqU5BHxFW1xkn/logo.png differ diff --git a/blockchains/solana/assets/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG/info.json b/blockchains/solana/assets/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG/info.json new file mode 100644 index 0000000000000..3f88129e33dab --- /dev/null +++ b/blockchains/solana/assets/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG/info.json @@ -0,0 +1,17 @@ +{ + "name":"Ligma Node", + "type":"SPL", + "symbol":"LIGMA", + "decimals": 6, + "website":"https://ligmanode.com", + "description":"The fastest private nodes on Solana.", + "explorer":"https://solscan.io/token/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG", + "status":"active", + "id":"node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG", + "links":[ + { + "name":"twitter", + "url":"https://twitter.com/ligmanode" + } + ] + } \ No newline at end of file diff --git a/blockchains/solana/assets/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG/logo.png b/blockchains/solana/assets/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG/logo.png new file mode 100644 index 0000000000000..0e7e589077eb6 Binary files /dev/null and b/blockchains/solana/assets/node3SHFNF7h6N9jbztfVcXrZcvAJdns1xAV8CbYFLG/logo.png differ diff --git a/blockchains/solana/assets/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/info.json b/blockchains/solana/assets/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/info.json new file mode 100644 index 0000000000000..b8560f8e8a3c4 --- /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 0000000000000..9489d85bd5f4c Binary files /dev/null and b/blockchains/solana/assets/nosXBVoaCTtYdLvKY6Csb4AC8JCdQKKAaWYtx2ZMoo7/logo.png differ diff --git a/blockchains/solana/assets/pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg/info.json b/blockchains/solana/assets/pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg/info.json new file mode 100644 index 0000000000000..a26fceb1d7a7b --- /dev/null +++ b/blockchains/solana/assets/pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg/info.json @@ -0,0 +1,17 @@ +{ + "name": "PayPaw", + "website": "https://paypaw.cards/", + "description": "At the core of PayPaw, the $PAW Token is more than just currency, it's your stake in our future.", + "explorer": "https://solscan.io/token/pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg", + "type": "SPL", + "symbol": "PAW", + "decimals": 6, + "status": "active", + "id": "pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/paypaw_cards" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg/logo.png b/blockchains/solana/assets/pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg/logo.png new file mode 100644 index 0000000000000..6e6cc26e47b5b Binary files /dev/null and b/blockchains/solana/assets/pawSXHWsonrTey4SX7tz1fM9ksuLpE13Y54K57ym4Rg/logo.png differ diff --git a/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/info.json b/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/info.json new file mode 100644 index 0000000000000..76538a3bb7756 --- /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 0000000000000..0abda3243d4b1 Binary files /dev/null and b/blockchains/solana/assets/rndrizKT3MK1iimdxRdWabcF7Zg7AR5T4nud4EkHBof/logo.png differ diff --git a/blockchains/solana/assets/sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5/info.json b/blockchains/solana/assets/sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5/info.json new file mode 100644 index 0000000000000..7899854a631bd --- /dev/null +++ b/blockchains/solana/assets/sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5/info.json @@ -0,0 +1,21 @@ +{ + "name": "Spike", + "type": "SPL", + "symbol": "SPIKE", + "decimals": 9, + "website": "https://spiketheoriginal.com/", + "description": "Matt Furie's first documented drawing.", + "explorer": "https://solscan.io/token/sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5", + "status": "active", + "id": "sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/spiketheog" + }, + { + "name": "telegram", + "url": "https://t.me/spiketheoriginal" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5/logo.png b/blockchains/solana/assets/sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5/logo.png new file mode 100644 index 0000000000000..1df0088f4311c Binary files /dev/null and b/blockchains/solana/assets/sPiKEYAqoaGYYBAnPxro8NLSYLu93sr56n352jJRLN5/logo.png differ diff --git a/blockchains/solana/assets/sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg/info.json b/blockchains/solana/assets/sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg/info.json new file mode 100644 index 0000000000000..4b1a84365f663 --- /dev/null +++ b/blockchains/solana/assets/sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg/info.json @@ -0,0 +1,21 @@ +{ + "name": "MAGA", + "type": "SPL", + "symbol": "MAGA", + "website": "https://magacoin.me/", + "explorer": "https://solscan.io/token/sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg", + "decimals": 6, + "description": "$MAGA Movement on Solana", + "status": "active", + "id": "sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg", + "links": [ + { + "name": "telegram", + "url": "https://t.me/magaonsol_portal" + }, + { + "name": "twitter", + "url": "https://twitter.com/magaonsolanaTW" + } + ] +} diff --git a/blockchains/solana/assets/sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg/logo.png b/blockchains/solana/assets/sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg/logo.png new file mode 100644 index 0000000000000..3c3de7aab9014 Binary files /dev/null and b/blockchains/solana/assets/sfYDFZJguyF4YLZjje7qwwh41NRymFfZ3QXZbVm7Eyg/logo.png differ diff --git a/blockchains/solana/assets/ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82/info.json b/blockchains/solana/assets/ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82/info.json new file mode 100644 index 0000000000000..553b4efa372e3 --- /dev/null +++ b/blockchains/solana/assets/ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82/info.json @@ -0,0 +1,21 @@ +{ + "name": "BOOK OF MEME", + "type": "SPL", + "symbol": "BOME", + "decimals": 6, + "website": "https://llwapirxnupqu7xw2fspfidormcfar7ek2yp65nu7k5opjwhdywq.arweave.net/WuwHojdtHwp-9tFk8qBuiwRQR-RWsP91tPq656bHHi0", + "description": "Introducing the BOOK OF MEME: an experimental project poised to redefine web3 culture by amalgamating memes, decentralized storage solutions, and degen shitcoin trading and gambling", + "explorer": "https://solscan.io/token/ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82", + "status": "active", + "id": "ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/Darkfarms1" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/book-of-meme/" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82/logo.png b/blockchains/solana/assets/ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82/logo.png new file mode 100644 index 0000000000000..935bf3f7e3beb Binary files /dev/null and b/blockchains/solana/assets/ukHH6c7mMyiWCf1b9pnWe25TSpkDDt3H5pQZgZ74J82/logo.png differ diff --git a/blockchains/solana/assets/wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw/info.json b/blockchains/solana/assets/wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw/info.json new file mode 100644 index 0000000000000..df236d7b33b00 --- /dev/null +++ b/blockchains/solana/assets/wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw/info.json @@ -0,0 +1,21 @@ +{ + "name": "Yuro 2024", + "website": "https://yuro2024.com/", + "description": "The ofishul home of YOUAYFA men’s nashinol futball - on Solana", + "explorer": "https://solscan.io/token/wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw", + "type": "SPL", + "symbol": "YURO", + "decimals": 6, + "status": "active", + "id": "wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw", + "links": [ + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/yuro-2024" + }, + { + "name": "twitter", + "url": "https://twitter.com/YURO2024" + } + ] +} diff --git a/blockchains/solana/assets/wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw/logo.png b/blockchains/solana/assets/wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw/logo.png new file mode 100644 index 0000000000000..6cc58c5d52772 Binary files /dev/null and b/blockchains/solana/assets/wh2rGDto5Xcqw1nh8LMiFHDUuaz2q1VcEy4gzG7uvTw/logo.png differ diff --git a/blockchains/solana/assets/wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ/info.json b/blockchains/solana/assets/wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ/info.json new file mode 100644 index 0000000000000..d31ac93df7c06 --- /dev/null +++ b/blockchains/solana/assets/wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ/info.json @@ -0,0 +1,21 @@ +{ + "name": "JustAnEgg", + "website": "https://justanegg.com/", + "description": "Welcome to JustAnEgg, the only cryptocurrency project that’s egg-ceptionally good!", + "explorer": "https://solscan.io/token/wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ", + "type": "SPL", + "symbol": "EGG", + "decimals": 9, + "status": "active", + "id": "wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/justaneggcoin" + }, + { + "name": "telegram", + "url": "https://t.me/JustAnEggSol" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ/logo.png b/blockchains/solana/assets/wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ/logo.png new file mode 100644 index 0000000000000..483b75d61dbe2 Binary files /dev/null and b/blockchains/solana/assets/wo1zgt8rfrYpvdVi4nidoj1SYfcR4pQx69bmNv2JLhQ/logo.png differ diff --git a/blockchains/solana/assets/wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit/info.json b/blockchains/solana/assets/wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit/info.json new file mode 100644 index 0000000000000..9eacdafdcc727 --- /dev/null +++ b/blockchains/solana/assets/wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit/info.json @@ -0,0 +1,21 @@ +{ + "name": "Shitcoin", + "website": "https://shitcoin.co/", + "description": "Ready to get your hands dirty? This ain't for the faint-hearted. It's dirtier, bolder, and uncut. Get ready to stir up some s***!", + "explorer": "https://solscan.io/token/wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit", + "type": "SPL", + "symbol": "SHIT", + "decimals": 9, + "status": "active", + "id": "wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/shitcoin" + }, + { + "name": "telegram", + "url": "https://t.me/shitcoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/solana/assets/wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit/logo.png b/blockchains/solana/assets/wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit/logo.png new file mode 100644 index 0000000000000..ff6bd272ef30b Binary files /dev/null and b/blockchains/solana/assets/wzpeUomX2VNiswbyYMLqYsdN4nNFZSobNs5xuR7shit/logo.png differ diff --git a/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/info.json b/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/info.json index bedce8f8cce51..0b9568083a33e 100644 --- a/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/info.json +++ b/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/info.json @@ -6,7 +6,7 @@ "website": "https://zebec.io/", "description": "Zebec is enabling composable transfer of value starting with Zebec Payroll. Zebec Safe is fully customizable multi-sig on Solana.", "explorer": "https://solscan.io/token/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF", - "status": "active", + "status": "abandoned", "id": "zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF", "links": [ { diff --git a/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/logo.png b/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/logo.png deleted file mode 100644 index 2a6c1f2c39e96..0000000000000 Binary files a/blockchains/solana/assets/zebeczgi5fSEtbpfQKVZKCJ3WgYXxjkMUkNNx7fLKAF/logo.png and /dev/null differ diff --git a/blockchains/solana/tokenlist.json b/blockchains/solana/tokenlist.json new file mode 100644 index 0000000000000..c025860ca27f8 --- /dev/null +++ b/blockchains/solana/tokenlist.json @@ -0,0 +1,562 @@ +{ + "name": "Trust Wallet: Solana List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2024-02-01T14:23:26.183301", + "tokens": [ + { + "asset": "c501_t2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk", + "type": "SPL", + "address": "2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk", + "name": "Wrapped ETH", + "symbol": "ETH", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/2FPyTwcZLUg1MDrwsyoP4D6s1tM7hAkHYRjkNb5w6Pxk/logo.png", + "pairs": [] + }, + { + "asset": "c501_t2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD", + "type": "SPL", + "address": "2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD", + "name": "Hedget (Portal)", + "symbol": "HGET", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/2ueY1bLcPHfuFzEJq7yN1V2Wrpu8nkun9xG2TVCE1mhD/logo.png", + "pairs": [] + }, + { + "asset": "c501_t2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX", + "type": "SPL", + "address": "2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX", + "name": "Chainlink (Portal)", + "symbol": "LINK", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/2wpTofQ8SkACrkZWrZDjXPitYa8AwWgX8AfxdeBRRVLX/logo.png", + "pairs": [] + }, + { + "asset": "c501_t3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh", + "type": "SPL", + "address": "3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh", + "name": "Wrapped BTC (Portal)", + "symbol": "WBTC", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh/logo.png", + "pairs": [] + }, + { + "asset": "c501_t3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg", + "type": "SPL", + "address": "3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg", + "name": "Aave Token (Portal)", + "symbol": "AAVE", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/3vAs4D1WE6Na4tCgt4BApgFfENbm8WY7q4cSPD1yM4Cg/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao", + "type": "SPL", + "address": "4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao", + "name": "AnchorUST (Portal)", + "symbol": "aUST", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4CsZsUCoKFiaGyU7DEVDayqeVtG8iqgGDR6RjzQmzQao/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP", + "type": "SPL", + "address": "4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP", + "name": "DAI (Portal from Polygon)", + "symbol": "DAIpo", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4Fo67MYQpVhZj9R7jQTd63FPAnWbPpaafAUxsMGX2geP/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4", + "type": "SPL", + "address": "4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4", + "name": "Smooth Love Potion (Portal)", + "symbol": "SLP", + "decimals": 0, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4hpngEp1v3CXpeKB81Gw4sv7YvwUVRKvY3SGag9ND8Q4/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU", + "type": "SPL", + "address": "4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU", + "name": "dYdX (Portal)", + "symbol": "DYDX", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4Hx6Bj56eGyw8EJrrheM6LBQAvVYRikYCWsALeTrwyRU/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R", + "type": "SPL", + "address": "4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R", + "name": "Raydium", + "symbol": "RAY", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R/logo.png", + "pairs": [] + }, + { + "asset": "c501_t5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1", + "type": "SPL", + "address": "5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1", + "name": "Tether USD (PoS) (Portal from Polygon)", + "symbol": "USDTpo", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/5goWRao6a3yNC4d6UjMdQxonkCMvKBwdpubU3qhfcdf1/logo.png", + "pairs": [] + }, + { + "asset": "c501_t4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj", + "type": "SPL", + "address": "4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj", + "name": "LIQ Protocol", + "symbol": "LIQ", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/4wjPQJ6PrkC4dHhYghwJzGBVP78DkBzA2U3kHoFNBuhj/logo.png", + "pairs": [] + }, + { + "asset": "c501_t5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2", + "type": "SPL", + "address": "5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2", + "name": "Binance USD (Portal from BSC)", + "symbol": "BUSDbs", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/5RpUwQ8wtdPCZHhu6MERp2RGrpobsbZ6MH5dDHkUjs2/logo.png", + "pairs": [] + }, + { + "asset": "c501_t5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG", + "type": "SPL", + "address": "5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG", + "name": "Chiliz (Portal)", + "symbol": "CHZ", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/5TtSKAamFq88grN1QGrEaZ1AjjyciqnCya1aiMhAgFvG/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi", + "type": "SPL", + "address": "7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi", + "name": "Decentraland (Portal)", + "symbol": "MANA", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7dgHoN8wBZCc5wbnQ2C47TDnBMAxG4Q5L3KjP67z8kNi/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8", + "type": "SPL", + "address": "7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8", + "name": "Huobi BTC (Portal)", + "symbol": "HBTC", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7dVH61ChzgmN9BwG4PkzwRP8PbYwPJ7ZPNF2vamKT2H8/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs", + "type": "SPL", + "address": "7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs", + "name": "Curve DAO Token (Portal)", + "symbol": "CRV", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7gjNiPun3AzEazTZoFEjZgcBMeuaXdpjHq2raZTmTrfs/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx", + "type": "SPL", + "address": "7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx", + "name": "Green Metaverse Token", + "symbol": "GMT", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7i5KKsX2weiTkry7jA4ZwSuXGhs5eJBEjY8vVxR4pfRx/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs", + "type": "SPL", + "address": "7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs", + "name": "Ether (Portal)", + "symbol": "ETH", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs/logo.png", + "pairs": [] + }, + { + "asset": "c501_t7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw", + "type": "SPL", + "address": "7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw", + "name": "HUSD Stablecoin (Portal)", + "symbol": "HUSD", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/7VQo3HFLNH5QqGtM8eC3XQbPkJUu7nS9LeGWjerRh5Sw/logo.png", + "pairs": [] + }, + { + "asset": "c501_t8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56", + "type": "SPL", + "address": "8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56", + "name": "Synthetix Network Token (Portal)", + "symbol": "SNX", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/8cTNUtcV2ueC3royJ642uRnvTxorJAWLZc58gxAo7y56/logo.png", + "pairs": [] + }, + { + "asset": "c501_t8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36", + "type": "SPL", + "address": "8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36", + "name": "Uniswap (Portal)", + "symbol": "UNI", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/8FU95xFJhUUkyyCLU13HSzDLs7oC4QZdXQHL6SCeab36/logo.png", + "pairs": [] + }, + { + "asset": "c501_t8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN", + "type": "SPL", + "address": "8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN", + "name": "Fantom (Portal from Ethereum)", + "symbol": "FTMet", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/8gC27rQF4NEDYfyf5aS8ZmQJUum5gufowKGYRRba4ENN/logo.png", + "pairs": [] + }, + { + "asset": "c501_t8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv", + "type": "SPL", + "address": "8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv", + "name": "Tether USD (Portal from BSC)", + "symbol": "USDTbs", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/8qJSyQprMC57TWKaYEmetUR3UUiTP2M3hXdcvFhkZdmv/logo.png", + "pairs": [] + }, + { + "asset": "c501_t9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa", + "type": "SPL", + "address": "9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa", + "name": "Binance Coin (Portal)", + "symbol": "BNB", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/9gP2kCy3wA1ctvYWQk75guqXuHfrEomqydHLtcTCqiLa/logo.png", + "pairs": [] + }, + { + "asset": "c501_t9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E", + "type": "SPL", + "address": "9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E", + "name": "Wrapped BTC", + "symbol": "BTC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/9n4nbM75f5Ui33ZbPYXn59EwSgE8CGsHtAeTH5YFeJ9E/logo.png", + "pairs": [] + }, + { + "asset": "c501_t49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt", + "type": "SPL", + "address": "49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt", + "name": "The Sandbox (Portal)", + "symbol": "SAND", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/49c7WuCZkQgc3M4qH8WuEUNXfgwupZf1xqWkDQ7gjRGt/logo.png", + "pairs": [] + }, + { + "asset": "c501_tA9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM", + "type": "SPL", + "address": "A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM", + "name": "USD Coin (Portal from Ethereum)", + "symbol": "USDCet", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/A9mUU4qviSctJVPJdBJWkb28deg915LYJKrzQ19ji3FM/logo.png", + "pairs": [] + }, + { + "asset": "c501_tAFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB", + "type": "SPL", + "address": "AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB", + "name": "Green Satoshi Token", + "symbol": "GST", + "decimals": 9, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB/logo.png", + "pairs": [] + }, + { + "asset": "c501_tAGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3", + "type": "SPL", + "address": "AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3", + "name": "Wrapped FTX", + "symbol": "FTT", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/AGFEad2et2ZJif9jaGpdMixQqvW5i81aBdvKe7PHNfz3/logo.png", + "pairs": [] + }, + { + "asset": "c501_tAjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC", + "type": "SPL", + "address": "AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC", + "name": "1INCH Token (Portal)", + "symbol": "1INCH", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/AjkPkq3nsyDe1yKcbyZT7N4aK4Evv9om9tzhQD3wsRC/logo.png", + "pairs": [] + }, + { + "asset": "c501_tAwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom", + "type": "SPL", + "address": "AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom", + "name": "Compound (Portal)", + "symbol": "COMP", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/AwEauVaTMQRB71WeDnwf1DWSBxaMKjEPuxyLr1uixFom/logo.png", + "pairs": [] + }, + { + "asset": "c501_tBCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U", + "type": "SPL", + "address": "BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U", + "name": "Spell Token (Portal)", + "symbol": "SPELL", + "decimals": 8, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/solana/assets/BCsFXYm81iqXyYmrLKgAp3AePcgLHnirb8FjTs6sjM7U/logo.png", + "pairs": [] + }, + { + "asset": "c501_tBQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4", + "type": "SPL", + "address": "BQcdHdAQW1hczDbBi9hiegXAR7A98Q9jx3X3iBBBDiq4", + "name": "Wrapped USDT", + "symbol": "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_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/1KXz4xKV2viJCGpxqnQqdf2J45vQr5USdmtcJLTaHkm/logo.png b/blockchains/solana/validators/assets/1KXz4xKV2viJCGpxqnQqdf2J45vQr5USdmtcJLTaHkm/logo.png new file mode 100644 index 0000000000000..d55d207a09a28 Binary files /dev/null and b/blockchains/solana/validators/assets/1KXz4xKV2viJCGpxqnQqdf2J45vQr5USdmtcJLTaHkm/logo.png differ diff --git a/blockchains/solana/validators/assets/D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz/logo.png b/blockchains/solana/validators/assets/D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/solana/validators/assets/D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz/logo.png differ diff --git a/blockchains/solana/validators/assets/DTwEEF6VSrmTBYkDcj3BKAc52qhvP8CEQUEAMMT1cG3/logo.png b/blockchains/solana/validators/assets/DTwEEF6VSrmTBYkDcj3BKAc52qhvP8CEQUEAMMT1cG3/logo.png new file mode 100644 index 0000000000000..c38be6e29f03d Binary files /dev/null and b/blockchains/solana/validators/assets/DTwEEF6VSrmTBYkDcj3BKAc52qhvP8CEQUEAMMT1cG3/logo.png differ diff --git a/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png b/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png index 3c29ee005d51c..0888af01c5da5 100644 Binary files a/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png and b/blockchains/solana/validators/assets/EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F/logo.png differ diff --git a/blockchains/solana/validators/assets/EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z/logo.png b/blockchains/solana/validators/assets/EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z/logo.png deleted file mode 100644 index 145cb3cb09913..0000000000000 Binary files a/blockchains/solana/validators/assets/EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z/logo.png and /dev/null differ diff --git a/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png b/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/solana/validators/assets/FiijvR2ibXEHaFqB127CxrL3vSj19K2Kx1jf2RbK4BWS/logo.png differ diff --git a/blockchains/solana/validators/list.json b/blockchains/solana/validators/list.json index 44c8ef68977bb..ffa49cc4fb7ed 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": "1KXz4xKV2viJCGpxqnQqdf2J45vQr5USdmtcJLTaHkm", + "name": "1000X.sh 🤝 0% fee guaranteed", + "description": "Stake with the most reliable, secure and profitable validator.", + "website": "https://1000x.sh/" + }, + { + "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": "EPWrFd8jJ4SLA1YtcZcRAsAMxmnikSVqbumerCq5yV6z", - "name": "Sunflower 🌻", - "description": "Thanks to this sunflower, the plants defeated the zombies! She can be trusted! Retired. Now she's just validating.", - "website": "https://sunflowerstake.com/" - }, { "id": "AS3nKBQfKs8fJ8ncyHrdvo4FDT6S8HMRhD75JjCcyr1t", "name": "Overclock", @@ -29,6 +41,12 @@ "description": "Chorus One helps you securely increase your crypto holdings by participating in decentralized networks.", "website": "https://chorus.one/" }, + { + "id": "D4mLBafAJjpRABT5Tyj6UhuwJ8DLRk74JzyuTMUdU9Fz", + "name": "AutoStake ⚡️ 0% fee 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", @@ -55,9 +73,9 @@ }, { "id": "EFEKcHrUBsRoQkuTSJAQNZnj1u8h9oE4LoCYerednc3F", - "name": "Genesis Lab", - "description": "Genesis Lab is a validation nodes operator in PoS networks and blockchain-focused software development company", - "website": "https://genesislab.net" + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" }, { "id": "9tedbEYypEKXAMkHcg42rn3fXY1B8hB6cdE3ZTFouXLL", @@ -68,7 +86,7 @@ { "id": "4PsiLMyoUQ7QRn1FFiFCvej4hsUTFzfvJnyN4bj1tmSN", "name": "Stakin", - "description": "Your Trusted Crypto Rewards", + "description": "Staking Services Trusted by Institutions.", "website": "https://stakin.com/" }, { diff --git a/blockchains/sommelier/validators/assets/sommvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z4mj4sy/logo.png b/blockchains/sommelier/validators/assets/sommvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z4mj4sy/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57z4mj4sy/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper15urq2dtp9qce4fyc85m6upwm9xul30499el64g/logo.png b/blockchains/sommelier/validators/assets/sommvaloper15urq2dtp9qce4fyc85m6upwm9xul30499el64g/logo.png new file mode 100644 index 0000000000000..83225b3167144 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper15urq2dtp9qce4fyc85m6upwm9xul30499el64g/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1a583xjv6ylrdfzm3udk6jnj4xy28k2wge0eazz/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1a583xjv6ylrdfzm3udk6jnj4xy28k2wge0eazz/logo.png new file mode 100644 index 0000000000000..18b82452aaf26 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1a583xjv6ylrdfzm3udk6jnj4xy28k2wge0eazz/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3/logo.png new file mode 100644 index 0000000000000..552a01c6cb622 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4pu0vlu3/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1pedd3sk0qhwc3yr6zh036gcwc0d6yhuntw9lcw/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1pedd3sk0qhwc3yr6zh036gcwc0d6yhuntw9lcw/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1pedd3sk0qhwc3yr6zh036gcwc0d6yhuntw9lcw/logo.png differ diff --git a/blockchains/sommelier/validators/assets/sommvaloper1tl6jl7ecqwvgagsc4w46n9nm470cwjyg24hlw3/logo.png b/blockchains/sommelier/validators/assets/sommvaloper1tl6jl7ecqwvgagsc4w46n9nm470cwjyg24hlw3/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/sommelier/validators/assets/sommvaloper1tl6jl7ecqwvgagsc4w46n9nm470cwjyg24hlw3/logo.png differ diff --git a/blockchains/sommelier/validators/list.json b/blockchains/sommelier/validators/list.json new file mode 100644 index 0000000000000..e8864571aa5df --- /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 index 1cb4bd428e4b4..0d36e4dba992f 100644 --- a/blockchains/stargaze/info/info.json +++ b/blockchains/stargaze/info/info.json @@ -25,5 +25,8 @@ "name": "twitter", "url": "https://twitter.com/StargazeZone" } + ], + "tags": [ + "staking-native" ] } diff --git a/blockchains/stargaze/validators/assets/starsvaloper13htkxk8nw6qwhfdugllp8ldtgt5nm80xf679h5/logo.png b/blockchains/stargaze/validators/assets/starsvaloper13htkxk8nw6qwhfdugllp8ldtgt5nm80xf679h5/logo.png new file mode 100644 index 0000000000000..2b7d58fdbd8b2 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper13htkxk8nw6qwhfdugllp8ldtgt5nm80xf679h5/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje9898petq/logo.png b/blockchains/stargaze/validators/assets/starsvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje9898petq/logo.png new file mode 100644 index 0000000000000..9dff7bbedfbee Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje9898petq/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper18wkkhsrsw7gwl3z9gn6e25ag3sn0crzp89el6n/logo.png b/blockchains/stargaze/validators/assets/starsvaloper18wkkhsrsw7gwl3z9gn6e25ag3sn0crzp89el6n/logo.png new file mode 100644 index 0000000000000..d9182668938b8 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper18wkkhsrsw7gwl3z9gn6e25ag3sn0crzp89el6n/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1fhznrvfyv25f27se8pqw79ytfcwh45j0ppy6lz/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1fhznrvfyv25f27se8pqw79ytfcwh45j0ppy6lz/logo.png new file mode 100644 index 0000000000000..6969356556add Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1fhznrvfyv25f27se8pqw79ytfcwh45j0ppy6lz/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p60w86a/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p60w86a/logo.png new file mode 100644 index 0000000000000..a815dfcdc85c8 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4p60w86a/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1gz645mefvu5emd0llpfjchqqpyuxt0xxq34per/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1gz645mefvu5emd0llpfjchqqpyuxt0xxq34per/logo.png new file mode 100644 index 0000000000000..5f4e450704b06 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1gz645mefvu5emd0llpfjchqqpyuxt0xxq34per/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1mz2qks48v486d9m8wp4l9fxm2e9l0e0kzk79m5/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1mz2qks48v486d9m8wp4l9fxm2e9l0e0kzk79m5/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1mz2qks48v486d9m8wp4l9fxm2e9l0e0kzk79m5/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qlh8sg9/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qlh8sg9/logo.png new file mode 100644 index 0000000000000..e53d0580b5a99 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qlh8sg9/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1swer6tl0s59g82xnq5gmgsdueld79wpw8vptlu/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1swer6tl0s59g82xnq5gmgsdueld79wpw8vptlu/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1swer6tl0s59g82xnq5gmgsdueld79wpw8vptlu/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1ulvgmlttxhrnmegu57sj0n2qc7xvtrn9245jtu/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1ulvgmlttxhrnmegu57sj0n2qc7xvtrn9245jtu/logo.png new file mode 100644 index 0000000000000..91529a7d386f0 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1ulvgmlttxhrnmegu57sj0n2qc7xvtrn9245jtu/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1wvh8n82r4alqhxs45m8jtf536sqc5nzzgfzs7x/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1wvh8n82r4alqhxs45m8jtf536sqc5nzzgfzs7x/logo.png new file mode 100644 index 0000000000000..05e24c5c9fa3f Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1wvh8n82r4alqhxs45m8jtf536sqc5nzzgfzs7x/logo.png differ diff --git a/blockchains/stargaze/validators/assets/starsvaloper1y3cxrze7kmktj93atd42g9rffyg823g0qjqelc/logo.png b/blockchains/stargaze/validators/assets/starsvaloper1y3cxrze7kmktj93atd42g9rffyg823g0qjqelc/logo.png new file mode 100644 index 0000000000000..1b71ae0a3a343 Binary files /dev/null and b/blockchains/stargaze/validators/assets/starsvaloper1y3cxrze7kmktj93atd42g9rffyg823g0qjqelc/logo.png differ diff --git a/blockchains/stargaze/validators/list.json b/blockchains/stargaze/validators/list.json new file mode 100644 index 0000000000000..132a3f9ffd758 --- /dev/null +++ b/blockchains/stargaze/validators/list.json @@ -0,0 +1,80 @@ +[ + { + "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" + }, + { + "id": "starsvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje9898petq", + "name": "Kahuna", + "description": "Kahuna is a tech-focused investment firm dedicated to Blockchain Infrastructure, DeFi, and Gaming startups. Follow us on https://x.com/kahunahq", + "website": "https://www.kahuna.network/" + } +] diff --git a/blockchains/stratis/info/info.json b/blockchains/stratis/info/info.json new file mode 100644 index 0000000000000..b415b96999662 --- /dev/null +++ b/blockchains/stratis/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Stratis", + "website": "https://www.stratisplatform.com", + "description": "Stratis Group Ltd., the company behind the Stratis platform, was founded in 2016 by Chris Trew.", + "explorer": "https://chainz.cryptoid.info/strax/#", + "symbol": "STRAX", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/stratis/" + }, + { + "name": "twitter", + "url": "https://twitter.com/stratisplatform" + } + ] +} \ No newline at end of file diff --git a/blockchains/stratis/info/logo.png b/blockchains/stratis/info/logo.png new file mode 100644 index 0000000000000..00a41b1a8f18e Binary files /dev/null and b/blockchains/stratis/info/logo.png differ diff --git a/blockchains/stride/assets/staevmos/info.json b/blockchains/stride/assets/staevmos/info.json index d6bf4fa1ba157..e0bb8d56a7cb1 100644 --- a/blockchains/stride/assets/staevmos/info.json +++ b/blockchains/stride/assets/staevmos/info.json @@ -7,8 +7,5 @@ "website": "https://stride.zone", "explorer": "https://www.mintscan.io/stride/account/staevmos", "status": "active", - "id": "staevmos", - "tags": [ - "staking-liquid" - ] + "id": "staevmos" } \ No newline at end of file diff --git a/blockchains/stride/assets/stinj/info.json b/blockchains/stride/assets/stinj/info.json index 4a4f6d1a485c0..37d1967c74e2d 100644 --- a/blockchains/stride/assets/stinj/info.json +++ b/blockchains/stride/assets/stinj/info.json @@ -7,8 +7,5 @@ "website": "https://stride.zone", "explorer": "https://www.mintscan.io/stride/account/stinj", "status": "active", - "id": "stinj", - "tags": [ - "staking-native" - ] + "id": "stinj" } \ No newline at end of file diff --git a/blockchains/stride/assets/stuatom/info.json b/blockchains/stride/assets/stuatom/info.json index 40be548ba15a8..4cc88944c0ec0 100644 --- a/blockchains/stride/assets/stuatom/info.json +++ b/blockchains/stride/assets/stuatom/info.json @@ -13,8 +13,5 @@ "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/stride-staked-atom/" } - ], - "tags": [ - "staking-native" ] } \ No newline at end of file diff --git a/blockchains/stride/assets/stujuno/info.json b/blockchains/stride/assets/stujuno/info.json index a5e133e72b1e3..313db9affb3c3 100644 --- a/blockchains/stride/assets/stujuno/info.json +++ b/blockchains/stride/assets/stujuno/info.json @@ -13,8 +13,5 @@ "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/stride-staked-juno/" } - ], - "tags": [ - "staking-native" ] } \ No newline at end of file diff --git a/blockchains/stride/assets/stuluna/info.json b/blockchains/stride/assets/stuluna/info.json index efd088f597589..c60fe8a357587 100644 --- a/blockchains/stride/assets/stuluna/info.json +++ b/blockchains/stride/assets/stuluna/info.json @@ -7,8 +7,5 @@ "website": "https://stride.zone", "explorer": "https://www.mintscan.io/stride/account/stuluna", "status": "active", - "id": "stuluna", - "tags": [ - "staking-native" - ] + "id": "stuluna" } \ No newline at end of file diff --git a/blockchains/stride/assets/stuosmo/info.json b/blockchains/stride/assets/stuosmo/info.json index 29788cb4464a5..bb5a4e779bfe5 100644 --- a/blockchains/stride/assets/stuosmo/info.json +++ b/blockchains/stride/assets/stuosmo/info.json @@ -7,8 +7,5 @@ "website": "https://stride.zone", "explorer": "https://www.mintscan.io/stride/account/stuosmo", "status": "active", - "id": "stuosmo", - "tags": [ - "staking-native" - ] + "id": "stuosmo" } \ No newline at end of file diff --git a/blockchains/stride/assets/stustars/info.json b/blockchains/stride/assets/stustars/info.json index f3b47988af462..4ab67048dc976 100644 --- a/blockchains/stride/assets/stustars/info.json +++ b/blockchains/stride/assets/stustars/info.json @@ -13,8 +13,5 @@ "name": "coinmarketcap", "url": "https://coinmarketcap.com/currencies/stride-staked-stars/" } - ], - "tags": [ - "staking-native" ] } \ No newline at end of file diff --git a/blockchains/stride/assets/stuumee/info.json b/blockchains/stride/assets/stuumee/info.json index 8d6b44878c23c..3785ebcc801ec 100644 --- a/blockchains/stride/assets/stuumee/info.json +++ b/blockchains/stride/assets/stuumee/info.json @@ -7,8 +7,5 @@ "website": "https://stride.zone", "explorer": "https://www.mintscan.io/stride/account/stuumee", "status": "active", - "id": "stuumee", - "tags": [ - "staking-native" - ] + "id": "stuumee" } \ No newline at end of file diff --git a/blockchains/stride/validators/assets/stridevaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zv8hy7g/logo.png b/blockchains/stride/validators/assets/stridevaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zv8hy7g/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zv8hy7g/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper16yupepagywvlk7uhpfchtwa0stu5f8cyjayqas/logo.png b/blockchains/stride/validators/assets/stridevaloper16yupepagywvlk7uhpfchtwa0stu5f8cyjayqas/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper16yupepagywvlk7uhpfchtwa0stu5f8cyjayqas/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper17axr56uvurzt9dzjl6zplk4qwjkmxgmmqmthwv/logo.png b/blockchains/stride/validators/assets/stridevaloper17axr56uvurzt9dzjl6zplk4qwjkmxgmmqmthwv/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper17axr56uvurzt9dzjl6zplk4qwjkmxgmmqmthwv/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1a5c3ejnzy0827t62cyj7etmuchdqvznhp5yp94/logo.png b/blockchains/stride/validators/assets/stridevaloper1a5c3ejnzy0827t62cyj7etmuchdqvznhp5yp94/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1a5c3ejnzy0827t62cyj7etmuchdqvznhp5yp94/logo.png differ diff --git a/blockchains/stride/validators/assets/stridevaloper1xgvc86nkv03z7rgyx9t8t66kfz7y9tgpewkww2/logo.png b/blockchains/stride/validators/assets/stridevaloper1xgvc86nkv03z7rgyx9t8t66kfz7y9tgpewkww2/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/stride/validators/assets/stridevaloper1xgvc86nkv03z7rgyx9t8t66kfz7y9tgpewkww2/logo.png differ diff --git a/blockchains/stride/validators/list.json b/blockchains/stride/validators/list.json index 60b5a29953325..7eedc50a8194c 100644 --- a/blockchains/stride/validators/list.json +++ b/blockchains/stride/validators/list.json @@ -35,6 +35,12 @@ "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at hello@polkachu.com", "website": "https://polkachu.com/" }, + { + "id": "stridevaloper1a5c3ejnzy0827t62cyj7etmuchdqvznhp5yp94", + "name": "AutoStake 🛡️ Slash Protected", + "description": "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", @@ -58,5 +64,29 @@ "name": "Flipside", "description": "Explore the best data and insights in Web3.", "website": "https://flipsidecrypto.xyz/" + }, + { + "id": "stridevaloper17axr56uvurzt9dzjl6zplk4qwjkmxgmmqmthwv", + "name": "Allnodes.com ⚡️ 0% fee", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", + "website": "https://www.allnodes.com/strd/staking" + }, + { + "id": "stridevaloper1xgvc86nkv03z7rgyx9t8t66kfz7y9tgpewkww2", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + }, + { + "id": "stridevaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zv8hy7g", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "stridevaloper16yupepagywvlk7uhpfchtwa0stu5f8cyjayqas", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection & Eligible for airdrops | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" } ] diff --git a/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/info.json b/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/info.json new file mode 100644 index 0000000000000..a3bc9790fed4d --- /dev/null +++ b/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bridged USDC", + "symbol": "wUSDC", + "type": "SUI", + "decimals": 6, + "description": "Cross Chain Portal Bridged Token", + "website": "https://portalbridge.com/?targetChain=sui", + "explorer": "https://explorer.sui.io/address/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN", + "status": "active", + "id": "0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN", + "links": [ + { + "name": "docs", + "url": "https://portalbridge.com/docs/faqs/liquid-markets/#target-chain-sui" + } + ], + "tags": [ + "stablecoin", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/logo.png b/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/logo.png new file mode 100644 index 0000000000000..8047edf737f31 Binary files /dev/null and b/blockchains/sui/assets/0x5d4b302506645c37ff133b98c4b50a5ae14841659738d6d733d59d0d217a93bf::coin::COIN/logo.png differ diff --git a/blockchains/sui/assets/0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG/info.json b/blockchains/sui/assets/0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG/info.json new file mode 100644 index 0000000000000..3a271b75324e0 --- /dev/null +++ b/blockchains/sui/assets/0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG/info.json @@ -0,0 +1,32 @@ +{ + "name": "sudeng", + "symbol": "HIPPO", + "type": "SUI", + "decimals": 9, + "description": "No cats, no dogs Only hippo!", + "website": "https://www.hippocto.meme/", + "explorer": "https://suiscan.xyz/mainnet/coin/0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG/holders", + "status": "active", + "id": "0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG", + "links": [ + { + "name": "twitter", + "url": "https://x.com/hippo_cto" + }, + { + "name": "telegram", + "url": "https://t.me/HIPPO_SUI" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sudeng/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/coins/sudeng" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG/logo.png b/blockchains/sui/assets/0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG/logo.png new file mode 100644 index 0000000000000..6612f805fb48b Binary files /dev/null and b/blockchains/sui/assets/0x8993129d72e733985f7f1a00396cbd055bad6f817fee36576ce483c8bbb8b87b::sudeng::SUDENG/logo.png differ diff --git a/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/info.json b/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/info.json index e3bad598f0ab0..34261b0bf39cd 100644 --- a/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/info.json +++ b/blockchains/sui/assets/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN/info.json @@ -1,37 +1,21 @@ { - "name": "USD Coin", - "symbol": "USDC", + "name": "USD Coin (Portal from Solana)", + "symbol": "USDCsol", "type": "SUI", "decimals": 6, - "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", - "website": "https://www.centre.io", + "description": "Cross Chain Portal Bridged Token", + "website": "https://portalbridge.com/?targetChain=sui", "explorer": "https://explorer.sui.io/address/0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN", - "research": "https://research.binance.com/en/projects/usd-coin", "status": "active", "id": "0xb231fcda8bbddb31f2ef02e6161444aec64a514e2c89279584ac9806ce9cf037::coin::COIN", "links": [ { - "name": "github", - "url": "https://github.com/centrehq" - }, - { - "name": "whitepaper", - "url": "https://centre.io/pdfs/centre-whitepaper.pdf" - }, - { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/usd-coin/" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/usd-coin/" - }, - { - "name": "medium", - "url": "https://medium.com/centre-blog" + "name": "docs", + "url": "https://portalbridge.com/docs/faqs/liquid-markets/#target-chain-sui" } ], "tags": [ - "stablecoin" + "stablecoin", + "wrapped" ] } \ No newline at end of file diff --git a/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/info.json b/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/info.json index 7a8183cc44c09..3e9560aa3f6dd 100644 --- a/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/info.json +++ b/blockchains/sui/assets/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN/info.json @@ -1,24 +1,21 @@ { - "name": "Tether USD", - "symbol": "USDT", + "name": "Tether USD (Portal from Ethereum)", + "symbol": "USDTet", "type": "SUI", "decimals": 6, - "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", - "website": "https://tether.to", + "description": "Cross Chain Portal Bridged Token", + "website": "https://portalbridge.com/?targetChain=sui", "explorer": "https://explorer.sui.io/address/0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN", "status": "active", "id": "0xc060006111016b8a020ad5b33834984a437aaa7d3c74c18e09a95d48aceab08c::coin::COIN", "links": [ { - "name": "coinmarketcap", - "url": "https://coinmarketcap.com/currencies/tether/" - }, - { - "name": "coingecko", - "url": "https://coingecko.com/en/coins/tether/" + "name": "docs", + "url": "https://portalbridge.com/docs/faqs/liquid-markets/#target-chain-sui" } ], "tags": [ - "stablecoin" + "stablecoin", + "wrapped" ] } \ No newline at end of file diff --git a/blockchains/sui/assets/0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC/info.json b/blockchains/sui/assets/0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC/info.json new file mode 100644 index 0000000000000..c5205fe344e97 --- /dev/null +++ b/blockchains/sui/assets/0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC/info.json @@ -0,0 +1,21 @@ +{ + "name": "USDC", + "symbol": "USDC", + "type": "SUI", + "decimals": 6, + "description": "USDC is a US dollar-backed stablecoin issued by Circle. USDC is designed to provide a faster, safer, and more efficient way to send, spend, and exchange money around the world.", + "website": "https://www.circle.com/en/multi-chain-usdc", + "explorer": "https://explorer.sui.io/address/0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC", + "status": "active", + "id": "0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/circle" + } + ], + "tags": [ + "stablecoin", + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/sui/assets/0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC/logo.png b/blockchains/sui/assets/0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC/logo.png new file mode 100644 index 0000000000000..8047edf737f31 Binary files /dev/null and b/blockchains/sui/assets/0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC/logo.png differ diff --git a/blockchains/sui/info/info.json b/blockchains/sui/info/info.json index 10487ed2dba65..451b6588d1b83 100644 --- a/blockchains/sui/info/info.json +++ b/blockchains/sui/info/info.json @@ -8,7 +8,8 @@ "decimals": 9, "status": "active", "tags": [ - "defi" + "defi", + "staking-native" ], "links": [ { diff --git a/blockchains/sui/validators/assets/0x885c0345bbf4441f39b98caf2295640a4dc3696ee9e8bc68f2101ca5e6f9bbf1/logo.png b/blockchains/sui/validators/assets/0x885c0345bbf4441f39b98caf2295640a4dc3696ee9e8bc68f2101ca5e6f9bbf1/logo.png new file mode 100644 index 0000000000000..1020527149890 Binary files /dev/null and b/blockchains/sui/validators/assets/0x885c0345bbf4441f39b98caf2295640a4dc3696ee9e8bc68f2101ca5e6f9bbf1/logo.png differ diff --git a/blockchains/sui/validators/assets/0x9b8b11c9b2336d35f2db8d5318ff32de51b85857f0e53a5c31242cf3797f4be4/logo.png b/blockchains/sui/validators/assets/0x9b8b11c9b2336d35f2db8d5318ff32de51b85857f0e53a5c31242cf3797f4be4/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/sui/validators/assets/0x9b8b11c9b2336d35f2db8d5318ff32de51b85857f0e53a5c31242cf3797f4be4/logo.png differ diff --git a/blockchains/sui/validators/assets/0x9c7376a3f903cbe1f467a4edbefb54bb5a2f10886496c591ca955c22f0ae10c9/logo.png b/blockchains/sui/validators/assets/0x9c7376a3f903cbe1f467a4edbefb54bb5a2f10886496c591ca955c22f0ae10c9/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/sui/validators/assets/0x9c7376a3f903cbe1f467a4edbefb54bb5a2f10886496c591ca955c22f0ae10c9/logo.png differ diff --git a/blockchains/sui/validators/list.json b/blockchains/sui/validators/list.json index b3f3e94903df5..12ae84b79e909 100644 --- a/blockchains/sui/validators/list.json +++ b/blockchains/sui/validators/list.json @@ -58,5 +58,23 @@ "name": "Stakingcabin", "description": "We offer enterprise-level, highly secure infrastructure services for public blockchain protocols.", "website": "https://stakingcabin.com/" + }, + { + "id": "0x885c0345bbf4441f39b98caf2295640a4dc3696ee9e8bc68f2101ca5e6f9bbf1", + "name": "Allnodes.com ⚡️", + "description": "Reliable non-custodial Validator run by the industry leader - Allnodes.", + "website": "https://www.allnodes.com/sui/staking" + }, + { + "id": "0x9b8b11c9b2336d35f2db8d5318ff32de51b85857f0e53a5c31242cf3797f4be4", + "name": "Stakin", + "description": "SUI staking services by an experienced enterprise validator trusted by institutions and the communities", + "website": "https://stakin.com" + }, + { + "id": "0x9c7376a3f903cbe1f467a4edbefb54bb5a2f10886496c591ca955c22f0ae10c9", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" } -] \ No newline at end of file +] diff --git a/blockchains/syscoin/info/info.json b/blockchains/syscoin/info/info.json new file mode 100644 index 0000000000000..3d5b8688661ee --- /dev/null +++ b/blockchains/syscoin/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Syscoin", + "website": "http://syscoin.org/", + "description": "Syscoin is designed to support the future of smart contracts within Metaverse, IoT, Smart Cities, and future interplanetary economies.", + "explorer": "https://explorer.syscoin.org", + "symbol": "SYS", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/syscoin/" + }, + { + "name": "twitter", + "url": "https://twitter.com/syscoin" + } + ] +} \ No newline at end of file diff --git a/blockchains/syscoin/info/logo.png b/blockchains/syscoin/info/logo.png new file mode 100644 index 0000000000000..c10e6dbcfb9b1 Binary files /dev/null and b/blockchains/syscoin/info/logo.png differ diff --git a/blockchains/teritori/info/info.json b/blockchains/teritori/info/info.json index 7d640de40ae76..895c41da5206c 100644 --- a/blockchains/teritori/info/info.json +++ b/blockchains/teritori/info/info.json @@ -7,9 +7,9 @@ "description": "The multi-chain SuperdApp for communities.", "explorer": "https://www.mintscan.io/teritori", "status": "active", - "rpc_url": "https://rpc-teritori.whispernode.com/", + "rpc_url": "https://teritori-rpc.polkachu.com", "denom": "utori", - "lcd_url": "https://rest-teritori.carbonzero.zone/", + "lcd_url": "https://teritori-api.polkachu.com", "hrp": "tori", "fee_rate": "0.25", "links": [ diff --git a/blockchains/teritori/validators/assets/torivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztl8j0u/logo.png b/blockchains/teritori/validators/assets/torivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztl8j0u/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/teritori/validators/assets/torivaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztl8j0u/logo.png differ diff --git a/blockchains/teritori/validators/assets/torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h/logo.png b/blockchains/teritori/validators/assets/torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/teritori/validators/assets/torivaloper1g3pncd7m5ak8yeh9n42as57pvrcqqv4rjvh87h/logo.png differ diff --git a/blockchains/teritori/validators/assets/torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq/logo.png b/blockchains/teritori/validators/assets/torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/teritori/validators/assets/torivaloper1xu736l4vt6l2pg9k2yk66fq7zq6y4aj5xmd6vq/logo.png differ diff --git a/blockchains/teritori/validators/list.json b/blockchains/teritori/validators/list.json new file mode 100644 index 0000000000000..72ea8f6f51cbb --- /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/validators/assets/terravaloper13avdm9rqxpftv3vrkaqaakakgh30909x8c07v3/logo.png b/blockchains/terra/validators/assets/terravaloper13avdm9rqxpftv3vrkaqaakakgh30909x8c07v3/logo.png new file mode 100644 index 0000000000000..8247888dd198d Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper13avdm9rqxpftv3vrkaqaakakgh30909x8c07v3/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper15ahd0dg9qwkg5tjmkn7fm6sdrpwa47m50l4zrg/logo.png b/blockchains/terra/validators/assets/terravaloper15ahd0dg9qwkg5tjmkn7fm6sdrpwa47m50l4zrg/logo.png new file mode 100644 index 0000000000000..af4630e029a19 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper15ahd0dg9qwkg5tjmkn7fm6sdrpwa47m50l4zrg/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82/logo.png b/blockchains/terra/validators/assets/terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82/logo.png new file mode 100644 index 0000000000000..472936ed16f00 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1f2t96sz9hnwsqnneux6v28xfgn07pkxjduvwjz/logo.png b/blockchains/terra/validators/assets/terravaloper1f2t96sz9hnwsqnneux6v28xfgn07pkxjduvwjz/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1f2t96sz9hnwsqnneux6v28xfgn07pkxjduvwjz/logo.png differ diff --git a/blockchains/terra/validators/assets/terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx/logo.png b/blockchains/terra/validators/assets/terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx/logo.png deleted file mode 100644 index 3c29ee005d51c..0000000000000 Binary files a/blockchains/terra/validators/assets/terravaloper1gh7wpfpsjrqnash5uc84z4njt95y9g5nh3uqzx/logo.png and /dev/null differ diff --git a/blockchains/terra/validators/assets/terravaloper1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wy0tzjx/logo.png b/blockchains/terra/validators/assets/terravaloper1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wy0tzjx/logo.png new file mode 100644 index 0000000000000..bc06b982599a4 Binary files /dev/null and b/blockchains/terra/validators/assets/terravaloper1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wy0tzjx/logo.png differ diff --git a/blockchains/terra/validators/list.json b/blockchains/terra/validators/list.json index 9209e3c839a5e..f733c42c161da 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,7 +73,7 @@ }, { "id": "terravaloper120ppepaj2lh5vreadx42wnjjznh55vvktp78wk", - "name": "Allnodes.com ⚡️ 0% fee", + "name": "Allnodes.com ⚡️", "description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.", "website": "https://www.allnodes.com/lunc/staking" }, @@ -118,5 +118,29 @@ "name": "JESUSisLORD", "description": "JESUSisLORD is an advanced non-custodial Luna Classic (LUNC) validator owned by Christopher Harris, a Bible believing Christian, powered by first-class staking provider Allnodes. Enjoy 99.9% server uptimes, maximum 5% commission, minimum 95% rewards, high security and updates.", "website": "https://tinyurl.com/ycknjwvr" + }, + { + "id": "terravaloper13avdm9rqxpftv3vrkaqaakakgh30909x8c07v3", + "name": "GalacticShift.io", + "description": "Terra Classic validator provided and maintained by GalacticShift.io / StrathCole", + "website": "https://galacticshift.io" + }, + { + "id": "terravaloper15ahd0dg9qwkg5tjmkn7fm6sdrpwa47m50l4zrg", + "name": "HappyCattyCrypto | Minimum Fees | Auto Compound | Auto USTC Airdrops", + "description": "I am a LUNC Revivalist who has brought to life the enchanting world of LUNCpenguinsNFT and spearheaded the visionary ProjectLUNCBurn initiative.", + "website": "https://hccfactory.com" + }, + { + "id": "terravaloper1aa6f2qeu0hrqpsxe4rggz0k7e43jfce43arz82", + "name": "Hexxagon - 100% Fund Infrastructure and Terra Classic Station", + "description": "Hexxagon provides infrastructure and Terra Classic Station wallet to the Terra Classic commmunity, 100% of our validator commissions goes to funding these services.", + "website": "https://hexxagon.io" + }, + { + "id": "terravaloper1s2xpff7mj6jpxfyhr7pe25vt8puvgj4wy0tzjx", + "name": "BInodes", + "description": "Information aggregation and data analysis platform", + "website": "https://www.binodes.com" } ] diff --git a/blockchains/terrav2/validators/assets/terravaloper16vc0num5aaq4mqdh4vjhs02s3ypd0j8c7ujxpm/logo.png b/blockchains/terrav2/validators/assets/terravaloper16vc0num5aaq4mqdh4vjhs02s3ypd0j8c7ujxpm/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper16vc0num5aaq4mqdh4vjhs02s3ypd0j8c7ujxpm/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper1mgpgp53tynj4djmckxdjhufa7q8lqqjuwnrlqm/logo.png b/blockchains/terrav2/validators/assets/terravaloper1mgpgp53tynj4djmckxdjhufa7q8lqqjuwnrlqm/logo.png new file mode 100644 index 0000000000000..4b09813738a9d Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper1mgpgp53tynj4djmckxdjhufa7q8lqqjuwnrlqm/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper1tfy452kxfcsa2353nenltade9esj7ffrc38gwn/logo.png b/blockchains/terrav2/validators/assets/terravaloper1tfy452kxfcsa2353nenltade9esj7ffrc38gwn/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper1tfy452kxfcsa2353nenltade9esj7ffrc38gwn/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper1vcd42qfvlvnjwaw7hvl6y32wrzqxvas653yus9/logo.png b/blockchains/terrav2/validators/assets/terravaloper1vcd42qfvlvnjwaw7hvl6y32wrzqxvas653yus9/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper1vcd42qfvlvnjwaw7hvl6y32wrzqxvas653yus9/logo.png differ diff --git a/blockchains/terrav2/validators/assets/terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz/logo.png b/blockchains/terrav2/validators/assets/terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/terrav2/validators/assets/terravaloper1yy5379nk24xffpq4egw7ue4ad3j7l79ma2enmz/logo.png differ diff --git a/blockchains/terrav2/validators/list.json b/blockchains/terrav2/validators/list.json new file mode 100644 index 0000000000000..df043ad501de4 --- /dev/null +++ b/blockchains/terrav2/validators/list.json @@ -0,0 +1,32 @@ +[ + { + "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/" + }, + { + "id": "terravaloper16vc0num5aaq4mqdh4vjhs02s3ypd0j8c7ujxpm", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + } +] \ No newline at end of file diff --git a/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/info.json b/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/info.json new file mode 100644 index 0000000000000..67400282f2876 --- /dev/null +++ b/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/info.json @@ -0,0 +1,25 @@ +{ + "name": "QuipuSwap", + "symbol": "QUIPU", + "type": "FA2", + "decimals": 6, + "description": "QuipuSwap Governance Token. QUIPU token is used in QuipuSwap AMM governance and as a means of payment for future services.", + "website": "https://quipuswap.com/swap", + "explorer": "https://tzstats.com/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb", + "status": "active", + "id": "KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb", + "links": [ + { + "name": "telegram", + "url": "https://t.me/MadFishCommunity" + }, + { + "name": "twitter", + "url": "https://twitter.com/QuipuSwap" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/quipuswap-governance-token/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/logo.png b/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/logo.png new file mode 100644 index 0000000000000..f460a82ea7d16 Binary files /dev/null and b/blockchains/tezos/assets/KT193D4vozYnhGJQVtw7CoxxqphqUEEwK6Vb/logo.png differ diff --git a/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/info.json b/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/info.json new file mode 100644 index 0000000000000..7897c352bc677 --- /dev/null +++ b/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ethereum", + "symbol": "ETHtez", + "type": "FA2", + "decimals": 18, + "description": "Ethereum is a decentralized open-source blockchain system that features its own cryptocurrency, Ether. ETH works as a platform for numerous other cryptocurrencies, as well as for the execution of decentralized smart contracts.", + "website": "https://ethereum.org/", + "explorer": "https://tzstats.com/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8", + "status": "active", + "id": "KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8", + "links": [ + { + "name": "github", + "url": "https://github.com/ethereum/ethereum-org-website" + }, + { + "name": "twitter", + "url": "https://twitter.com/ethdotorg" + }, + { + "name": "youtube", + "url": "https://youtube.com/channel/UCNOfzGXD_C9YMYmnefmPH0g" + }, + { + "name": "discord", + "url": "https://discord.com/invite/CetY6Y4" + } + ] +} \ No newline at end of file diff --git a/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/logo.png b/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/logo.png new file mode 100644 index 0000000000000..b5fb248e88a76 Binary files /dev/null and b/blockchains/tezos/assets/KT19at7rQUvyjxnZ2fBv7D9zc8rkyG7gAoU8/logo.png differ diff --git a/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/info.json b/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/info.json new file mode 100644 index 0000000000000..47b52d2d3cb16 --- /dev/null +++ b/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/info.json @@ -0,0 +1,21 @@ +{ + "name": "Hic et nunc DAO", + "symbol": "HDAO", + "type": "FA2", + "decimals": 6, + "description": "QuipuSwap Governance Token. QUIPU token is used in QuipuSwap AMM governance and as a means of payment for future services.", + "website": "https://quipuswap.com/swap", + "explorer": "https://tzstats.com/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW", + "status": "active", + "id": "KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/hicetnunc2000" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/hic-et-nunc-dao/" + } + ] +} diff --git a/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/logo.png b/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/logo.png new file mode 100644 index 0000000000000..025371c336696 Binary files /dev/null and b/blockchains/tezos/assets/KT1AFA2mwNUMNd4SsujE1YYp29vd8BZejyKW/logo.png differ diff --git a/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/info.json b/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/info.json new file mode 100644 index 0000000000000..5972914be6d80 --- /dev/null +++ b/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/info.json @@ -0,0 +1,21 @@ +{ + "name": "USDtez", + "symbol": "USDTZ", + "type": "FA2", + "decimals": 6, + "description": "USDtez is a USDC-pegged Tezos stablecoin issued by the Tezos Stable Technologies Ltd", + "website": "https://usdtz.com", + "explorer": "https://tzstats.com/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9", + "status": "active", + "id": "KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/usdtz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usdtez/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/logo.png b/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/logo.png new file mode 100644 index 0000000000000..36a805dcc9fde Binary files /dev/null and b/blockchains/tezos/assets/KT1LN4LPSqTMS7Sd2CJw4bbDGRkMv2t68Fy9/logo.png differ diff --git a/blockchains/tia/info/info.json b/blockchains/tia/info/info.json new file mode 100644 index 0000000000000..933091e0030fb --- /dev/null +++ b/blockchains/tia/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Celestia", + "website": "https://celestia.org", + "description": "Celestia is a modular data availability network that securely scales with the number of users, making it easy for anyone to launch their own blockchain.", + "explorer": "https://www.mintscan.io/celestia", + "symbol": "TIA", + "type": "coin", + "decimals": 6, + "status": "active", + "links": [ + { + "name": "github", + "url": "https://github.com/celestiaorg" + }, + { + "name": "twitter", + "url": "https://twitter.com/CelestiaOrg" + } + ] +} diff --git a/blockchains/tia/info/logo.png b/blockchains/tia/info/logo.png new file mode 100644 index 0000000000000..38a1dbc366c95 Binary files /dev/null and b/blockchains/tia/info/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcvqd22/logo.png b/blockchains/tia/validators/assets/celestiavaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcvqd22/logo.png new file mode 100644 index 0000000000000..9b28ec000f281 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcvqd22/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper15urq2dtp9qce4fyc85m6upwm9xul3049gwdz0x/logo.png b/blockchains/tia/validators/assets/celestiavaloper15urq2dtp9qce4fyc85m6upwm9xul3049gwdz0x/logo.png new file mode 100644 index 0000000000000..a1fb2e987e3c5 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper15urq2dtp9qce4fyc85m6upwm9xul3049gwdz0x/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1dlsl4u42ycahzjfwc6td6upgsup9tt7cz8vqm4/logo.png b/blockchains/tia/validators/assets/celestiavaloper1dlsl4u42ycahzjfwc6td6upgsup9tt7cz8vqm4/logo.png new file mode 100644 index 0000000000000..4b09813738a9d Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1dlsl4u42ycahzjfwc6td6upgsup9tt7cz8vqm4/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1e2p4u5vqwgum7pm9vhp0yjvl58gvhfc6yfatw4/logo.png b/blockchains/tia/validators/assets/celestiavaloper1e2p4u5vqwgum7pm9vhp0yjvl58gvhfc6yfatw4/logo.png new file mode 100644 index 0000000000000..14f73e55dfe2f Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1e2p4u5vqwgum7pm9vhp0yjvl58gvhfc6yfatw4/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1geuw5f6u3n5l4ne2d2nze3fehxf023f7s8h08t/logo.png b/blockchains/tia/validators/assets/celestiavaloper1geuw5f6u3n5l4ne2d2nze3fehxf023f7s8h08t/logo.png new file mode 100644 index 0000000000000..405520244e26d Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1geuw5f6u3n5l4ne2d2nze3fehxf023f7s8h08t/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1mhux0vt6qszz8qwv8axggt02jjm7tuvdfhz78j/logo.png b/blockchains/tia/validators/assets/celestiavaloper1mhux0vt6qszz8qwv8axggt02jjm7tuvdfhz78j/logo.png new file mode 100644 index 0000000000000..09ad204add312 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1mhux0vt6qszz8qwv8axggt02jjm7tuvdfhz78j/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1xqc7w3pe38kg4tswjt7mnvks7gy4p38vtsuycj/logo.png b/blockchains/tia/validators/assets/celestiavaloper1xqc7w3pe38kg4tswjt7mnvks7gy4p38vtsuycj/logo.png new file mode 100644 index 0000000000000..962c00c941b3b Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1xqc7w3pe38kg4tswjt7mnvks7gy4p38vtsuycj/logo.png differ diff --git a/blockchains/tia/validators/assets/celestiavaloper1yknsyf9ws4ugtv3r9g43kwqkne4zmrupcxhlth/logo.png b/blockchains/tia/validators/assets/celestiavaloper1yknsyf9ws4ugtv3r9g43kwqkne4zmrupcxhlth/logo.png new file mode 100644 index 0000000000000..0f6305d87f6e5 Binary files /dev/null and b/blockchains/tia/validators/assets/celestiavaloper1yknsyf9ws4ugtv3r9g43kwqkne4zmrupcxhlth/logo.png differ diff --git a/blockchains/tia/validators/list.json b/blockchains/tia/validators/list.json new file mode 100644 index 0000000000000..f0050cf8d3e01 --- /dev/null +++ b/blockchains/tia/validators/list.json @@ -0,0 +1,50 @@ +[ + { + "id": "celestiavaloper1e2p4u5vqwgum7pm9vhp0yjvl58gvhfc6yfatw4", + "name": "Finoa Consensus Services", + "description": "Stake and grow your assets using Finoa's institutional-grade infrastructure.", + "website": "https://www.finoa.io/staking-delegation/" + }, + { + "id": "celestiavaloper15urq2dtp9qce4fyc85m6upwm9xul3049gwdz0x", + "name": "Chorus One", + "description": "Secure Celestia and shape its future by delegating to Chorus One, a highly secure and stable validator.", + "website": "https://chorus.one/" + }, + { + "id": "celestiavaloper1geuw5f6u3n5l4ne2d2nze3fehxf023f7s8h08t", + "name": "Coinbase Cloud", + "description": "Coinbase Cloud provides secure and reliable blockchain infrastructure and APIs. Stake your crypto to our enterprise-grade validators.", + "website": "https://www.coinbase.com/cloud" + }, + { + "id": "celestiavaloper1mhux0vt6qszz8qwv8axggt02jjm7tuvdfhz78j", + "name": "Twinstake", + "description": "Twinstake is an institutional-grade, non-custodial staking provider designed and built in collaboration with leaders in the digital assets space. The platform offers industry leading performance, institutional-grade security and uncompromising Know Your Client (KYC) procedures.", + "website": "https://twinstake.io/" + }, + { + "id": "celestiavaloper1xqc7w3pe38kg4tswjt7mnvks7gy4p38vtsuycj", + "name": "Figment", + "description": "Staking with Figment is supported by the leading digital asset wallets and custody providers.", + "website": "https://figment.io/" + }, + { + "id": "celestiavaloper140l6y2gp3gxvay6qtn70re7z2s0gn57zcvqd22", + "name": "Lavender.Five Nodes 🐝", + "description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.", + "website": "https://lavenderfive.com/" + }, + { + "id": "celestiavaloper1dlsl4u42ycahzjfwc6td6upgsup9tt7cz8vqm4", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "celestiavaloper1yknsyf9ws4ugtv3r9g43kwqkne4zmrupcxhlth", + "name": "Stakely.io", + "description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱", + "website": "https://stakely.io" + } +] diff --git a/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/info.json b/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/info.json index c5efbc4706952..b5a9039f90e56 100644 --- a/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/info.json +++ b/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/info.json @@ -5,7 +5,7 @@ "decimals": 6, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776", + "explorer": "https://tomoscan.io/token/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776", "status": "abandoned", "id": "0x01F83cE6636179b54b0CC0C408f9a8bce40ae776" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/logo.png b/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/logo.png deleted file mode 100644 index 91dd7c5e0ca85..0000000000000 Binary files a/blockchains/tomochain/assets/0x01F83cE6636179b54b0CC0C408f9a8bce40ae776/logo.png and /dev/null differ diff --git a/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json b/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json index 7f0cb96ab6af0..83a1847656c8c 100644 --- a/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json +++ b/blockchains/tomochain/assets/0x17B26400621695c2D8C2D8869f6259E82D7544c4/info.json @@ -5,7 +5,7 @@ "decimals": 18, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0x17B26400621695c2D8C2D8869f6259E82D7544c4", + "explorer": "https://tomoscan.io/token/0x17B26400621695c2D8C2D8869f6259E82D7544c4", "status": "active", "id": "0x17B26400621695c2D8C2D8869f6259E82D7544c4" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/info.json b/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/info.json new file mode 100644 index 0000000000000..796cc04b1403a --- /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 0000000000000..004cabcc246fd Binary files /dev/null and b/blockchains/tomochain/assets/0x453B71962b5ffbe830a47AbB11A5CFd35C4250BA/logo.png differ diff --git a/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/info.json b/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/info.json new file mode 100644 index 0000000000000..96b18729376ed --- /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 0000000000000..516ff8be7c197 Binary files /dev/null and b/blockchains/tomochain/assets/0x5080781e91237b6D7f026D5306b7233e26Cd6C16/logo.png differ diff --git a/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/info.json b/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/info.json new file mode 100644 index 0000000000000..5d23cfb32f283 --- /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 0000000000000..2a0fb19413dd0 Binary files /dev/null and b/blockchains/tomochain/assets/0x567b1e373f7285e9a32f5eeB9305b6964B6a3532/logo.png differ diff --git a/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/info.json b/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/info.json index 7ec780b5a8eb1..770baefab4aff 100644 --- a/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/info.json +++ b/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/info.json @@ -5,7 +5,7 @@ "decimals": 6, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84", + "explorer": "https://tomoscan.io/token/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84", "status": "abandoned", "id": "0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/logo.png b/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/logo.png deleted file mode 100644 index cfb8873a44c9f..0000000000000 Binary files a/blockchains/tomochain/assets/0x5e55D0c59287F5F8d540eF0766cA3F3810C71B84/logo.png and /dev/null differ diff --git a/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/info.json b/blockchains/tomochain/assets/0x8103Bb77eD2035b5da9A3A65d9c313cb6eE41dbD/info.json index 74915867e612c..8265e69f13308 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 860c1da31c088..68bd663b46b50 100644 --- a/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/info.json +++ b/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/info.json @@ -5,7 +5,7 @@ "decimals": 4, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8", + "explorer": "https://tomoscan.io/token/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8", "status": "abandoned", "id": "0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/logo.png b/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/logo.png deleted file mode 100644 index 2b0e8d742bb25..0000000000000 Binary files a/blockchains/tomochain/assets/0x936b1F7290c8CFC57e31D7e4a301D5F9fA5B0cd8/logo.png and /dev/null differ diff --git a/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json b/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json index 4f48cb290768f..52526e3f57fb4 100644 --- a/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json +++ b/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/info.json @@ -5,7 +5,7 @@ "decimals": 6, "description": "-", "website": "", - "explorer": "https://scan.tomochain.com/address/0xcE98172f4fC9Ad02da607843A2C211b7834431da", + "explorer": "https://tomoscan.io/token/0xcE98172f4fC9Ad02da607843A2C211b7834431da", "status": "abandoned", "id": "0xcE98172f4fC9Ad02da607843A2C211b7834431da" } \ No newline at end of file diff --git a/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/logo.png b/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/logo.png deleted file mode 100644 index 088da52294f27..0000000000000 Binary files a/blockchains/tomochain/assets/0xcE98172f4fC9Ad02da607843A2C211b7834431da/logo.png and /dev/null differ diff --git a/blockchains/tomochain/info/info.json b/blockchains/tomochain/info/info.json index c6c89ac229913..7e84cc2efa904 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 9b00b4c7ee35b..4a9aa96eacf27 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 0000000000000..bb38018c00091 --- /dev/null +++ b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO", + "name": "STON", + "type": "JETTON", + "symbol": "STON", + "decimals": 9, + "description": "STON is the utility token of the STON.fi DEX integrated into the core protocol mechanics. STON allows participation in protocol governance through long-term staking.", + "status": "active", + "explorer": "https://tonscan.org/address/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO", + "id": "EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO", + "website": "https://ston.fi/", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/logo.png b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/logo.png new file mode 100644 index 0000000000000..c9eb9c8508e67 Binary files /dev/null and b/blockchains/ton/assets/EQA2kCVNwVsil2EM2mB0SkXytxCqQjS4mttjDpnXmwG9T6bO/logo.png differ diff --git a/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/info.json b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/info.json new file mode 100644 index 0000000000000..1cf9921744dcf --- /dev/null +++ b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR", + "name": "Orbit Bridge Ton Dai", + "type": "JETTON", + "symbol": "oDAI", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR", + "id": "EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/logo.png b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/logo.png new file mode 100644 index 0000000000000..8471bd656dbc4 Binary files /dev/null and b/blockchains/ton/assets/EQAAXwH0cajPsMF-nNC5kz-SaLaeaDr4M7Q1foVwP_vOW1tR/logo.png differ diff --git a/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/info.json b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/info.json new file mode 100644 index 0000000000000..6adf90fa77eb8 --- /dev/null +++ b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn", + "name": "KISS Coin", + "type": "JETTON", + "symbol": "KISS", + "decimals": 9, + "description": "TON KISS project coin", + "status": "active", + "explorer": "https://tonscan.org/address/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn", + "id": "EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn", + "website": "https://t.me/KISS_Coin", + "links": [ + { + "name": "telegram", + "url": "https://t.me/KISSCoinChat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/logo.png b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/logo.png new file mode 100644 index 0000000000000..d6eeb355ceb80 Binary files /dev/null and b/blockchains/ton/assets/EQAE8sAbvxMoIrN2tAuOe4vI5H4JhnHI-zn2VoRy-agH7BCn/logo.png differ diff --git a/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/info.json b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/info.json new file mode 100644 index 0000000000000..c7775c2eea10e --- /dev/null +++ b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L", + "name": "Orbit Bridge Ton KlaySwap Protocol", + "type": "JETTON", + "symbol": "oKSP", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L", + "id": "EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/logo.png b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/logo.png new file mode 100644 index 0000000000000..44986ce38ed77 Binary files /dev/null and b/blockchains/ton/assets/EQAIifXof_2FQjs5y4jjRpQ_1nOcJHdMz7qS3yskkoUeqn1L/logo.png differ diff --git a/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/info.json b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/info.json new file mode 100644 index 0000000000000..50365ac0ca58d --- /dev/null +++ b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB", + "name": "Orbit Bridge Ton Wrapped BTC", + "type": "JETTON", + "symbol": "oWBTC", + "decimals": 8, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB", + "id": "EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/logo.png b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/logo.png new file mode 100644 index 0000000000000..ecda101d9220a Binary files /dev/null and b/blockchains/ton/assets/EQANasbzD5wdVx0qikebkchrH64zNgsB38oC9PVu7rG16qNB/logo.png differ diff --git a/blockchains/ton/assets/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon/info.json b/blockchains/ton/assets/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon/info.json new file mode 100644 index 0000000000000..dfc0eea047365 --- /dev/null +++ b/blockchains/ton/assets/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon/info.json @@ -0,0 +1,21 @@ +{ + "name": "JetTon", + "website": "https://jetton.investments/en", + "description": "JetTon.Games Platform Token", + "explorer": "https://tonscan.org/ru/jetton/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon", + "type": "JETTON", + "symbol": "JETTON", + "decimals": 9, + "status": "active", + "id": "EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/JetTonGames" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/jetton/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon/logo.png b/blockchains/ton/assets/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon/logo.png new file mode 100644 index 0000000000000..651980329fc63 Binary files /dev/null and b/blockchains/ton/assets/EQAQXlWJvGbbFfE8F3oS8s87lIgdovS455IsWFaRdmJetTon/logo.png differ diff --git a/blockchains/ton/assets/EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln/info.json b/blockchains/ton/assets/EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln/info.json new file mode 100644 index 0000000000000..462cdd636c3fb --- /dev/null +++ b/blockchains/ton/assets/EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln/info.json @@ -0,0 +1,29 @@ +{ + "name": "AVACOIN", + "type": "JETTON", + "symbol": "AVACN", + "decimals": 9, + "website": "https://t.me/avagoldcoin_bot", + "description": "AVACOIN is a Telegram mini-app that has evolved far beyond its original clicker game for mining virtual gold. It now features a range of exciting elements, including gaming, a marketplace for mini-apps, staking, farming, and soon, educational content, further enhancing the app’s evolution and functionality.", + "explorer": "https://tonscan.org/ru/jetton/EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln", + "status": "active", + "id": "EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln", + "links": [ + { + "name": "telegram", + "url": "https://t.me/avagoldcoin_bot" + }, + { + "name": "telegram_news", + "url": "https://t.me/avagoldcoin" + }, + { + "name": "twitter", + "url": "https://twitter.com/avagoldcoin" + }, + { + "name": "youtube", + "url": "https://youtube.com/@AVA-GOLDCOIN" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln/logo.png b/blockchains/ton/assets/EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln/logo.png new file mode 100644 index 0000000000000..2f69bc784cff3 Binary files /dev/null and b/blockchains/ton/assets/EQAR-KBduwL4w-Lg72QFX4tWTOAJCGS72FkGHrJL9Qt7P9ln/logo.png differ diff --git a/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/info.json b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/info.json new file mode 100644 index 0000000000000..c26a2f901b8ed --- /dev/null +++ b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR", + "name": "Love You", + "type": "JETTON", + "symbol": "LOVE", + "decimals": 9, + "description": "The concept of the LOVE jetton is the Metaverse. Metaverse for virtual dating. Jetton based on the TON blockchain. Telegram channel - @loveholders, @loveholderschat, @loveholderseng, @loveengchat, loveholders.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR", + "id": "EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR", + "website": "https://loveholders.com/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/loveholderschat" + }, + { + "name": "telegram_news", + "url": "https://t.me/loveholderseng" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/logo.png b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/logo.png new file mode 100644 index 0000000000000..431a0c1e3dc90 Binary files /dev/null and b/blockchains/ton/assets/EQAS2elYb6_hqWyOl7gpuYTzf1sqmjLJQ0lQ4X_4d_MvtMWR/logo.png differ diff --git a/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/info.json b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/info.json new file mode 100644 index 0000000000000..301e08fdd9447 --- /dev/null +++ b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-", + "name": "Orbit Bridge Ton Ethereum", + "type": "JETTON", + "symbol": "oETH", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-", + "id": "EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/logo.png b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/logo.png new file mode 100644 index 0000000000000..c5cee244465c6 Binary files /dev/null and b/blockchains/ton/assets/EQAW42HutyDem98Be1f27PoXobghh81umTQ-cGgaKVmRLS7-/logo.png differ diff --git a/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/info.json b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/info.json new file mode 100644 index 0000000000000..aa3ea84c07b86 --- /dev/null +++ b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs", + "name": "Stalin", + "type": "JETTON", + "symbol": "IVS", + "decimals": 9, + "description": "Look for Stalin inside yourself.", + "status": "active", + "explorer": "https://tonscan.org/address/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs", + "id": "EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs", + "website": "https://t.me/Stalin_IVS", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Stalin_chat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/logo.png b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/logo.png new file mode 100644 index 0000000000000..93f5bdd08f023 Binary files /dev/null and b/blockchains/ton/assets/EQAdSQFNyPCbT14QKPBZzpQkf4MC5AvYsiNYZolymzrckMBs/logo.png differ diff --git a/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/info.json b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/info.json new file mode 100644 index 0000000000000..629c9948f63a9 --- /dev/null +++ b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad", + "name": "Orbit Bridge Ton GALAXIA", + "type": "JETTON", + "symbol": "oGXA", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad", + "id": "EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/logo.png b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/logo.png new file mode 100644 index 0000000000000..1fbb82754494a Binary files /dev/null and b/blockchains/ton/assets/EQAtPfb42ZZpZmLraFpWUB_Z6dZ3pxD28swXjFD-eS2NTyad/logo.png differ diff --git a/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/info.json b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/info.json new file mode 100644 index 0000000000000..3e43faa241d40 --- /dev/null +++ b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y", + "name": "Tegro", + "type": "JETTON", + "symbol": "TGR", + "decimals": 9, + "description": "Cross-platform payment token on the TON blockchain.", + "status": "active", + "explorer": "https://tonscan.org/address/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y", + "id": "EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y", + "website": "https://tegro.io", + "links": [ + { + "name": "telegram", + "url": "https://t.me/TgrTon" + }, + { + "name": "twitter", + "url": "https://twitter.com/tgrtoken" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/logo.png b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/logo.png new file mode 100644 index 0000000000000..27b09f47b50a6 Binary files /dev/null and b/blockchains/ton/assets/EQAvDfWFG0oYX19jwNDNBBL1rKNT9XfaGP9HyTb5nb2Eml6y/logo.png differ diff --git a/blockchains/ton/assets/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT/info.json b/blockchains/ton/assets/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT/info.json new file mode 100644 index 0000000000000..ff7fcb8b93217 --- /dev/null +++ b/blockchains/ton/assets/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT/info.json @@ -0,0 +1,21 @@ +{ + "name": "Notcoin", + "website": "https://notco.in/", + "description": "Probably nothing", + "explorer": "https://tonscan.org/ru/jetton/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT", + "symbol": "NOT", + "type": "JETTON", + "decimals": 9, + "id": "EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT", + "status": "active", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/thenotcoin" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/notcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT/logo.png b/blockchains/ton/assets/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT/logo.png new file mode 100644 index 0000000000000..fb41273d09299 Binary files /dev/null and b/blockchains/ton/assets/EQAvlWFDxGF2lXm67y4yzC17wYKD9A0guwPkMs1gOsM__NOT/logo.png differ diff --git a/blockchains/ton/assets/EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a/info.json b/blockchains/ton/assets/EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a/info.json new file mode 100644 index 0000000000000..a119465f61d1d --- /dev/null +++ b/blockchains/ton/assets/EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a/info.json @@ -0,0 +1,21 @@ +{ + "name": "UTYABSWAP", + "website": "https://www.utyabswap.com/", + "description": "JetTon.Games Platform Token", + "explorer": "https://tonscan.org/ru/jetton/EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a", + "type": "JETTON", + "symbol": "UTYAB", + "decimals": 9, + "status": "active", + "id": "EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/TonUtyab" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/utya-black/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a/logo.png b/blockchains/ton/assets/EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a/logo.png new file mode 100644 index 0000000000000..965e690be26e8 Binary files /dev/null and b/blockchains/ton/assets/EQAw63ZqLmnwRA77PW07CWIEngwg-eIiysaqZ8IWpUL0nP7a/logo.png differ diff --git a/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/info.json b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/info.json new file mode 100644 index 0000000000000..dd508554074e6 --- /dev/null +++ b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy", + "name": "Ton Earth coin", + "type": "JETTON", + "symbol": "TEC", + "decimals": 9, + "description": "Ton Earth universe coin on the Legendary Blockchain.", + "status": "active", + "explorer": "https://tonscan.org/address/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy", + "id": "EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy", + "website": "https://tonearth.com/" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/logo.png b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/logo.png new file mode 100644 index 0000000000000..a48bf77783d54 Binary files /dev/null and b/blockchains/ton/assets/EQAwH_MEmoEbD_AGUdnoWwpvSBcctx_jbDCuB0Z8dXbrAdxy/logo.png differ diff --git a/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/info.json b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/info.json new file mode 100644 index 0000000000000..d88358908fc96 --- /dev/null +++ b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx", + "name": "Orbit Bridge Ton Orbs", + "type": "JETTON", + "symbol": "oORBS", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx", + "id": "EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/logo.png b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/logo.png new file mode 100644 index 0000000000000..80eb04ab97b76 Binary files /dev/null and b/blockchains/ton/assets/EQAwr5lcbQcLKTAg_SQ-dpKWNQZpO1MGnrAs53bf1gkKTVHx/logo.png differ diff --git a/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/info.json b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/info.json new file mode 100644 index 0000000000000..461ed14e6aee0 --- /dev/null +++ b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO", + "name": "ELKITON", + "type": "JETTON", + "symbol": "SNEG", + "decimals": 9, + "status": "active", + "description": "The ecosystem of the Christmas Tree", + "explorer": "https://tonscan.org/address/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO", + "id": "EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO", + "website": "https://getgems.io/collection/EQBlZxMOVRhZxqKYmjeaJALBjHGyMReU5L9xSFCB6BjnA_hM" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/logo.png b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/logo.png new file mode 100644 index 0000000000000..3d4f06ea31e3c Binary files /dev/null and b/blockchains/ton/assets/EQAzMmZWo2yo4ybPUMvIgfFQ3a53f4WUTjf2-LE7oJxCJHnO/logo.png differ diff --git a/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/info.json b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/info.json new file mode 100644 index 0000000000000..8b14b748325ad --- /dev/null +++ b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728", + "name": "jUSDC", + "type": "JETTON", + "symbol": "jUSDC", + "decimals": 6, + "description": "USDC transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "status": "active", + "explorer": "https://tonscan.org/address/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728", + "id": "EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728", + "website": "https://bridge.ton.org/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/logo.png b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/logo.png new file mode 100644 index 0000000000000..daa81b4a3a3cf Binary files /dev/null and b/blockchains/ton/assets/EQB-MPwrd1G6WKNkLz_VnV6WqBDd142KMQv-g1O-8QUA3728/logo.png differ diff --git a/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/info.json b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/info.json new file mode 100644 index 0000000000000..76f9162ba5046 --- /dev/null +++ b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp", + "name": "TonexCoin", + "type": "JETTON", + "symbol": "TNX", + "decimals": 9, + "description": "A tool to create the future", + "status": "active", + "explorer": "https://tonscan.org/address/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp", + "id": "EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp", + "website": "https://tonex.app/" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/logo.png b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/logo.png new file mode 100644 index 0000000000000..440231cc26ccf Binary files /dev/null and b/blockchains/ton/assets/EQB-ajMyi5-WKIgOHnbOGApfckUGbl6tDk3Qt8PKmb-xLAvp/logo.png differ diff --git a/blockchains/ton/assets/EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0/info.json b/blockchains/ton/assets/EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0/info.json new file mode 100644 index 0000000000000..126e1587a3a79 --- /dev/null +++ b/blockchains/ton/assets/EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0/info.json @@ -0,0 +1,21 @@ +{ + "name": "povel durev", + "website": "https://poveldurev.net/", + "description": "mek bellions TONs of memes durev.xyz", + "explorer": "https://tonscan.org/ru/jetton/EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0", + "type": "JETTON", + "symbol": "durev", + "decimals": 9, + "status": "active", + "id": "EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/poveldurev" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/povel-durev/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0/logo.png b/blockchains/ton/assets/EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0/logo.png new file mode 100644 index 0000000000000..b0b949af35c59 Binary files /dev/null and b/blockchains/ton/assets/EQB02DJ0cdUD4iQDRbBv4aYG3htePHBRK1tGeRtCnatescK0/logo.png differ diff --git a/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/info.json b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/info.json new file mode 100644 index 0000000000000..80c662d3808c7 --- /dev/null +++ b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr", + "name": "FANTIK", + "type": "JETTON", + "symbol": "FANT", + "decimals": 9, + "description": "The candy wrapper", + "status": "active", + "explorer": "https://tonscan.org/address/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr", + "id": "EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr", + "website": "https://olbanec.shop", + "links": [ + { + "name": "telegram", + "url": "https://t.me/olbania_memeland" + } + ], + "tags": [ + "memes", + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/logo.png b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/logo.png new file mode 100644 index 0000000000000..13940d49f4a17 Binary files /dev/null and b/blockchains/ton/assets/EQB3VF6fsSsPrUjSQ4bQdvb9R1ptsyx8t9mzvJOowvXB-6yr/logo.png differ diff --git a/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/info.json b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/info.json new file mode 100644 index 0000000000000..a31f0e04f7aa5 --- /dev/null +++ b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B", + "name": "DHD Coin", + "type": "JETTON", + "symbol": "DHD", + "decimals": 9, + "description": "Low fee dick-to-dick electronic cash alternative to Toncoin", + "status": "active", + "explorer": "https://tonscan.org/address/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B", + "id": "EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B", + "website": "http://www.dhdgame.ru/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WayofDHD" + }, + { + "name": "telegram_news", + "url": "https://t.me/CoinDHD" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/logo.png b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/logo.png new file mode 100644 index 0000000000000..d40a01d666b81 Binary files /dev/null and b/blockchains/ton/assets/EQBCFwW8uFUh-amdRmNY9NyeDEaeDYXd9ggJGsicpqVcHq7B/logo.png differ diff --git a/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/info.json b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/info.json new file mode 100644 index 0000000000000..5363c5ae789bf --- /dev/null +++ b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu", + "name": "Orbit Bridge Ton MOOI", + "type": "JETTON", + "symbol": "oMOOI", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu", + "id": "EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/logo.png b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/logo.png new file mode 100644 index 0000000000000..0e377dafdec0e Binary files /dev/null and b/blockchains/ton/assets/EQBDD3li7w-OPcWSGfe2RTz0sydcaLKrk8W0nPyLA9iy8Hcu/logo.png differ diff --git a/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/info.json b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/info.json new file mode 100644 index 0000000000000..26e9a72c458fd --- /dev/null +++ b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc", + "name": "Orbit Bridge Ton GemHUB", + "type": "JETTON", + "symbol": "oGHUB", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc", + "id": "EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/logo.png b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/logo.png new file mode 100644 index 0000000000000..fbf97a9b6100a Binary files /dev/null and b/blockchains/ton/assets/EQBDMHQQlWX7RNKH-YeSJiPCwIK6z7EBFrClly11pOXgNdnc/logo.png differ diff --git a/blockchains/ton/assets/EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt/info.json b/blockchains/ton/assets/EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt/info.json new file mode 100644 index 0000000000000..d32d411c06474 --- /dev/null +++ b/blockchains/ton/assets/EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt/info.json @@ -0,0 +1,21 @@ +{ + "name": "GRAND", + "type": "JETTON", + "symbol": "GRAND", + "decimals": 9, + "description": "$GRAND is a utility token for the GRAND mini app’s ecosystem.", + "status": "active", + "explorer": "https://tonscan.org/jetton/EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt", + "id": "EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt", + "website": "https://grandcombat.io/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/grandcombat" + }, + { + "name": "twitter", + "url": "https://twitter.com/grand_combat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt/logo.png b/blockchains/ton/assets/EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt/logo.png new file mode 100644 index 0000000000000..134e51a9ad696 Binary files /dev/null and b/blockchains/ton/assets/EQBE6A9Pf7DGcOVjnzoR_kEoi0uGgSBRVT4GMsbEqIoTCcNt/logo.png differ diff --git a/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/info.json b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/info.json new file mode 100644 index 0000000000000..7afe245c78903 --- /dev/null +++ b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP", + "name": "Orbit Bridge Ton Kai Token", + "type": "JETTON", + "symbol": "KAI", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP", + "id": "EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/logo.png b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/logo.png new file mode 100644 index 0000000000000..f8cda8555b24d Binary files /dev/null and b/blockchains/ton/assets/EQBLKkhmJFPlqjHsLu3HO-KSXaOagJI_ADI5wG9ybm53qXuP/logo.png differ diff --git a/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/info.json b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/info.json new file mode 100644 index 0000000000000..2331534286d5f --- /dev/null +++ b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u", + "name": "FRAGMENT", + "type": "JETTON", + "symbol": "FRG", + "decimals": 9, + "description": "This token gives you the opportunity to be a member of Fragment Chat! @fragmentChat (https://t.me/fragmentChat)", + "status": "active", + "explorer": "https://tonscan.org/address/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u", + "id": "EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u", + "website": "https://ton.app/chats/frgchat", + "links": [ + { + "name": "telegram", + "url": "https://t.me/fragmentChat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/logo.png b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/logo.png new file mode 100644 index 0000000000000..8bab713c9a029 Binary files /dev/null and b/blockchains/ton/assets/EQBR4LP9z2jr8mRi5Tzqq2wCLMtBsL7P46dntT_2FAqGfS7u/logo.png differ diff --git a/blockchains/ton/assets/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko/info.json b/blockchains/ton/assets/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko/info.json new file mode 100644 index 0000000000000..57b54ce3e91d6 --- /dev/null +++ b/blockchains/ton/assets/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko/info.json @@ -0,0 +1,21 @@ +{ + "name": "Resistance Dog", + "website": "https://www.redoton.com/", + "description": "Pavel Durov Founder Of The Digital Resitance Dog - $REDO is a meme coin on the TON Blockchain.", + "explorer": "https://tonscan.org/ru/jetton/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko", + "type": "JETTON", + "symbol": "REDO", + "decimals": 9, + "status": "active", + "id": "EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/redotoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/resistance-dog/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko/logo.png b/blockchains/ton/assets/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko/logo.png new file mode 100644 index 0000000000000..8338324895f60 Binary files /dev/null and b/blockchains/ton/assets/EQBZ_cafPyDr5KUTs0aNxh0ZTDhkpEZONmLJA2SNGlLm4Cko/logo.png differ diff --git a/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/info.json b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/info.json new file mode 100644 index 0000000000000..08b8b267b9867 --- /dev/null +++ b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf", + "name": "MEGA", + "type": "JETTON", + "symbol": "MEGA", + "decimals": 9, + "description": "Megaton Finance Token", + "status": "active", + "explorer": "https://tonscan.org/address/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf", + "id": "EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf", + "website": "https://megaton.fi/", + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/logo.png b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/logo.png new file mode 100644 index 0000000000000..3cf611283b0c1 Binary files /dev/null and b/blockchains/ton/assets/EQBf6-YoR9xylol_NwjHrLkrTFAZJCX-bsd-Xx_902OaPaBf/logo.png differ diff --git a/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/info.json b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/info.json new file mode 100644 index 0000000000000..285a612e0d48b --- /dev/null +++ b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE", + "name": "HEDGE coin", + "type": "JETTON", + "symbol": "HEDGE", + "decimals": 9, + "description": "The spirit of wall-street hedgehogs on a legendary blockchain", + "status": "active", + "explorer": "https://tonscan.org/address/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE", + "id": "EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE", + "website": "https://t.me/tonhedgecoin" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/logo.png b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/logo.png new file mode 100644 index 0000000000000..a0ebb65efe146 Binary files /dev/null and b/blockchains/ton/assets/EQBiJ8dSbp3_YAb_KuC64zCrFqQTsFbUee5tbzr5el_HEDGE/logo.png differ diff --git a/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/info.json b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/info.json new file mode 100644 index 0000000000000..b0984a1397407 --- /dev/null +++ b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/info.json @@ -0,0 +1,12 @@ +{ + "address": "EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA", + "name": "Grabscape game token", + "type": "JETTON", + "symbol": "GRBS", + "decimals": 9, + "description": "The token was created for the game mechanics of the universe of the web3 Grabscape project", + "status": "active", + "explorer": "https://tonscan.org/address/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA", + "id": "EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA", + "website": "https://grabscape.io/" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/logo.png b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/logo.png new file mode 100644 index 0000000000000..962ff40608b1f Binary files /dev/null and b/blockchains/ton/assets/EQBj7uoIVsngmS-ayOz1nHENjZkjTt5mXB4uGa83hmcqq2wA/logo.png differ diff --git a/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/info.json b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/info.json new file mode 100644 index 0000000000000..cb4c532f9d3d3 --- /dev/null +++ b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9", + "name": "Orbit Bridge Ton apM Coin", + "type": "JETTON", + "symbol": "oAPM", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9", + "id": "EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/logo.png b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/logo.png new file mode 100644 index 0000000000000..2c922532532fc Binary files /dev/null and b/blockchains/ton/assets/EQBkoRg2UG67tj8QPoAfGltb9Vl8PLbofGO6FGMADuDBAZA9/logo.png differ diff --git a/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/info.json b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/info.json new file mode 100644 index 0000000000000..72d289d77d370 --- /dev/null +++ b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/info.json @@ -0,0 +1,25 @@ +{ + "name": "Lavandos", + "type": "JETTON", + "symbol": "LAVE", + "decimals": 9, + "description": "This is a universal token for use in all areas of the decentralized Internet in the TON blockchain, web3, Telegram channels, TON sites, Tonkeeper. Issue of 4.6 billion coins. Telegram channels: @lave_eng, @lavetoken, @lavefoundation, @lave_esp, www.lavetoken.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI", + "id": "EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI", + "website": "https://lavetoken.com/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/laveteam" + }, + { + "name": "telegram_news", + "url": "https://t.me/lavefoundation" + }, + { + "name": "twitter", + "url": "https://twitter.com/lave_token" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/logo.png b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/logo.png new file mode 100644 index 0000000000000..7ae24f3f879d7 Binary files /dev/null and b/blockchains/ton/assets/EQBl3gg6AAdjgjO2ZoNU5Q5EzUIl8XMNZrix8Z5dJmkHUfxI/logo.png differ diff --git a/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/info.json b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/info.json new file mode 100644 index 0000000000000..92937a47658f4 --- /dev/null +++ b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/info.json @@ -0,0 +1,25 @@ +{ + "address": "EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj", + "name": "Kote Coin", + "type": "JETTON", + "symbol": "KOTE", + "decimals": 9, + "description": "Kote Coin. It's the only one.", + "status": "active", + "explorer": "https://tonscan.org/address/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj", + "id": "EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj", + "website": "https://kotecoin.com/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/KoteCoin" + }, + { + "name": "telegram_news", + "url": "https://t.me/KoteCoinRU" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/logo.png b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/logo.png new file mode 100644 index 0000000000000..d7f49e3ceb096 Binary files /dev/null and b/blockchains/ton/assets/EQBlU_tKISgpepeMFT9t3xTDeiVmo25dW_4vUOl6jId_BNIj/logo.png differ diff --git a/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/info.json b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/info.json new file mode 100644 index 0000000000000..b41ab2504fe6b --- /dev/null +++ b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/info.json @@ -0,0 +1,29 @@ +{ + "address": "EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE", + "name": "Scaleton", + "type": "JETTON", + "symbol": "SCALE", + "decimals": 9, + "description": "SCALE is a utility token that will be used to support all independent developers.", + "status": "active", + "explorer": "https://tonscan.org/address/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE", + "id": "EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE", + "website": "https://scaleton.io", + "links": [ + { + "name": "telegram", + "url": "https://t.me/Scaleton" + }, + { + "name": "twitter", + "url": "https://twitter.com/ScaletonCo" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/scaleton/" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/logo.png b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/logo.png new file mode 100644 index 0000000000000..31e775994454a Binary files /dev/null and b/blockchains/ton/assets/EQBlqsm144Dq6SjbPI4jjZvA1hqTIP3CvHovbIfW_t-SCALE/logo.png differ diff --git a/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/info.json b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/info.json new file mode 100644 index 0000000000000..036b390fbfa6f --- /dev/null +++ b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX", + "name": "Orbit Bridge Ton Matic Token", + "type": "JETTON", + "symbol": "oMATIC", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX", + "id": "EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/logo.png b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/logo.png new file mode 100644 index 0000000000000..40cdc6a041b14 Binary files /dev/null and b/blockchains/ton/assets/EQBq4d4GPyBoh-Pjnf3wxUyQSS28WY2Yt-7cPAG8FHpWpNRX/logo.png differ diff --git a/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/info.json b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/info.json new file mode 100644 index 0000000000000..bca99b79d1464 --- /dev/null +++ b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J", + "name": "Wallet Exchanger", + "type": "JETTON", + "symbol": "WEX", + "decimals": 9, + "description": "Crypto exchanger token Wallet Exchanger, based on the blockchain The Open Network", + "status": "active", + "explorer": "https://tonscan.org/address/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J", + "id": "EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J", + "website": "https://t.me/WalletExplorerBot", + "links": [ + { + "name": "telegram", + "url": "https://t.me/WalletExplorerNews" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/logo.png b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/logo.png new file mode 100644 index 0000000000000..2530203d0ec90 Binary files /dev/null and b/blockchains/ton/assets/EQBtUKPbhABPYtltiKWA547s4ZhJ5wZHvVV1eyfV7sEyGs2J/logo.png differ diff --git a/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/info.json b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/info.json new file mode 100644 index 0000000000000..0804f7da08902 --- /dev/null +++ b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/info.json @@ -0,0 +1,21 @@ +{ + "name": "TON Bridged USDT", + "website": "https://bridge.ton.org/", + "description": "Tether USD transferred from Ethereum via bridge.ton.org.", + "explorer": "https://tonscan.org/ru/jetton/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA", + "type": "JETTON", + "symbol": "jUSDT", + "decimals": 6, + "status": "active", + "id": "EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/tether_to" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/ton-bridged-usdt/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/logo.png b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/logo.png new file mode 100644 index 0000000000000..d527902c3f229 Binary files /dev/null and b/blockchains/ton/assets/EQBynBO23ywHy_CgarY9NK9FTz0yDsG82PtcbSTQgGoXwiuA/logo.png differ diff --git a/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/info.json b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/info.json new file mode 100644 index 0000000000000..04fd3e65d54d5 --- /dev/null +++ b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/info.json @@ -0,0 +1,30 @@ +{ + "address": "EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ", + "name": "KINGYTON", + "type": "JETTON", + "symbol": "KINGY", + "decimals": 9, + "description": "Is an ecosystem token in the TON blockchain with a large Telegram community.", + "status": "active", + "explorer": "https://tonscan.org/address/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ", + "id": "EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ", + "website": "https://kingy.wtf", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/kingyton/" + }, + { + "name": "telegram", + "url": "https://t.me/investkingyru" + }, + { + "name": "telegram_news", + "url": "https://t.me/investkingyru_en" + }, + { + "name": "twitter", + "url": "https://twitter.com/IKingyru" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/logo.png b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/logo.png new file mode 100644 index 0000000000000..439a80819c15e Binary files /dev/null and b/blockchains/ton/assets/EQC-tdRjjoYMz3MXKW4pj95bNZgvRyWwZ23Jix3ph7guvHxJ/logo.png differ diff --git a/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/info.json b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/info.json new file mode 100644 index 0000000000000..f2bf315909a03 --- /dev/null +++ b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY", + "name": "ExCoin", + "type": "JETTON", + "symbol": "EXC", + "decimals": 0, + "description": "EXC is a financial service token in EXTON", + "status": "active", + "explorer": "https://tonscan.org/address/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY", + "id": "EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY", + "website": "https://t.me/exc_coin", + "links": [ + { + "name": "telegram", + "url": "https://t.me/EXTON_SWAP_BOT" + }, + { + "name": "telegram_news", + "url": "https://t.me/yakovlev_serj" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/logo.png b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/logo.png new file mode 100644 index 0000000000000..1dd358e16a027 Binary files /dev/null and b/blockchains/ton/assets/EQC0A6Fncq6gzWwyE_4UC8KjKLB3M_NkQtmRektkfo-GCcaY/logo.png differ diff --git a/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/info.json b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/info.json new file mode 100644 index 0000000000000..398632064ff39 --- /dev/null +++ b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4", + "name": "Orbit Bridge Ton USD Coin", + "type": "JETTON", + "symbol": "oUSDC", + "decimals": 6, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4", + "id": "EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/logo.png b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/logo.png new file mode 100644 index 0000000000000..956f9aa7a68af Binary files /dev/null and b/blockchains/ton/assets/EQC61IQRl0_la95t27xhIpjxZt32vl1QQVF2UgTNuvD18W-4/logo.png differ diff --git a/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/info.json b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/info.json new file mode 100644 index 0000000000000..7046c6fb05354 --- /dev/null +++ b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC", + "name": "Tenere", + "type": "JETTON", + "symbol": "Tnr", + "decimals": 9, + "description": "Audiatur et altera pars. Universal Altcoin on Ton. @teneretoken . chat: @tenerechat", + "status": "active", + "explorer": "https://tonscan.org/address/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC", + "id": "EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC", + "website": "https://t.me/teneretoken", + "links": [ + { + "name": "telegram", + "url": "https://t.me/tenerechat" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/logo.png b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/logo.png new file mode 100644 index 0000000000000..462c3ec6762b1 Binary files /dev/null and b/blockchains/ton/assets/EQCPmOnkTe8qP_ZtCf3Rys04ukRTiQc_xVS-lGQ6BH3JZWmC/logo.png differ diff --git a/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/info.json b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/info.json new file mode 100644 index 0000000000000..344b8017a5d87 --- /dev/null +++ b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz", + "name": "Find & Check", + "type": "JETTON", + "symbol": "FCK", + "decimals": 15, + "description": "The cornerstone of the Find & Check initiative within the TON ecosystem. Serving as the fuel of our unique set of analytical tools, FCK Token empowers the TON network users, catalyzes our initiatives, and opens up new possibilities for interaction with the blockchain. @FCKTokens, www.fck.dev ", + "status": "active", + "explorer": "https://tonscan.org/address/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz", + "id": "EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz", + "website": "https://fck.dev", + "links": [ + { + "name": "telegram", + "url": "https://t.me/FCKTokens" + }, + { + "name": "twitter", + "url": "https://twitter.com/FCKFoundation" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/logo.png b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/logo.png new file mode 100644 index 0000000000000..52234341752cd Binary files /dev/null and b/blockchains/ton/assets/EQCQZpelevHNsbw5IUtwSa4Cs8kqWww0KsYeDri9kwS18eCz/logo.png differ diff --git a/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/info.json b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/info.json new file mode 100644 index 0000000000000..4c7afff9e594a --- /dev/null +++ b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw", + "name": "Mars", + "type": "JETTON", + "symbol": "MARS", + "decimals": 9, + "description": "Mars Coin. Game TONPlanets.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw", + "id": "EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw", + "website": "https://tonplanets.com", + "links": [ + { + "name": "telegram", + "url": "https://t.me/TONPlanets" + }, + { + "name": "telegram_news", + "url": "https://t.me/TONPlanetsBot" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/logo.png b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/logo.png new file mode 100644 index 0000000000000..e967fb23f1126 Binary files /dev/null and b/blockchains/ton/assets/EQCZFOynaSK2D4TqSqcf0Dhaq4ofCCVi_f-z8fX-KqVdy-qw/logo.png differ diff --git a/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/info.json b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/info.json new file mode 100644 index 0000000000000..fe874a9ad46be --- /dev/null +++ b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi", + "name": "Orbit Bridge Ton USD Tether", + "type": "JETTON", + "symbol": "oUSDT", + "decimals": 6, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi", + "id": "EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/logo.png b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/logo.png new file mode 100644 index 0000000000000..bb55902a38de0 Binary files /dev/null and b/blockchains/ton/assets/EQC_1YoM8RBixN95lz7odcF3Vrkc_N8Ne7gQi7Abtlet_Efi/logo.png differ diff --git a/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/info.json b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/info.json new file mode 100644 index 0000000000000..e6a747f8c4266 --- /dev/null +++ b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C", + "name": "Wrapped TON", + "type": "JETTON", + "symbol": "WTON", + "decimals": 9, + "description": "Wrapped TON Coin", + "status": "active", + "explorer": "https://tonscan.org/address/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C", + "id": "EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C", + "website": "https://megaton.fi/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/logo.png b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/logo.png new file mode 100644 index 0000000000000..f70cefde9e2c8 Binary files /dev/null and b/blockchains/ton/assets/EQCajaUU1XXSAjTD-xOV7pE49fGtg4q8kF3ELCOJtGvQFQ2C/logo.png differ diff --git a/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/info.json b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/info.json new file mode 100644 index 0000000000000..48bee6c9ee49b --- /dev/null +++ b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV", + "name": "Ambra", + "type": "JETTON", + "symbol": "AMBR", + "decimals": 9, + "description": "The Whales Club Token", + "status": "active", + "explorer": "https://tonscan.org/address/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV", + "id": "EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV", + "website": "https://tonwhales.com/", + "tags": [ + "nft" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/logo.png b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/logo.png new file mode 100644 index 0000000000000..176ee6a51b7d3 Binary files /dev/null and b/blockchains/ton/assets/EQCcLAW537KnRg_aSPrnQJoyYjOZkzqYp6FVmRUvN1crSazV/logo.png differ diff --git a/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/info.json b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/info.json new file mode 100644 index 0000000000000..a1b5c75f247a4 --- /dev/null +++ b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5", + "name": "Orbit Bridge Ton Meshswap Protocol", + "type": "JETTON", + "symbol": "oMESH", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5", + "id": "EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/logo.png b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/logo.png new file mode 100644 index 0000000000000..38699eab45211 Binary files /dev/null and b/blockchains/ton/assets/EQCeGZcyr9Mkxf7OFLqyn40LLw292aCN_bxnT856rOkYW-I5/logo.png differ diff --git a/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/info.json b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/info.json new file mode 100644 index 0000000000000..e895a2dd3c69e --- /dev/null +++ b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ", + "name": "Orbit Bridge Ton WEMIX", + "type": "JETTON", + "symbol": "oWEMIX", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ", + "id": "EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/logo.png b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/logo.png new file mode 100644 index 0000000000000..b076f9345038c Binary files /dev/null and b/blockchains/ton/assets/EQCf7Nb341dxOE3N0jimngRxGEV8T3zo-eU2EZVs_nchNhhZ/logo.png differ diff --git a/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/info.json b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/info.json new file mode 100644 index 0000000000000..95eb43f308067 --- /dev/null +++ b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/info.json @@ -0,0 +1,11 @@ +{ + "address": "EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP", + "name": "Cock Fights Token", + "type": "JETTON", + "symbol": "CFT", + "decimals": 9, + "description": "Cock Fights Game Token", + "status": "active", + "explorer": "https://tonscan.org/address/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP", + "id": "EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/logo.png b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/logo.png new file mode 100644 index 0000000000000..b06b455fcc7e9 Binary files /dev/null and b/blockchains/ton/assets/EQCm4EVrocp34JFelHYPGx_D4pKqQ-gS6_xFZQzIwwA-WElP/logo.png differ diff --git a/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/info.json b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/info.json new file mode 100644 index 0000000000000..7beeded2a03b1 --- /dev/null +++ b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR", + "name": "Orbit Bridge Ton Azit", + "type": "JETTON", + "symbol": "oAZIT", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR", + "id": "EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/logo.png b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/logo.png new file mode 100644 index 0000000000000..84ee028f1ae56 Binary files /dev/null and b/blockchains/ton/assets/EQCmzlSgRI8GFVJrGRqaxo-jvTo7211twIb0BP4m4iKZ2hmR/logo.png differ diff --git a/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/info.json b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/info.json new file mode 100644 index 0000000000000..a5a80ffd0cc52 --- /dev/null +++ b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI", + "name": "Crumb Coin", + "type": "JETTON", + "symbol": "CRUMB", + "decimals": 9, + "description": "Crumb Coin (CRUMB) is a token used in the BRAD x Totkit ecosystem", + "status": "active", + "explorer": "https://tonscan.org/address/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI", + "id": "EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI", + "website": "https://tonbrad.com", + "links": [ + { + "name": "telegram", + "url": "https://t.me/brad_nft_ton" + }, + { + "name": "telegram_news", + "url": "https://t.me/totkitnews" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/logo.png b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/logo.png new file mode 100644 index 0000000000000..f16bd0ec5cc82 Binary files /dev/null and b/blockchains/ton/assets/EQCoZBZ2z9Au3dzDNNi8XkBxhuIanaD1Eb2_oFREYQy3IEBI/logo.png differ diff --git a/blockchains/ton/assets/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p/info.json b/blockchains/ton/assets/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p/info.json new file mode 100644 index 0000000000000..d67f1487eb083 --- /dev/null +++ b/blockchains/ton/assets/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p/info.json @@ -0,0 +1,21 @@ +{ + "name": "GAMEE Token", + "website": "https://token.gamee.com", + "description": "The GAMEE Token is an ERC-20 utility token that is designed to be the currency of purchase, utility and reward in supported play-to-earn games provided on the GAMEE entertainment platform.", + "explorer": "https://tonscan.org/ru/jetton/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p", + "type": "JETTON", + "symbol": "GMEE", + "decimals": 18, + "status": "active", + "id": "EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/gameetoken" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/gamee/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p/logo.png b/blockchains/ton/assets/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p/logo.png new file mode 100644 index 0000000000000..34493c551b694 Binary files /dev/null and b/blockchains/ton/assets/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p/logo.png differ diff --git a/blockchains/ton/assets/EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_/info.json b/blockchains/ton/assets/EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_/info.json new file mode 100644 index 0000000000000..0c9cb278a5109 --- /dev/null +++ b/blockchains/ton/assets/EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_/info.json @@ -0,0 +1,21 @@ +{ + "name": "TonUP", + "website": "https://tonup.io/", + "description": "$UP is the native token of TonUP.", + "explorer": "https://tonscan.org/ru/jetton/EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_", + "type": "JETTON", + "symbol": "UP", + "decimals": 9, + "status": "active", + "id": "EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/TonUP_io" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/tonup/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_/logo.png b/blockchains/ton/assets/EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_/logo.png new file mode 100644 index 0000000000000..9a747d53c638c Binary files /dev/null and b/blockchains/ton/assets/EQCvaf0JMrv6BOvPpAgee08uQM_uRpUd__fhA7Nm8twzvbE_/logo.png differ diff --git a/blockchains/ton/assets/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS/info.json b/blockchains/ton/assets/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS/info.json new file mode 100644 index 0000000000000..5a712d344054d --- /dev/null +++ b/blockchains/ton/assets/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS/info.json @@ -0,0 +1,21 @@ +{ + "name": "DOGS", + "website": "https://t.me/dogshouse_bot", + "description": "Dogs Community is a vibrant, community-driven initiative built on the TON Blockchain, designed to leverage Telegram's vast user base and native meme culture", + "explorer": "https://tonscan.org/jetton/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS", + "type": "JETTON", + "symbol": "DOGS", + "decimals": 9, + "status": "active", + "id": "EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/realDogsHouse" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dogs/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS/logo.png b/blockchains/ton/assets/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS/logo.png new file mode 100644 index 0000000000000..a3e5ad286fbfa Binary files /dev/null and b/blockchains/ton/assets/EQCvxJy4eG8hyHBFsZ7eePxrRsUQSFE_jpptRAYBmcG_DOGS/logo.png differ diff --git a/blockchains/ton/assets/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/info.json b/blockchains/ton/assets/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/info.json new file mode 100644 index 0000000000000..6bb8c9b39aaac --- /dev/null +++ b/blockchains/ton/assets/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/info.json @@ -0,0 +1,28 @@ +{ + "name": "Tether USD", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://tonscan.org/jetton/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs", + "type": "JETTON", + "symbol": "USDT", + "decimals": 6, + "status": "active", + "id": "EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "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/ton/assets/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/logo.png b/blockchains/ton/assets/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/logo.png new file mode 100644 index 0000000000000..31572cfcdaaef Binary files /dev/null and b/blockchains/ton/assets/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/logo.png differ diff --git a/blockchains/ton/assets/EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7/info.json b/blockchains/ton/assets/EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7/info.json new file mode 100644 index 0000000000000..3ee4242079d0a --- /dev/null +++ b/blockchains/ton/assets/EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7/info.json @@ -0,0 +1,25 @@ +{ + "name": "Catizen", + "website": "https://catizen.ai/", + "description": "$CATI is the utility token issued by Catizen Limited which is a subsidiary of Catizen Foundation Company.", + "explorer": "https://tonscan.org/jetton/EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7", + "type": "JETTON", + "symbol": "CATI", + "decimals": 9, + "status": "active", + "id": "EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CatizenAI" + }, + { + "name": "telegram", + "url": "https://t.me/CatizenAnn" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/catizen/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7/logo.png b/blockchains/ton/assets/EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7/logo.png new file mode 100644 index 0000000000000..1a228bc870d77 Binary files /dev/null and b/blockchains/ton/assets/EQD-cvR0Nz6XAyRBvbhz-abTrRC6sI5tvHvvpeQraV9UAAD7/logo.png differ diff --git a/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/info.json b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/info.json new file mode 100644 index 0000000000000..28f422d2f13a1 --- /dev/null +++ b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/info.json @@ -0,0 +1,21 @@ +{ + "address": "EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw", + "name": "Huebel Bolt", + "type": "JETTON", + "symbol": "BOLT", + "decimals": 9, + "description": "Official token of the Huebel Company", + "status": "active", + "explorer": "https://tonscan.org/address/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw", + "id": "EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw", + "website": "https://huebel.art/", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/huebel-bolt/" + } + ], + "tags": [ + "memes" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/logo.png b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/logo.png new file mode 100644 index 0000000000000..a0fe8fe2c7a1e Binary files /dev/null and b/blockchains/ton/assets/EQD0vdSA_NedR9uvbgN9EikRX-suesDxGeFg69XQMavfLqIw/logo.png differ diff --git a/blockchains/ton/assets/EQD26zcd6Cqpz7WyLKVH8x_cD6D7tBrom6hKcycv8L8hV0GP/info.json b/blockchains/ton/assets/EQD26zcd6Cqpz7WyLKVH8x_cD6D7tBrom6hKcycv8L8hV0GP/info.json new file mode 100644 index 0000000000000..46c2df5609052 --- /dev/null +++ b/blockchains/ton/assets/EQD26zcd6Cqpz7WyLKVH8x_cD6D7tBrom6hKcycv8L8hV0GP/info.json @@ -0,0 +1,21 @@ +{ + "name": "DeFinder Capital", + "website": "https://definder.club/", + "description": "The first integral social token on the TON blockchain with open functionality! Fair distribution model = no ICO, private or public sales, investors offers, greedy funds, etc. It costs as much as you want to pay for on the market...", + "explorer": "https://tonscan.org/ru/jetton/EQCqnhZndBGbwjPpV8K_8WOK58ZkQPXlS_bshau9DKWnAF-p", + "type": "JETTON", + "symbol": "DFC", + "decimals": 9, + "status": "active", + "id": "EQD26zcd6Cqpz7WyLKVH8x_cD6D7tBrom6hKcycv8L8hV0GP", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/DFCapitalGroup" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/ru/currencies/definder-capital/" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD26zcd6Cqpz7WyLKVH8x_cD6D7tBrom6hKcycv8L8hV0GP/logo.png b/blockchains/ton/assets/EQD26zcd6Cqpz7WyLKVH8x_cD6D7tBrom6hKcycv8L8hV0GP/logo.png new file mode 100644 index 0000000000000..dd98dbc690e23 Binary files /dev/null and b/blockchains/ton/assets/EQD26zcd6Cqpz7WyLKVH8x_cD6D7tBrom6hKcycv8L8hV0GP/logo.png differ diff --git a/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/info.json b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/info.json new file mode 100644 index 0000000000000..80f269fce14c8 --- /dev/null +++ b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl", + "name": "Pioneer", + "type": "JETTON", + "symbol": "PIO", + "decimals": 9, + "description": "This jetton was given to the first people who arrived on Mars. Game TONPlanets.com", + "status": "active", + "explorer": "https://tonscan.org/address/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl", + "id": "EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl", + "website": "https://tonplanets.com", + "links": [ + { + "name": "telegram", + "url": "https://t.me/TONPlanets" + }, + { + "name": "telegram_news", + "url": "https://t.me/TONPlanetsBot" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/logo.png b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/logo.png new file mode 100644 index 0000000000000..e18260b4afd1b Binary files /dev/null and b/blockchains/ton/assets/EQD8Rsq4no9cYQx2Tg0wp9YCrcONuX5io8sNZptbvBCIjUUl/logo.png differ diff --git a/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/info.json b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/info.json new file mode 100644 index 0000000000000..35d75d051a75e --- /dev/null +++ b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh", + "name": "Orbit Bridge Ton Klaymeta Token", + "type": "JETTON", + "symbol": "META", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh", + "id": "EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/logo.png b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/logo.png new file mode 100644 index 0000000000000..e9a5e0b992565 Binary files /dev/null and b/blockchains/ton/assets/EQD8yPAEGafRy1VCTkpHq6WigBOoJ0NTuO0onBdzWKGsPdWh/logo.png differ diff --git a/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/info.json b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/info.json new file mode 100644 index 0000000000000..2d6fe04a4a538 --- /dev/null +++ b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/info.json @@ -0,0 +1,18 @@ +{ + "address": "EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo", + "name": "Red Coin", + "type": "JETTON", + "symbol": "REDC", + "decimals": 9, + "description": "Red company Coin on the Legendary Blockchain.", + "status": "active", + "explorer": "https://tonscan.org/address/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo", + "id": "EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo", + "website": "https://redcompany.team/", + "links": [ + { + "name": "telegram", + "url": "https://t.me/RedList_NFT" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/logo.png b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/logo.png new file mode 100644 index 0000000000000..9b526ddf9b304 Binary files /dev/null and b/blockchains/ton/assets/EQDAgy1xcNg0aFle548miasSdLCkL1nDeqSLP7Pua4wq-iTo/logo.png differ diff --git a/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/info.json b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/info.json new file mode 100644 index 0000000000000..53bea10e91db4 --- /dev/null +++ b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/info.json @@ -0,0 +1,14 @@ +{ + "address": "EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD", + "name": "Orbit Bridge Ton Orbit Chain", + "type": "JETTON", + "symbol": "oORC", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD", + "id": "EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/logo.png b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/logo.png new file mode 100644 index 0000000000000..55050504d6b5e Binary files /dev/null and b/blockchains/ton/assets/EQDCIEo0HUUYsAV-lTMviOd-GkSXfVPsNZMGjRaNOA_6--FD/logo.png differ diff --git a/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/info.json b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/info.json new file mode 100644 index 0000000000000..f0e74e51310fb --- /dev/null +++ b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/info.json @@ -0,0 +1,22 @@ +{ + "address": "EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86", + "name": "Fanzee Token", + "type": "JETTON", + "symbol": "FNZ", + "decimals": 9, + "description": "fanz.ee is a web3 fan engagement platform designed to help sports and entertainment organisations meaningfully connect with their fans through immersive gamification experiences", + "status": "active", + "explorer": "https://tonscan.org/address/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86", + "id": "EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86", + "website": "https://fanz.ee", + "links": [ + { + "name": "telegram", + "url": "https://t.me/fanzeelabs" + }, + { + "name": "twitter", + "url": "https://twitter.com/fanzeelabs" + } + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/logo.png b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/logo.png new file mode 100644 index 0000000000000..ba207f79bf5b5 Binary files /dev/null and b/blockchains/ton/assets/EQDCJL0iQHofcBBvFBHdVG233Ri2V4kCNFgfRT-gqAd3Oc86/logo.png differ diff --git a/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/info.json b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/info.json new file mode 100644 index 0000000000000..46a1c76589617 --- /dev/null +++ b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/info.json @@ -0,0 +1,11 @@ +{ + "address": "EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv", + "name": "Pterodactyls", + "type": "JETTON", + "symbol": "PTERO", + "decimals": 9, + "description": "The best pterodactyls on the TON network", + "status": "active", + "explorer": "https://tonscan.org/address/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv", + "id": "EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/logo.png b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/logo.png new file mode 100644 index 0000000000000..1e8911af2fdc9 Binary files /dev/null and b/blockchains/ton/assets/EQDHC7eYCs5Tq6YDFd_Uhj9-91-kpv48Emxxocwr7KXRBEiv/logo.png differ diff --git a/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/info.json b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/info.json new file mode 100644 index 0000000000000..b26c1b0857221 --- /dev/null +++ b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR", + "name": "Orbit Bridge Ton Klay", + "type": "JETTON", + "symbol": "oKLAY", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR", + "id": "EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/logo.png b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/logo.png new file mode 100644 index 0000000000000..4ec6c0bb9b931 Binary files /dev/null and b/blockchains/ton/assets/EQDZM7xsqa7huHq2lxoRLqMM71jwegQFPe7wijDDHOirpetR/logo.png differ diff --git a/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/info.json b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/info.json new file mode 100644 index 0000000000000..69846922b46d7 --- /dev/null +++ b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5", + "name": "jWBTC", + "type": "JETTON", + "symbol": "jWBTC", + "decimals": 8, + "description": "WBTC transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599.", + "status": "active", + "explorer": "https://tonscan.org/address/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5", + "id": "EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5", + "website": "https://bridge.ton.org/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/logo.png b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/logo.png new file mode 100644 index 0000000000000..76b1167d5f198 Binary files /dev/null and b/blockchains/ton/assets/EQDcBkGHmC4pTf34x3Gm05XvepO5w60DNxZ-XT4I6-UGG5L5/logo.png differ diff --git a/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/info.json b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/info.json new file mode 100644 index 0000000000000..c14b66f4c5e84 --- /dev/null +++ b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B", + "name": "jDAI", + "type": "JETTON", + "symbol": "jDAI", + "decimals": 18, + "description": "DAI transferred from Ethereum via bridge.ton.org. Token address in Ethereum: 0x6B175474E89094C44Da98b954EedeAC495271d0F", + "status": "active", + "explorer": "https://tonscan.org/address/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B", + "id": "EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B", + "website": "https://bridge.ton.org/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/logo.png b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/logo.png new file mode 100644 index 0000000000000..979613ab41647 Binary files /dev/null and b/blockchains/ton/assets/EQDo_ZJyQ_YqBzBwbVpMmhbhIddKtRP99HugZJ14aFscxi7B/logo.png differ diff --git a/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/info.json b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/info.json new file mode 100644 index 0000000000000..b49bd52d62f30 --- /dev/null +++ b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/info.json @@ -0,0 +1,11 @@ +{ + "address": "EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a", + "name": "Siberian TON", + "type": "JETTON", + "symbol": "SIBT", + "decimals": 9, + "description": "Private peer to peer jetton", + "status": "active", + "explorer": "https://tonscan.org/address/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a", + "id": "EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a" +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/logo.png b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/logo.png new file mode 100644 index 0000000000000..f4dc20489149a Binary files /dev/null and b/blockchains/ton/assets/EQDpdmk9DyD8J1w8cZV5R411Ki38t3n-wjXrkIBD_-GDZ89a/logo.png differ diff --git a/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/info.json b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/info.json new file mode 100644 index 0000000000000..8d0cb50c43b20 --- /dev/null +++ b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/info.json @@ -0,0 +1,15 @@ +{ + "address": "EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX", + "name": "Orbit Bridge Ton WEMIX$", + "type": "JETTON", + "symbol": "oWEMIX$", + "decimals": 18, + "description": "Orbit Bridge Token on TON blockchain!", + "status": "active", + "explorer": "https://tonscan.org/address/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX", + "id": "EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX", + "website": "https://bridge.orbitchain.io/", + "tags": [ + "wrapped" + ] +} \ No newline at end of file diff --git a/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/logo.png b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/logo.png new file mode 100644 index 0000000000000..b81c0324f9157 Binary files /dev/null and b/blockchains/ton/assets/EQDsEumWZmrQpoMlXGdqSXWDdvQeUCGjMEJsQ3k35bqNhyvX/logo.png differ diff --git a/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png b/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png index 3146ee52ebbb3..b6f150d8a7d46 100644 Binary files a/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png and b/blockchains/tron/assets/TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8/logo.png differ diff --git a/blockchains/tron/assets/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb/info.json b/blockchains/tron/assets/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb/info.json new file mode 100644 index 0000000000000..677d8d5e49ef8 --- /dev/null +++ b/blockchains/tron/assets/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb/info.json @@ -0,0 +1,32 @@ +{ + "name": "UAHg", + "type": "TRC20", + "symbol": "UAHg", + "decimals": 6, + "website": "https://uahg.io/en", + "description": "A digital asset denominated in hryvnia and backed by a basket of top stablecoins.", + "explorer": "https://tronscan.io/#/token20/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb", + "status": "active", + "id": "TK4zHRAU1WrRPivksia3BMs2JvSLT63opb", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/uahg_to" + }, + { + "name": "telegram", + "url": "https://t.me/uahg_to" + }, + { + "name": "whitepaper", + "url": "https://api.uahg.io/storage/uploads/file/variables/ca/au/en_whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/uahg/" + } + ], + "tags": [ + "stablecoin" + ] +} diff --git a/blockchains/tron/assets/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb/logo.png b/blockchains/tron/assets/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb/logo.png new file mode 100644 index 0000000000000..22f0254137a88 Binary files /dev/null and b/blockchains/tron/assets/TK4zHRAU1WrRPivksia3BMs2JvSLT63opb/logo.png differ diff --git a/blockchains/tron/assets/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH/info.json b/blockchains/tron/assets/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH/info.json new file mode 100644 index 0000000000000..0bf1d62e890c0 --- /dev/null +++ b/blockchains/tron/assets/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH/info.json @@ -0,0 +1,25 @@ +{ + "name": "To The Sun", + "website": "https://tothesun.vip/", + "description": "SUNPUMP: The Meme Token Shooting Beyond the Moon", + "explorer": "https://tronscan.org/#/token20/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH", + "type": "TRC20", + "symbol": "SUNPUMP", + "decimals": 18, + "status": "active", + "id": "TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/ToTheSun_vip" + }, + { + "name": "telegram", + "url": "https://t.me/ToTheSun_vip" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/to-the-sun/" + } + ] +} \ No newline at end of file diff --git a/blockchains/tron/assets/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH/logo.png b/blockchains/tron/assets/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH/logo.png new file mode 100644 index 0000000000000..ae200798b479d Binary files /dev/null and b/blockchains/tron/assets/TMwk13CthNktLiNpo8WDRuUMpyrzZTVZYH/logo.png differ diff --git a/blockchains/tron/assets/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S/info.json b/blockchains/tron/assets/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S/info.json index 29d2a1eba9d63..2a41724298c14 100644 --- a/blockchains/tron/assets/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S/info.json +++ b/blockchains/tron/assets/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S/info.json @@ -1,12 +1,21 @@ { - "name": "SUN", - "website": "https://sun.io", - "description": "SUN is a social experiment, which focuses on the DeFi potential of TRON.", - "explorer": "https://tronscan.io/#/token20/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S", - "research": "https://research.binance.com/en/projects/sun", + "name": "Sun", + "website": "https://sun.io/#/home", + "description": "The SUN.io platform is TRON's first one-stop platform that supports stablecoin swap, token mining and self-governance.", + "explorer": "https://tronscan.org/#/token20/TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S", "type": "TRC20", "symbol": "SUN", "decimals": 18, "status": "active", - "id": "TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S" + "id": "TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/defi_sunio" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sun-token/" + } + ] } \ No newline at end of file diff --git a/blockchains/tron/assets/TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT/info.json b/blockchains/tron/assets/TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT/info.json new file mode 100644 index 0000000000000..64b4a56f0047e --- /dev/null +++ b/blockchains/tron/assets/TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT/info.json @@ -0,0 +1,25 @@ +{ + "name": "Sundog", + "symbol": "SUNDOG", + "type": "TRC20", + "decimals": 18, + "description": "SUN DOG, THE BIGGEST DOG MEME ON TRON, EVERY CHAIN NEEDS ITS DOG, EVERY DOG HAS ITS DAY. EVERYTHING IS JUST FINE, SUN DOG IS VERY SERIOUS DOG, BRINGS MANY SUNSHINES, MANY FUN AND MUCH LOVE TO TRON", + "website": "https://www.sundog.meme/", + "explorer": "https://tronscan.org/#/token20/TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT", + "status": "active", + "id": "TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT", + "links": [ + { + "name": "telegram", + "url": "https://t.me/SUNDOG_TRX" + }, + { + "name": "twitter", + "url": "https://twitter.com/sundog_trx" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/sundog/" + } + ] + } \ No newline at end of file diff --git a/blockchains/tron/assets/TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT/logo.png b/blockchains/tron/assets/TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT/logo.png new file mode 100644 index 0000000000000..7e787f8aa5bd1 Binary files /dev/null and b/blockchains/tron/assets/TXL6rJbvmjD46zeN1JssfgxvSo99qC8MRT/logo.png differ diff --git a/blockchains/tron/validators/assets/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png b/blockchains/tron/validators/assets/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/tron/validators/assets/TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47/logo.png differ diff --git a/blockchains/tron/validators/list.json b/blockchains/tron/validators/list.json index db24367597624..ba10a31aaa24f 100644 --- a/blockchains/tron/validators/list.json +++ b/blockchains/tron/validators/list.json @@ -1,4 +1,13 @@ [ + { + "id": "TFqEaQBVpJmc6y6sbvXgzu9zsXL1pTKw47", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com", + "payout": { + "commission": 100 + } + }, { "id": "TLyqzVGLV1srkB7dToTAEqgDSfPtXRJZYH", "name": "Binance", diff --git a/blockchains/umee/validators/assets/umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj/logo.png b/blockchains/umee/validators/assets/umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj/logo.png new file mode 100644 index 0000000000000..eaf66cb5cbb1f Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de/logo.png b/blockchains/umee/validators/assets/umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de/logo.png new file mode 100644 index 0000000000000..84f50066eb01e Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1cv2qlz78j5d8fs75lxnystu2lsprvt64yrgfap/logo.png b/blockchains/umee/validators/assets/umeevaloper1cv2qlz78j5d8fs75lxnystu2lsprvt64yrgfap/logo.png new file mode 100644 index 0000000000000..e117817071239 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1cv2qlz78j5d8fs75lxnystu2lsprvt64yrgfap/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf/logo.png b/blockchains/umee/validators/assets/umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf/logo.png new file mode 100644 index 0000000000000..029163721d797 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0/logo.png b/blockchains/umee/validators/assets/umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0/logo.png new file mode 100644 index 0000000000000..f8a4c666adc9c Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj/logo.png b/blockchains/umee/validators/assets/umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj/logo.png new file mode 100644 index 0000000000000..6e18b1ce29080 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf/logo.png b/blockchains/umee/validators/assets/umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf/logo.png new file mode 100644 index 0000000000000..0888af01c5da5 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf/logo.png differ diff --git a/blockchains/umee/validators/assets/umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2/logo.png b/blockchains/umee/validators/assets/umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2/logo.png new file mode 100644 index 0000000000000..cbc90da983488 Binary files /dev/null and b/blockchains/umee/validators/assets/umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2/logo.png differ diff --git a/blockchains/umee/validators/list.json b/blockchains/umee/validators/list.json new file mode 100644 index 0000000000000..04ba09fb81018 --- /dev/null +++ b/blockchains/umee/validators/list.json @@ -0,0 +1,50 @@ +[ + { + "id": "umeevaloper1gxgsq7jpkg0f8vfkk60c4rd30z4cgs6lyqtglf", + "name": "StakeLab", + "description": "Staking & Relaying Hub for Cosmos ecosystem.", + "website": "https://stakelab.zone" + }, + { + "id": "umeevaloper1l4xvfq5uj7624m73nn8j4mgra7xq4cpf08q2xj", + "name": "Nodes.Guru", + "description": "Guru of non-custodial staking. Professional node running, low fees, best uptime and 24/7 customer support.", + "website": "https://stake.nodes.guru/" + }, + { + "id": "umeevaloper16qflfas8a9qjuskg9706n0926v8hac6acsf8de", + "name": "Polychain", + "description": "Polychain is an investment firm committed to exceptional returns for investors through actively managed portfolios of blockchain assets.", + "website": "https://polychain.capital/" + }, + { + "id": "umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0", + "name": "Cosmostation", + "description": "Cosmostation validator node. Delegate your tokens and Start Earning Staking Rewards", + "website": "https://cosmostation.io/" + }, + { + "id": "umeevaloper1py60fpud4w468zn7mthfa25xnzuawjum7w90q2", + "name": "AutoStake 🛡️ Slash Protected", + "description": "Earn extra Rewards with AutoStake.com 🛡️ 100% Refund on ALL forms of slashing backed by a SAFU fund.", + "website": "https://autostake.com" + }, + { + "id": "umeevaloper10nsytn9zmtfnhk37hqfe2h9v599ld3h5zs9fqj", + "name": "Stakin", + "description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.", + "website": "https://stakin.com/" + }, + { + "id": "umeevaloper1mkv4myppz2w0d3nr2dh9fv5kcwaaqnzfvnm6qf", + "name": "Stakeflow", + "description": "Stakeflow is a reliable and secure non-custodial validator that has been running since 2018. We focus on providing public goods for our delegators and supported chains. Check our block explorer https://stakeflow.io and website https://validator.stakeflow.io for more information.", + "website": "https://validator.stakeflow.io" + }, + { + "id": "bandvaloper1hdw8pzr79y4at0teak0mwcrjhv3e6n3wegfv2m", + "name": "w3coins", + "description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.", + "website": "https://www.w3coins.io" + } +] diff --git a/blockchains/verge/info/info.json b/blockchains/verge/info/info.json new file mode 100644 index 0000000000000..e2dfaa142d02a --- /dev/null +++ b/blockchains/verge/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Verge", + "website": "https://vergecurrency.com", + "description": "Verge is a privacy-focused cryptocurrency and blockchain that seeks to offer a fast, efficient, decentralized payments network that improves upon the original Bitcoin (BTC) blockchain.", + "explorer": "https://verge-blockchain.info", + "symbol": "XVG", + "type": "coin", + "decimals": 6, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/verge/" + }, + { + "name": "twitter", + "url": "https://twitter.com/vergecurrency" + } + ] +} \ No newline at end of file diff --git a/blockchains/verge/info/logo.png b/blockchains/verge/info/logo.png new file mode 100644 index 0000000000000..a04d4f18b4fc9 Binary files /dev/null and b/blockchains/verge/info/logo.png differ diff --git a/blockchains/wemix/info/info.json b/blockchains/wemix/info/info.json new file mode 100644 index 0000000000000..a88aa0c6bb35b --- /dev/null +++ b/blockchains/wemix/info/info.json @@ -0,0 +1,16 @@ +{ + "name": "WEMIX", + "type": "coin", + "symbol": "WEMIX", + "decimals": 18, + "website": "https://wemix.com", + "description": "WEMIX3.0 mainnet is an “experience-based, platform-driven & service-oriented decentralized blockchain protocol” which powers a “mega-ecosystem” of web 3.0 platforms.", + "explorer": "https://wemixscan.com", + "status": "active", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/WemixNetwork" + } + ] +} diff --git a/blockchains/wemix/info/logo.png b/blockchains/wemix/info/logo.png new file mode 100644 index 0000000000000..482298259d8a0 Binary files /dev/null and b/blockchains/wemix/info/logo.png differ diff --git a/blockchains/xdai/assets/0x177127622c4A00F3d409B75571e12cB3c8973d3c/info.json b/blockchains/xdai/assets/0x177127622c4A00F3d409B75571e12cB3c8973d3c/info.json new file mode 100644 index 0000000000000..e6ead6ddea9bc --- /dev/null +++ b/blockchains/xdai/assets/0x177127622c4A00F3d409B75571e12cB3c8973d3c/info.json @@ -0,0 +1,56 @@ +{ + "name": "CoW Protocol Token from Mainnet", + "type": "XDAI", + "symbol": "COW", + "decimals": 18, + "website": "https://cow.fi", + "description": "COW token allows its holders the right to govern and curate the infrastructure of the CoW Protocol ecosystem through the CowDAO. Additionally, COW token holders receive fee discounts when trading on CowSwap & some other perks.", + "explorer": "https://gnosisscan.io/token/0x177127622c4A00F3d409B75571e12cB3c8973d3c", + "status": "active", + "id": "0x177127622c4A00F3d409B75571e12cB3c8973d3c", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CoWSwap" + }, + { + "name": "github", + "url": "https://github.com/cowprotocol" + }, + { + "name": "source_code", + "url": "https://github.com/cowprotocol/token" + }, + { + "name": "blog", + "url": "https://blog.cow.fi" + }, + { + "name": "docs", + "url": "https://docs.cow.fi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cowprotocol" + }, + { + "name": "forum", + "url": "https://forum.cow.fi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cow-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cow-protocol" + }, + { + "name": "youtube", + "url": "https://youtube.com/@CoWSwap" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/xdai/assets/0x177127622c4A00F3d409B75571e12cB3c8973d3c/logo.png b/blockchains/xdai/assets/0x177127622c4A00F3d409B75571e12cB3c8973d3c/logo.png new file mode 100644 index 0000000000000..8df3f5b49a612 Binary files /dev/null and b/blockchains/xdai/assets/0x177127622c4A00F3d409B75571e12cB3c8973d3c/logo.png differ diff --git a/blockchains/xdai/assets/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB/info.json b/blockchains/xdai/assets/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB/info.json new file mode 100644 index 0000000000000..1d7e6f10f8990 --- /dev/null +++ b/blockchains/xdai/assets/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB/info.json @@ -0,0 +1,56 @@ +{ + "name": "CoW Protocol Virtual Token", + "website": "https://cow.fi/", + "description": "CoW Protocol lets you swap assets MEV protected at the best exchange rate by leveraging its batch settlement layer built on top of AMMs and DEX Aggregators.", + "explorer": "https://gnosisscan.io/token/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB", + "type": "XDAI", + "symbol": "vCOW", + "decimals": 18, + "status": "active", + "id": "0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB", + "tags": [ + "defi" + ], + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/CoWSwap" + }, + { + "name": "github", + "url": "https://github.com/cowprotocol" + }, + { + "name": "github", + "url": "https://github.com/cowprotocol/token" + }, + { + "name": "blog", + "url": "https://blog.cow.fi" + }, + { + "name": "docs", + "url": "https://docs.cow.fi" + }, + { + "name": "discord", + "url": "https://discord.com/invite/cowprotocol" + }, + { + "name": "forum", + "url": "https://forum.cow.fi" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/cow-protocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/cow-protocol" + }, + { + "name": "youtube", + "url": "https://youtube.com/@CoWSwap" + } + ] +} diff --git a/blockchains/xdai/assets/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB/logo.png b/blockchains/xdai/assets/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB/logo.png new file mode 100644 index 0000000000000..b9ef84f3b7923 Binary files /dev/null and b/blockchains/xdai/assets/0xc20C9C13E853fc64d054b73fF21d3636B2d97eaB/logo.png differ diff --git a/blockchains/zen/info/info.json b/blockchains/zen/info/info.json new file mode 100644 index 0000000000000..61bdc1d9c5c75 --- /dev/null +++ b/blockchains/zen/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "Horizen", + "website": "https://www.horizen.io", + "description": "Horizen is a zero-knowledge-enabled network of blockchains powered by the largest node infrastructure in the industry.", + "explorer": "https://explorer.horizen.io", + "symbol": "ZEN", + "type": "coin", + "decimals": 8, + "status": "active", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/horizen/" + }, + { + "name": "twitter", + "url": "https://twitter.com/horizenglobal" + } + ] +} \ No newline at end of file diff --git a/blockchains/zen/info/logo.png b/blockchains/zen/info/logo.png new file mode 100644 index 0000000000000..a4f16a6809b47 Binary files /dev/null and b/blockchains/zen/info/logo.png differ diff --git a/blockchains/zetachain/assets/0x13A0c5930C028511Dc02665E7285134B6d11A5f4/info.json b/blockchains/zetachain/assets/0x13A0c5930C028511Dc02665E7285134B6d11A5f4/info.json new file mode 100644 index 0000000000000..8adcf9bcacfff --- /dev/null +++ b/blockchains/zetachain/assets/0x13A0c5930C028511Dc02665E7285134B6d11A5f4/info.json @@ -0,0 +1,21 @@ +{ + "name": "Bitcoin", + "website": "https://bitcoin.org/en/", + "description": "Bitcoin is a decentralized cryptocurrency originally described in a 2008 whitepaper by a person, or group of people, using the alias Satoshi Nakamoto. It was launched soon after, in January 2009.", + "explorer": "https://zetachain.blockscout.com/token/0x13A0c5930C028511Dc02665E7285134B6d11A5f4", + "type": "ZETACHAIN", + "symbol": "BTC", + "decimals": 8, + "status": "active", + "id": "0x13A0c5930C028511Dc02665E7285134B6d11A5f4", + "links": [ + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/bitcoin/" + }, + { + "name": "github", + "url": "https://github.com/bitcoin/bitcoin" + } + ] +} diff --git a/blockchains/zetachain/assets/0x13A0c5930C028511Dc02665E7285134B6d11A5f4/logo.png b/blockchains/zetachain/assets/0x13A0c5930C028511Dc02665E7285134B6d11A5f4/logo.png new file mode 100644 index 0000000000000..cb34ccd854b2b Binary files /dev/null and b/blockchains/zetachain/assets/0x13A0c5930C028511Dc02665E7285134B6d11A5f4/logo.png differ diff --git a/blockchains/zetachain/info/info.json b/blockchains/zetachain/info/info.json new file mode 100644 index 0000000000000..0b41c9ca58ecf --- /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 0000000000000..915e0d35c9f81 Binary files /dev/null and b/blockchains/zetachain/info/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper10rx5qejcjwy7pup23umt434x0q7p89duvwwxam/logo.png b/blockchains/zetachain/validators/assets/zetavaloper10rx5qejcjwy7pup23umt434x0q7p89duvwwxam/logo.png new file mode 100644 index 0000000000000..f5f3ada9451c6 Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper10rx5qejcjwy7pup23umt434x0q7p89duvwwxam/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1320mmksxqfv97u7qkk98azk4svjne3ktt5kkde/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1320mmksxqfv97u7qkk98azk4svjne3ktt5kkde/logo.png new file mode 100644 index 0000000000000..ce95514d75f47 Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1320mmksxqfv97u7qkk98azk4svjne3ktt5kkde/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpf6rc87c/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpf6rc87c/logo.png new file mode 100644 index 0000000000000..377f168fdc3a1 Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpf6rc87c/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1nkgty88qc6q9c24h3xgu5jnseegkdrmm69xuvz/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1nkgty88qc6q9c24h3xgu5jnseegkdrmm69xuvz/logo.png new file mode 100644 index 0000000000000..8b0aedecca4f4 Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1nkgty88qc6q9c24h3xgu5jnseegkdrmm69xuvz/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1t5pgk2fucx3drkynzew9zln5z9r7s3wqyyunv0/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1t5pgk2fucx3drkynzew9zln5z9r7s3wqyyunv0/logo.png new file mode 100644 index 0000000000000..e6da574642445 Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1t5pgk2fucx3drkynzew9zln5z9r7s3wqyyunv0/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1txfmxp4d9dc9wqa2f7wvqed9635zajn0hrmz8z/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1txfmxp4d9dc9wqa2f7wvqed9635zajn0hrmz8z/logo.png new file mode 100644 index 0000000000000..a8401d2cba5b9 Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1txfmxp4d9dc9wqa2f7wvqed9635zajn0hrmz8z/logo.png differ diff --git a/blockchains/zetachain/validators/assets/zetavaloper1umtmqrgmc0z7lctqavxu0ljgxryrfeyz3v6qzf/logo.png b/blockchains/zetachain/validators/assets/zetavaloper1umtmqrgmc0z7lctqavxu0ljgxryrfeyz3v6qzf/logo.png new file mode 100644 index 0000000000000..ebabff78859bf Binary files /dev/null and b/blockchains/zetachain/validators/assets/zetavaloper1umtmqrgmc0z7lctqavxu0ljgxryrfeyz3v6qzf/logo.png differ diff --git a/blockchains/zetachain/validators/list.json b/blockchains/zetachain/validators/list.json new file mode 100644 index 0000000000000..50e9f132470d3 --- /dev/null +++ b/blockchains/zetachain/validators/list.json @@ -0,0 +1,44 @@ +[ + { + "id": "zetavaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpf6rc87c", + "name": "Figment", + "description": "Staking performance is multifaceted, and Figment’s unique “safety over liveness” approach and slashing track record lead the industry.", + "website": "https://figment.io" + }, + { + "id": "zetavaloper1t5pgk2fucx3drkynzew9zln5z9r7s3wqyyunv0", + "name": "Blockdaemon", + "description": "Blockdaemon is the leading provider to support the growing market for blockchain services.", + "website": "https://www.blockdaemon.com" + }, + { + "id": "zetavaloper1320mmksxqfv97u7qkk98azk4svjne3ktt5kkde", + "name": "Goldsky", + "description": "Web3's Realtime Data Platform", + "website": "https://goldsky.com" + }, + { + "id": "zetavaloper1nkgty88qc6q9c24h3xgu5jnseegkdrmm69xuvz", + "name": "Stakin", + "description": "Reliable and Secure Staking Services Trusted by Institutions. ISO27001 certified, Cosmos ecosystem contributor, IBC relayer provider. Visit our website to know more about Stakin and for T&Cs.", + "website": "https://stakin.com" + }, + { + "id": "zetavaloper1umtmqrgmc0z7lctqavxu0ljgxryrfeyz3v6qzf", + "name": "polkachu.com", + "description": "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash.", + "website": "https://polkachu.com" + }, + { + "id": "zetavaloper1txfmxp4d9dc9wqa2f7wvqed9635zajn0hrmz8z", + "name": "DSRV", + "description": "DSRV is an integrated blockchain solutions company with the mission of enriching the crypto ecosystem via stronger connectivity. We strive to be your gateway to a suite of all-comprehensive blockchain services. Everything distributed, served complete.", + "website": "https://dsrvlabs.com" + }, + { + "id": "zetavaloper10rx5qejcjwy7pup23umt434x0q7p89duvwwxam", + "name": "Trust Nodes", + "description": "The most trusted & secure crypto wallet", + "website": "https://trustwallet.com" + } +] diff --git a/blockchains/zetaevm/info/info.json b/blockchains/zetaevm/info/info.json new file mode 100644 index 0000000000000..7279d68d2e2d0 --- /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 0000000000000..915e0d35c9f81 Binary files /dev/null and b/blockchains/zetaevm/info/logo.png differ diff --git a/blockchains/zklink/assets/0x000000000000000000000000000000000000800A/info.json b/blockchains/zklink/assets/0x000000000000000000000000000000000000800A/info.json new file mode 100644 index 0000000000000..74ed515ee9751 --- /dev/null +++ b/blockchains/zklink/assets/0x000000000000000000000000000000000000800A/info.json @@ -0,0 +1,29 @@ +{ + "name": "Ether", + "symbol": "ETH", + "type": "ZKLINK", + "decimals": 18, + "description": "Ethereum is a global, open-source platform for decentralized applications. Eth is fueling transactions on the Chain.", + "website": "https://ethereum.org/en/", + "explorer": "https://explorer.zklink.io/address/0x000000000000000000000000000000000000800A", + "status": "active", + "id": "0x000000000000000000000000000000000000800A", + "links": [ + { + "name": "github", + "url": "https://github.com/ethereum/ethereum-org-website" + }, + { + "name": "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/zklink/assets/0x000000000000000000000000000000000000800A/logo.png b/blockchains/zklink/assets/0x000000000000000000000000000000000000800A/logo.png new file mode 100644 index 0000000000000..37ac7a822f374 Binary files /dev/null and b/blockchains/zklink/assets/0x000000000000000000000000000000000000800A/logo.png differ diff --git a/blockchains/zklink/assets/0x1a1A3b2ff016332e866787B311fcB63928464509/info.json b/blockchains/zklink/assets/0x1a1A3b2ff016332e866787B311fcB63928464509/info.json new file mode 100644 index 0000000000000..f9a7d13ab7636 --- /dev/null +++ b/blockchains/zklink/assets/0x1a1A3b2ff016332e866787B311fcB63928464509/info.json @@ -0,0 +1,36 @@ +{ + "name": "Nova USD Coin", + "website": "https://centre.io/usdc", + "description": "USDC is a fully collateralized US dollar stablecoin, an Ethereum powered coin and is the brainchild of CENTRE, an open source project bootstrapped by contributions from Circle and Coinbase.", + "explorer": "https://explorer.zklink.io/address/0x1a1A3b2ff016332e866787B311fcB63928464509", + "type": "ZKLINK", + "symbol": "USDC", + "decimals": 18, + "status": "active", + "id": "0x1a1A3b2ff016332e866787B311fcB63928464509", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "github", + "url": "https://github.com/centrehq" + }, + { + "name": "medium", + "url": "https://medium.com/centre-blog" + }, + { + "name": "whitepaper", + "url": "https://centre.io/pdfs/centre-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/usd-coin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/usd-coin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zklink/assets/0x1a1A3b2ff016332e866787B311fcB63928464509/logo.png b/blockchains/zklink/assets/0x1a1A3b2ff016332e866787B311fcB63928464509/logo.png new file mode 100644 index 0000000000000..289efad3e1653 Binary files /dev/null and b/blockchains/zklink/assets/0x1a1A3b2ff016332e866787B311fcB63928464509/logo.png differ diff --git a/blockchains/zklink/assets/0x2F8A25ac62179B31D62D7F80884AE57464699059/info.json b/blockchains/zklink/assets/0x2F8A25ac62179B31D62D7F80884AE57464699059/info.json new file mode 100644 index 0000000000000..7ee9fc4645ede --- /dev/null +++ b/blockchains/zklink/assets/0x2F8A25ac62179B31D62D7F80884AE57464699059/info.json @@ -0,0 +1,28 @@ +{ + "name": "Nova Tether USD", + "website": "https://tether.to", + "description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.", + "explorer": "https://explorer.zklink.io/address/0x2F8A25ac62179B31D62D7F80884AE57464699059", + "type": "ZKLINK", + "symbol": "USDT", + "decimals": 18, + "status": "active", + "id": "0x2F8A25ac62179B31D62D7F80884AE57464699059", + "tags": [ + "stablecoin" + ], + "links": [ + { + "name": "facebook", + "url": "https://facebook.com/tether.to/" + }, + { + "name": "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/zklink/assets/0x2F8A25ac62179B31D62D7F80884AE57464699059/logo.png b/blockchains/zklink/assets/0x2F8A25ac62179B31D62D7F80884AE57464699059/logo.png new file mode 100644 index 0000000000000..61da107e032db Binary files /dev/null and b/blockchains/zklink/assets/0x2F8A25ac62179B31D62D7F80884AE57464699059/logo.png differ diff --git a/blockchains/zklink/assets/0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f/info.json b/blockchains/zklink/assets/0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f/info.json new file mode 100644 index 0000000000000..6f986c04bee8d --- /dev/null +++ b/blockchains/zklink/assets/0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f/info.json @@ -0,0 +1,29 @@ +{ + "name": "Nova Wrapped BTC", + "website": "https://wbtc.network", + "description": "Wrapped Bitcoin (WBTC) is the first ERC20 token backed 1:1 with Bitcoin.", + "explorer": "https://explorer.zklink.io/address/0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f", + "type": "ZKLINK", + "symbol": "WBTC", + "decimals": 18, + "status": "active", + "id": "0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f", + "tags": [ + "defi", + "wrapped" + ], + "links": [ + { + "name": "whitepaper", + "url": "https://wbtc.network/assets/wrapped-tokens-whitepaper.pdf" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/wrapped-bitcoin/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/wrapped-bitcoin/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zklink/assets/0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f/logo.png b/blockchains/zklink/assets/0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f/logo.png new file mode 100644 index 0000000000000..702d64a2e040a Binary files /dev/null and b/blockchains/zklink/assets/0xDa4AaEd3A53962c83B35697Cd138cc6df43aF71f/logo.png differ diff --git a/blockchains/zklink/assets/0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab/info.json b/blockchains/zklink/assets/0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab/info.json new file mode 100644 index 0000000000000..58dc384ee9d50 --- /dev/null +++ b/blockchains/zklink/assets/0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab/info.json @@ -0,0 +1,42 @@ +{ + "name": "Nova Dai Stablecoin", + "website": "http://makerdao.com", + "description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.", + "explorer": "https://explorer.zklink.io/address/0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab", + "research": "https://research.binance.com/en/projects/dai", + "type": "ZKLINK", + "symbol": "DAI", + "decimals": 18, + "status": "active", + "id": "0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab", + "tags": [ + "defi", + "stablecoin" + ], + "links": [ + { + "name": "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/zklink/assets/0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab/logo.png b/blockchains/zklink/assets/0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab/logo.png new file mode 100644 index 0000000000000..0d949e02c9ea9 Binary files /dev/null and b/blockchains/zklink/assets/0xF573fA04A73d5AC442F3DEa8741317fEaA3cDeab/logo.png differ diff --git a/blockchains/zklink/info/info.json b/blockchains/zklink/info/info.json new file mode 100644 index 0000000000000..181beeb8b942e --- /dev/null +++ b/blockchains/zklink/info/info.json @@ -0,0 +1,20 @@ +{ + "name": "zkLink", + "website": "https://zklink.io/", + "description": "zkLink develops zero-knowledge blockchain solutions for the Ethereum ecosystem.", + "explorer": "https://explorer.zklink.io/", + "type": "coin", + "symbol": "ZKL", + "decimals": 18, + "status": "active", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zkLink_Official" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zklink/" + } + ] +} diff --git a/blockchains/zklink/info/logo.png b/blockchains/zklink/info/logo.png new file mode 100644 index 0000000000000..d2e466d91dbfa Binary files /dev/null and b/blockchains/zklink/info/logo.png differ diff --git a/blockchains/zksync/assets/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3/info.json b/blockchains/zksync/assets/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3/info.json new file mode 100644 index 0000000000000..a6f9cbc342a62 --- /dev/null +++ b/blockchains/zksync/assets/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3/info.json @@ -0,0 +1,21 @@ +{ + "name": "AutoAir", + "website": "https://autoair.xyz/", + "description": "AutoAir AI is an innovation Telegram bot revolutionizing the way users engage with airdrops in the cryptocurrency space.", + "explorer": "https://explorer.zksync.io/address/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3", + "type": "ZKSYNC", + "symbol": "AAI", + "decimals": 18, + "status": "active", + "id": "0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/AutoAirAi_xyz" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/autoair-ai/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zksync/assets/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3/logo.png b/blockchains/zksync/assets/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3/logo.png new file mode 100644 index 0000000000000..4ef2255743952 Binary files /dev/null and b/blockchains/zksync/assets/0x144B83555D8A3119b0a69a7BC2F0a0388308FeE3/logo.png differ diff --git a/blockchains/zksync/assets/0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435/info.json b/blockchains/zksync/assets/0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435/info.json new file mode 100644 index 0000000000000..295a2489febb0 --- /dev/null +++ b/blockchains/zksync/assets/0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435/info.json @@ -0,0 +1,21 @@ +{ + "name": "zkSync id", + "website": "https://zksyncid.xyz", + "description": "Our goal at zkSync id is to create a decentralized digital identity and access system that leverages the advantages of zk-rollup technology.", + "explorer": "https://explorer.zksync.io/address/0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435", + "type": "ZKSYNC", + "symbol": "ZKID", + "decimals": 18, + "status": "active", + "id": "0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/getzksyncid" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zksync-id/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zksync/assets/0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435/logo.png b/blockchains/zksync/assets/0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435/logo.png new file mode 100644 index 0000000000000..57c50b4ec0ee8 Binary files /dev/null and b/blockchains/zksync/assets/0x2141d7fe06A1d69c016fC638bA75b6Ef92Fa1435/logo.png differ diff --git a/blockchains/zksync/assets/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A/info.json b/blockchains/zksync/assets/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A/info.json new file mode 100644 index 0000000000000..33fa881104d1c --- /dev/null +++ b/blockchains/zksync/assets/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A/info.json @@ -0,0 +1,28 @@ +{ + "name": "zkSwap Finance", + "type": "ZKSYNC", + "symbol": "ZF", + "decimals": 18, + "website": "https://zkswap.finance", + "description": "zkSwap Finance is the first Swap to Earn DeFi Platform on zkSync Era ecosystem", + "explorer": "https://explorer.zksync.io/address/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A", + "status": "active", + "id": "0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/zkSwap_finance" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/zkswap-finance" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/zkswap-finance/" + } + ], + "tags": [ + "defi" + ] +} diff --git a/blockchains/zksync/assets/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A/logo.png b/blockchains/zksync/assets/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A/logo.png new file mode 100644 index 0000000000000..7542efae17a0b Binary files /dev/null and b/blockchains/zksync/assets/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A/logo.png differ diff --git a/blockchains/zksync/assets/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41/info.json b/blockchains/zksync/assets/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41/info.json new file mode 100644 index 0000000000000..9f61a5c1d287c --- /dev/null +++ b/blockchains/zksync/assets/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41/info.json @@ -0,0 +1,32 @@ +{ + "name": "DEXTF Token", + "website": "https://domani.finance", + "description": "The DEXTF token is an ERC20 token built on the Ethereum blockchain designed to be used as a governance and incentive mechanism for usage, upgrades and potential changes to the protocol.", + "explorer": "https://explorer.zksync.io/address/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41", + "type": "ZKSYNC", + "symbol": "DEXTF", + "decimals": 18, + "status": "active", + "id": "0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/domaniprotocol" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/dextf-protocol/" + }, + { + "name": "coingecko", + "url": "https://coingecko.com/en/coins/dextf" + }, + { + "name": "discord", + "url": "https://discord.com/invite/bxgyXMZ2U5" + } + ], + "tags": [ + "defi" + ] +} \ No newline at end of file diff --git a/blockchains/zksync/assets/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41/logo.png b/blockchains/zksync/assets/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41/logo.png new file mode 100644 index 0000000000000..bc59e0c401b45 Binary files /dev/null and b/blockchains/zksync/assets/0x9929bCAC4417A21d7e6FC86F6Dae1Cc7f27A2e41/logo.png differ diff --git a/blockchains/zksync/assets/0xCDb7D260c107499C80B4b748e8331c64595972a1/info.json b/blockchains/zksync/assets/0xCDb7D260c107499C80B4b748e8331c64595972a1/info.json new file mode 100644 index 0000000000000..b0e078bad6166 --- /dev/null +++ b/blockchains/zksync/assets/0xCDb7D260c107499C80B4b748e8331c64595972a1/info.json @@ -0,0 +1,21 @@ +{ + "name": "Karat", + "website": "https://karatdao.com/", + "description": "The largest protocol on ZKSync. Karat has over 300,000 wallets actively transacting.", + "explorer": "https://explorer.zksync.io/address/0xCDb7D260c107499C80B4b748e8331c64595972a1", + "type": "ZKSYNC", + "symbol": "KAT", + "decimals": 18, + "status": "active", + "id": "0xCDb7D260c107499C80B4b748e8331c64595972a1", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/KaratDAO" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/karat/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zksync/assets/0xCDb7D260c107499C80B4b748e8331c64595972a1/logo.png b/blockchains/zksync/assets/0xCDb7D260c107499C80B4b748e8331c64595972a1/logo.png new file mode 100644 index 0000000000000..d8f5809ecc3f7 Binary files /dev/null and b/blockchains/zksync/assets/0xCDb7D260c107499C80B4b748e8331c64595972a1/logo.png differ diff --git a/blockchains/zksync/assets/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2/info.json b/blockchains/zksync/assets/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2/info.json new file mode 100644 index 0000000000000..83485d4406365 --- /dev/null +++ b/blockchains/zksync/assets/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2/info.json @@ -0,0 +1,21 @@ +{ + "name": "Holdstation", + "website": "https://holdstation.com/", + "description": "Holdstation is an innovative Smart Contract Wallet for Futures Trading built on the zkSync Era.", + "explorer": "https://explorer.zksync.io/address/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2", + "type": "ZKSYNC", + "symbol": "HOLD", + "decimals": 18, + "status": "active", + "id": "0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2", + "links": [ + { + "name": "twitter", + "url": "https://twitter.com/HoldstationW" + }, + { + "name": "coinmarketcap", + "url": "https://coinmarketcap.com/currencies/holdstation/" + } + ] +} \ No newline at end of file diff --git a/blockchains/zksync/assets/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2/logo.png b/blockchains/zksync/assets/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2/logo.png new file mode 100644 index 0000000000000..367b9b966263e Binary files /dev/null and b/blockchains/zksync/assets/0xed4040fD47629e7c8FBB7DA76bb50B3e7695F0f2/logo.png differ diff --git a/blockchains/zksync/info/info.json b/blockchains/zksync/info/info.json index 29c16b15fab3e..a0f3cfe5870e9 100644 --- a/blockchains/zksync/info/info.json +++ b/blockchains/zksync/info/info.json @@ -10,6 +10,9 @@ "coin_type": 324, "decimals": 18, "status": "active", + "tags": [ + "dapp" + ], "links": [ { "name": "twitter", diff --git a/blockchains/zksync/tokenlist.json b/blockchains/zksync/tokenlist.json new file mode 100644 index 0000000000000..5695d2a225fed --- /dev/null +++ b/blockchains/zksync/tokenlist.json @@ -0,0 +1,53 @@ +{ + "name": "Trust Wallet: zkSync List", + "logoURI": "https://trustwallet.com/assets/images/favicon.png", + "timestamp": "2024-03-18T14:33:26.183301", + "tokens": [ + { + "asset": "c324_t0x0000000000000000000000000000000000000000", + "type": "ZKSYNC", + "address": "0x0000000000000000000000000000000000000000", + "name": "Wrapped Ether", + "symbol": "WETH", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/zksync/assets/0x0000000000000000000000000000000000000000/logo.png", + "pairs": [] + }, + { + "asset": "c324_t0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4", + "type": "ZKSYNC", + "address": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4", + "name": "USD Coin", + "symbol": "USDC", + "decimals": 6, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/zksync/assets/0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4/logo.png", + "pairs": [] + }, + { + "asset": "c324_t0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A", + "type": "ZKSYNC", + "address": "0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A", + "name": "zkSwap Finance", + "symbol": "ZF", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/zksync/assets/0x31C2c031fDc9d33e974f327Ab0d9883Eae06cA4A/logo.png", + "pairs": [] + }, + { + "asset": "c324_t0xdd9f72afED3631a6C85b5369D84875e6c42f1827", + "type": "ZKSYNC", + "address": "0xdd9f72afED3631a6C85b5369D84875e6c42f1827", + "name": "Symbiosis", + "symbol": "SIS", + "decimals": 18, + "logoURI": "https://assets-cdn.trustwallet.com/blockchains/zksync/assets/0xdd9f72afED3631a6C85b5369D84875e6c42f1827/logo.png", + "pairs": [] + } + + ], + "version": { + "major": 1, + "minor": 0, + "patch": 0 + } +} diff --git a/dapps/0x.org.png b/dapps/0x.org.png index e19d45de6f54b..b6c468fe2a387 100644 Binary files a/dapps/0x.org.png and b/dapps/0x.org.png differ diff --git a/dapps/across.to.png b/dapps/across.to.png new file mode 100644 index 0000000000000..d9474ac78fb4e Binary files /dev/null and b/dapps/across.to.png differ diff --git a/dapps/aerodrome.finance.png b/dapps/aerodrome.finance.png new file mode 100644 index 0000000000000..9a48cd719ad15 Binary files /dev/null and b/dapps/aerodrome.finance.png differ diff --git a/dapps/alienworlds.io.png b/dapps/alienworlds.io.png new file mode 100644 index 0000000000000..7ba2bbedb1846 Binary files /dev/null and b/dapps/alienworlds.io.png differ diff --git a/dapps/allbridge.io.png b/dapps/allbridge.io.png new file mode 100644 index 0000000000000..036662d105bc3 Binary files /dev/null and b/dapps/allbridge.io.png differ diff --git a/dapps/angelbattles.com.png b/dapps/angelbattles.com.png old mode 100755 new mode 100644 diff --git a/dapps/app.aave.com.png b/dapps/app.aave.com.png index 7b1753a784e0c..323f5d1d459d0 100644 Binary files a/dapps/app.aave.com.png and b/dapps/app.aave.com.png differ diff --git a/dapps/app.compound.finance.png b/dapps/app.compound.finance.png deleted file mode 100644 index 79ac17b15aa8c..0000000000000 Binary files a/dapps/app.compound.finance.png and /dev/null differ diff --git a/dapps/app.cryptoder.by.png b/dapps/app.cryptoder.by.png old mode 100755 new mode 100644 diff --git a/dapps/app.cryptoxmas.xyz.png b/dapps/app.cryptoxmas.xyz.png old mode 100755 new mode 100644 diff --git a/dapps/app.cyberconnect.png b/dapps/app.cyberconnect.png new file mode 100644 index 0000000000000..134961e55f095 Binary files /dev/null and b/dapps/app.cyberconnect.png differ diff --git a/dapps/app.dmail.png b/dapps/app.dmail.png new file mode 100644 index 0000000000000..30a53afb0fde2 Binary files /dev/null and b/dapps/app.dmail.png differ diff --git a/dapps/app.frax.finance.png b/dapps/app.frax.finance.png new file mode 100644 index 0000000000000..5cfb012992d57 Binary files /dev/null and b/dapps/app.frax.finance.png differ diff --git a/dapps/app.galxe.com.png b/dapps/app.galxe.com.png new file mode 100644 index 0000000000000..7ac3ca0c8c095 Binary files /dev/null and b/dapps/app.galxe.com.png differ diff --git a/dapps/app.harvest.finance.png b/dapps/app.harvest.finance.png new file mode 100644 index 0000000000000..e27b6568c1986 Binary files /dev/null and b/dapps/app.harvest.finance.png differ diff --git a/dapps/app.kinza.finance:.png b/dapps/app.kinza.finance:.png new file mode 100644 index 0000000000000..b0edfdef7e25d Binary files /dev/null and b/dapps/app.kinza.finance:.png differ diff --git a/dapps/app.layer3.xyz.png b/dapps/app.layer3.xyz.png new file mode 100644 index 0000000000000..010ca21c9ac45 Binary files /dev/null and b/dapps/app.layer3.xyz.png differ diff --git a/dapps/app.marginfi.com.png b/dapps/app.marginfi.com.png new file mode 100644 index 0000000000000..3515a56043314 Binary files /dev/null and b/dapps/app.marginfi.com.png differ diff --git a/dapps/app.mocaid.png b/dapps/app.mocaid.png new file mode 100644 index 0000000000000..7d4b1899604e2 Binary files /dev/null and b/dapps/app.mocaid.png differ diff --git a/dapps/app.morpho.org.png b/dapps/app.morpho.org.png new file mode 100644 index 0000000000000..8c452a18e403a Binary files /dev/null and b/dapps/app.morpho.org.png differ diff --git a/dapps/app.neutron.png b/dapps/app.neutron.png new file mode 100644 index 0000000000000..c44d914949916 Binary files /dev/null and b/dapps/app.neutron.png differ diff --git a/dapps/app.polygon.zkevm.png b/dapps/app.polygon.zkevm.png new file mode 100644 index 0000000000000..e4aaa73298ee4 Binary files /dev/null and b/dapps/app.polygon.zkevm.png differ diff --git a/dapps/app.pstake.finance.png b/dapps/app.pstake.finance.png new file mode 100644 index 0000000000000..67a851fb578bc Binary files /dev/null and b/dapps/app.pstake.finance.png differ diff --git a/dapps/app.questn.com.png b/dapps/app.questn.com.png new file mode 100644 index 0000000000000..e46f767111a8d Binary files /dev/null and b/dapps/app.questn.com.png differ diff --git a/dapps/app.satori.finance.png b/dapps/app.satori.finance.png new file mode 100644 index 0000000000000..7a866f1ddb9e3 Binary files /dev/null and b/dapps/app.satori.finance.png differ diff --git a/dapps/app.spaceid.png b/dapps/app.spaceid.png new file mode 100644 index 0000000000000..e33fa7048f31a Binary files /dev/null and b/dapps/app.spaceid.png differ diff --git a/dapps/app.udex.one.png b/dapps/app.udex.one.png new file mode 100644 index 0000000000000..762d335ea65d9 Binary files /dev/null and b/dapps/app.udex.one.png differ diff --git a/dapps/app.whales.market.png b/dapps/app.whales.market.png new file mode 100644 index 0000000000000..8c69544c49e4e Binary files /dev/null and b/dapps/app.whales.market.png differ diff --git a/dapps/app.zksync.era.png b/dapps/app.zksync.era.png new file mode 100644 index 0000000000000..805866006c40e Binary files /dev/null and b/dapps/app.zksync.era.png differ diff --git a/dapps/aura.finance.png b/dapps/aura.finance.png new file mode 100644 index 0000000000000..10eef80ba8df3 Binary files /dev/null and b/dapps/aura.finance.png differ diff --git a/dapps/ave.ai.png b/dapps/ave.ai.png new file mode 100644 index 0000000000000..cde9730973d61 Binary files /dev/null and b/dapps/ave.ai.png differ diff --git a/dapps/axelar.network.png b/dapps/axelar.network.png new file mode 100644 index 0000000000000..7c2b2efe45889 Binary files /dev/null and b/dapps/axelar.network.png differ diff --git a/dapps/axieinfinity.com.png b/dapps/axieinfinity.com.png old mode 100755 new mode 100644 diff --git a/dapps/bananagun.io.png b/dapps/bananagun.io.png new file mode 100644 index 0000000000000..a2f68d9878246 Binary files /dev/null and b/dapps/bananagun.io.png differ diff --git a/dapps/betoken.fund.png b/dapps/betoken.fund.png old mode 100755 new mode 100644 diff --git a/dapps/blockchaincuties.co.png b/dapps/blockchaincuties.co.png old mode 100755 new mode 100644 diff --git a/dapps/blur.io.png b/dapps/blur.io.png new file mode 100644 index 0000000000000..11f030983ebe4 Binary files /dev/null and b/dapps/blur.io.png differ diff --git a/dapps/bnbchain.org.png b/dapps/bnbchain.org.png new file mode 100644 index 0000000000000..7baa6e2bf6330 Binary files /dev/null and b/dapps/bnbchain.org.png differ diff --git a/dapps/brain-warp.win4.fun.png b/dapps/brain-warp.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/camelot.exchange.png b/dapps/camelot.exchange.png new file mode 100644 index 0000000000000..f4ceec645fb2c Binary files /dev/null and b/dapps/camelot.exchange.png differ diff --git a/dapps/cbridge.celer.network.png b/dapps/cbridge.celer.network.png new file mode 100644 index 0000000000000..d2ce312757249 Binary files /dev/null and b/dapps/cbridge.celer.network.png differ diff --git a/dapps/cdpsaver.com.png b/dapps/cdpsaver.com.png old mode 100755 new mode 100644 diff --git a/dapps/chibifighters.io.png b/dapps/chibifighters.io.png old mode 100755 new mode 100644 diff --git a/dapps/color-craze.win4.fun.png b/dapps/color-craze.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/compound.finance.png b/dapps/compound.finance.png index 32f5b5721921d..5d812a577cd4e 100644 Binary files a/dapps/compound.finance.png and b/dapps/compound.finance.png differ diff --git a/dapps/cryptoder.by.png b/dapps/cryptoder.by.png old mode 100755 new mode 100644 diff --git a/dapps/cryptogs.io.png b/dapps/cryptogs.io.png old mode 100755 new mode 100644 diff --git a/dapps/cryptomines.pro.png b/dapps/cryptomines.pro.png old mode 100755 new mode 100644 diff --git a/dapps/cryptosketches.com.png b/dapps/cryptosketches.com.png old mode 100755 new mode 100644 diff --git a/dapps/cryptostrikers.com.png b/dapps/cryptostrikers.com.png old mode 100755 new mode 100644 diff --git a/dapps/curve.fi.png b/dapps/curve.fi.png index fd11e0855f5b9..919ebfbb3aad1 100644 Binary files a/dapps/curve.fi.png and b/dapps/curve.fi.png differ diff --git a/dapps/dapp.dragonereum.io.png b/dapps/dapp.dragonereum.io.png old mode 100755 new mode 100644 diff --git a/dapps/element.market.png b/dapps/element.market.png new file mode 100644 index 0000000000000..648fe0bec4076 Binary files /dev/null and b/dapps/element.market.png differ diff --git a/dapps/ethernauts.co.png b/dapps/ethernauts.co.png old mode 100755 new mode 100644 diff --git a/dapps/four.meme.png b/dapps/four.meme.png new file mode 100644 index 0000000000000..9fae79e1def23 Binary files /dev/null and b/dapps/four.meme.png differ diff --git a/dapps/gmgn.ai.png b/dapps/gmgn.ai.png new file mode 100644 index 0000000000000..996656fb680ec Binary files /dev/null and b/dapps/gmgn.ai.png differ diff --git a/dapps/gmt.io.png b/dapps/gmt.io.png new file mode 100644 index 0000000000000..be0dd640c9078 Binary files /dev/null and b/dapps/gmt.io.png differ diff --git a/dapps/gmx.io.png b/dapps/gmx.io.png index a9ec9e4a9d09a..69a69f9ec2600 100644 Binary files a/dapps/gmx.io.png and b/dapps/gmx.io.png differ diff --git a/dapps/gomble.io:.png b/dapps/gomble.io:.png new file mode 100644 index 0000000000000..1b28824fcea80 Binary files /dev/null and b/dapps/gomble.io:.png differ diff --git a/dapps/hooked.io.png b/dapps/hooked.io.png new file mode 100644 index 0000000000000..17678819b9f2e Binary files /dev/null and b/dapps/hooked.io.png differ diff --git a/dapps/instadapp.io.png b/dapps/instadapp.io.png index 6d9e788197c46..467b11847ee78 100644 Binary files a/dapps/instadapp.io.png and b/dapps/instadapp.io.png differ diff --git a/dapps/iskra.world.png b/dapps/iskra.world.png new file mode 100644 index 0000000000000..8e10a1a18905e Binary files /dev/null and b/dapps/iskra.world.png differ diff --git a/dapps/jup.ag.png b/dapps/jup.ag.png new file mode 100644 index 0000000000000..8f270a0b62414 Binary files /dev/null and b/dapps/jup.ag.png differ diff --git a/dapps/kamino.finance.png b/dapps/kamino.finance.png new file mode 100644 index 0000000000000..b83bafa223e7e Binary files /dev/null and b/dapps/kamino.finance.png differ diff --git a/dapps/launchpool_rocket.png b/dapps/launchpool_rocket.png new file mode 100644 index 0000000000000..1a913343e18e3 Binary files /dev/null and b/dapps/launchpool_rocket.png differ diff --git a/dapps/lens.xyx.png b/dapps/lens.xyx.png new file mode 100644 index 0000000000000..b6e475e7d1908 Binary files /dev/null and b/dapps/lens.xyx.png differ diff --git a/dapps/lido.fi.png b/dapps/lido.fi.png index 477f2e85f99eb..e433e57fbc9a2 100644 Binary files a/dapps/lido.fi.png and b/dapps/lido.fi.png differ diff --git a/dapps/lista.org.png b/dapps/lista.org.png new file mode 100644 index 0000000000000..2dc16eea295fb Binary files /dev/null and b/dapps/lista.org.png differ diff --git a/dapps/magiceden.io.png b/dapps/magiceden.io.png new file mode 100644 index 0000000000000..7c7a355bb4b00 Binary files /dev/null and b/dapps/magiceden.io.png differ diff --git a/dapps/makerdao.com.png b/dapps/makerdao.com.png new file mode 100644 index 0000000000000..58d9405abf634 Binary files /dev/null and b/dapps/makerdao.com.png differ diff --git a/dapps/marinade.finance.app.png b/dapps/marinade.finance.app.png new file mode 100644 index 0000000000000..a66514ede8300 Binary files /dev/null and b/dapps/marinade.finance.app.png differ diff --git a/dapps/math-race.win4.fun.png b/dapps/math-race.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/maxbet.pigfarm.io.png b/dapps/maxbet.pigfarm.io.png old mode 100755 new mode 100644 diff --git a/dapps/member.iotex.io.png b/dapps/member.iotex.io.png old mode 100755 new mode 100644 diff --git a/dapps/meme.market.png b/dapps/meme.market.png new file mode 100644 index 0000000000000..adb846301cb9f Binary files /dev/null and b/dapps/meme.market.png differ diff --git a/dapps/merlinswap.org.png b/dapps/merlinswap.org.png new file mode 100644 index 0000000000000..3128a72d7b344 Binary files /dev/null and b/dapps/merlinswap.org.png differ diff --git a/dapps/myshell.ai.png b/dapps/myshell.ai.png new file mode 100644 index 0000000000000..d295230efa82c Binary files /dev/null and b/dapps/myshell.ai.png differ diff --git a/dapps/mythereum.io.png b/dapps/mythereum.io.png old mode 100755 new mode 100644 diff --git a/dapps/namebazaar.io.png b/dapps/namebazaar.io.png old mode 100755 new mode 100644 diff --git a/dapps/pantheon.exchange.png b/dapps/pantheon.exchange.png old mode 100755 new mode 100644 diff --git a/dapps/peepeth.com.png b/dapps/peepeth.com.png old mode 100755 new mode 100644 diff --git a/dapps/pendle.finance.png b/dapps/pendle.finance.png new file mode 100644 index 0000000000000..e5e6c7ca033d7 Binary files /dev/null and b/dapps/pendle.finance.png differ diff --git a/dapps/phi.png b/dapps/phi.png new file mode 100644 index 0000000000000..2914ff6fcb5d5 Binary files /dev/null and b/dapps/phi.png differ diff --git a/dapps/philand.xyz.png b/dapps/philand.xyz.png new file mode 100644 index 0000000000000..bb4bfed077bcf Binary files /dev/null and b/dapps/philand.xyz.png differ diff --git a/dapps/play.carv.io.png b/dapps/play.carv.io.png new file mode 100644 index 0000000000000..a3f4b2dafa0c1 Binary files /dev/null and b/dapps/play.carv.io.png differ diff --git a/dapps/pump.fun:board.png b/dapps/pump.fun:board.png new file mode 100644 index 0000000000000..227594041ebda Binary files /dev/null and b/dapps/pump.fun:board.png differ diff --git a/dapps/quickswap.exchange.png b/dapps/quickswap.exchange.png new file mode 100644 index 0000000000000..6f5342a442c35 Binary files /dev/null and b/dapps/quickswap.exchange.png differ diff --git a/dapps/rango.png b/dapps/rango.png new file mode 100644 index 0000000000000..b942d1501ba91 Binary files /dev/null and b/dapps/rango.png differ diff --git a/dapps/raydium.io.png b/dapps/raydium.io.png new file mode 100644 index 0000000000000..777d192d883a0 Binary files /dev/null and b/dapps/raydium.io.png differ diff --git a/dapps/rocketpool.net.png b/dapps/rocketpool.net.png new file mode 100644 index 0000000000000..67792d6008813 Binary files /dev/null and b/dapps/rocketpool.net.png differ diff --git a/dapps/saturn.network.png b/dapps/saturn.network.png old mode 100755 new mode 100644 diff --git a/dapps/shiftly.finance.png b/dapps/shiftly.finance.png old mode 100755 new mode 100644 diff --git a/dapps/slots.spin4.fun.png b/dapps/slots.spin4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/solend.fi.png b/dapps/solend.fi.png new file mode 100644 index 0000000000000..c3eb4548203ca Binary files /dev/null and b/dapps/solend.fi.png differ diff --git a/dapps/space-race.win4.fun.png b/dapps/space-race.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/space-tetris.win4.fun.png b/dapps/space-tetris.win4.fun.png old mode 100755 new mode 100644 diff --git a/dapps/squidrouter.com.png b/dapps/squidrouter.com.png new file mode 100644 index 0000000000000..ec372e6cf585e Binary files /dev/null and b/dapps/squidrouter.com.png differ diff --git a/dapps/staking.thundercore.com.png b/dapps/staking.thundercore.com.png old mode 100755 new mode 100644 diff --git a/dapps/stargate.finance.png b/dapps/stargate.finance.png new file mode 100644 index 0000000000000..eb56736d238a5 Binary files /dev/null and b/dapps/stargate.finance.png differ diff --git a/dapps/summer.fi.png b/dapps/summer.fi.png new file mode 100644 index 0000000000000..f85878bd9a41f Binary files /dev/null and b/dapps/summer.fi.png differ diff --git a/dapps/sunpump.meme.png b/dapps/sunpump.meme.png new file mode 100644 index 0000000000000..dc94307fc9bf8 Binary files /dev/null and b/dapps/sunpump.meme.png differ diff --git a/dapps/swap.cow.fi.png b/dapps/swap.cow.fi.png new file mode 100644 index 0000000000000..ff02c925b2578 Binary files /dev/null and b/dapps/swap.cow.fi.png differ diff --git a/dapps/swft.png b/dapps/swft.png new file mode 100644 index 0000000000000..42d37ec40a6dd Binary files /dev/null and b/dapps/swft.png differ diff --git a/dapps/t.me:solana_unibot.png b/dapps/t.me:solana_unibot.png new file mode 100644 index 0000000000000..3fbda4bb16be5 Binary files /dev/null and b/dapps/t.me:solana_unibot.png differ diff --git a/dapps/thorchain.org.png b/dapps/thorchain.org.png new file mode 100644 index 0000000000000..f53a26c606f94 Binary files /dev/null and b/dapps/thorchain.org.png differ diff --git a/dapps/tomoswap.com.png b/dapps/tomoswap.com.png old mode 100755 new mode 100644 diff --git a/dapps/traderjoexyz.com.png b/dapps/traderjoexyz.com.png new file mode 100644 index 0000000000000..e0631df801163 Binary files /dev/null and b/dapps/traderjoexyz.com.png differ diff --git a/dapps/trust.logo.png b/dapps/trust.logo.png new file mode 100644 index 0000000000000..6205c811d82a9 Binary files /dev/null and b/dapps/trust.logo.png differ diff --git a/dapps/trustmemecoinweek.png b/dapps/trustmemecoinweek.png deleted file mode 100644 index 01c775295fdbc..0000000000000 Binary files a/dapps/trustmemecoinweek.png and /dev/null differ diff --git a/dapps/ttroll.ttmobileapps.com.png b/dapps/ttroll.ttmobileapps.com.png old mode 100755 new mode 100644 diff --git a/dapps/tw.dicsover.jetton_promo.png b/dapps/tw.dicsover.jetton_promo.png new file mode 100644 index 0000000000000..246a7d4f0155d Binary files /dev/null and b/dapps/tw.dicsover.jetton_promo.png differ diff --git a/dapps/tw.discover.meetup.png b/dapps/tw.discover.meetup.png new file mode 100644 index 0000000000000..cd092c542c369 Binary files /dev/null and b/dapps/tw.discover.meetup.png differ diff --git a/dapps/tw.swift.feedback_logo.png b/dapps/tw.swift.feedback_logo.png new file mode 100644 index 0000000000000..84363b2d5d895 Binary files /dev/null and b/dapps/tw.swift.feedback_logo.png differ diff --git a/dapps/tw.swift.gas_logo.png b/dapps/tw.swift.gas_logo.png new file mode 100644 index 0000000000000..6bb8706cb518e Binary files /dev/null and b/dapps/tw.swift.gas_logo.png differ diff --git a/dapps/tw.swift.passkey_logo.png b/dapps/tw.swift.passkey_logo.png new file mode 100644 index 0000000000000..782565b030ff7 Binary files /dev/null and b/dapps/tw.swift.passkey_logo.png differ diff --git a/dapps/tw.swift.security_logo.png b/dapps/tw.swift.security_logo.png new file mode 100644 index 0000000000000..68a7505f7e6d6 Binary files /dev/null and b/dapps/tw.swift.security_logo.png differ diff --git a/dapps/tw.swift.starte_guide_logo.png b/dapps/tw.swift.starte_guide_logo.png new file mode 100644 index 0000000000000..611d3d0f39d95 Binary files /dev/null and b/dapps/tw.swift.starte_guide_logo.png differ diff --git a/dapps/veno.finance.png b/dapps/veno.finance.png new file mode 100644 index 0000000000000..36d5d104a99c3 Binary files /dev/null and b/dapps/veno.finance.png differ diff --git a/dapps/viewer.tokenscript.org.png b/dapps/viewer.tokenscript.org.png new file mode 100644 index 0000000000000..8284eb0ad2c69 Binary files /dev/null and b/dapps/viewer.tokenscript.org.png differ diff --git a/dapps/warpcast.com.png b/dapps/warpcast.com.png new file mode 100644 index 0000000000000..baecf3b7665e5 Binary files /dev/null and b/dapps/warpcast.com.png differ diff --git a/dapps/www.aialaya.io:.png b/dapps/www.aialaya.io:.png new file mode 100644 index 0000000000000..78744c81667da Binary files /dev/null and b/dapps/www.aialaya.io:.png differ diff --git a/dapps/www.alpacafinance.org.png b/dapps/www.alpacafinance.org.png new file mode 100644 index 0000000000000..de6129de07b01 Binary files /dev/null and b/dapps/www.alpacafinance.org.png differ diff --git a/dapps/www.avalonfinance.xyz.png b/dapps/www.avalonfinance.xyz.png new file mode 100644 index 0000000000000..47c93fac8e7a8 Binary files /dev/null and b/dapps/www.avalonfinance.xyz.png differ diff --git a/dapps/www.binance.com.png b/dapps/www.binance.com.png new file mode 100644 index 0000000000000..bb4ded347073d Binary files /dev/null and b/dapps/www.binance.com.png differ diff --git a/dapps/www.bonkbot.io.png b/dapps/www.bonkbot.io.png new file mode 100644 index 0000000000000..d47a71b24fad3 Binary files /dev/null and b/dapps/www.bonkbot.io.png differ diff --git a/dapps/www.circle.com.png b/dapps/www.circle.com.png new file mode 100644 index 0000000000000..fcfcccee7321a Binary files /dev/null and b/dapps/www.circle.com.png differ diff --git a/dapps/www.convexfinance.com.png b/dapps/www.convexfinance.com.png new file mode 100644 index 0000000000000..380494224a266 Binary files /dev/null and b/dapps/www.convexfinance.com.png differ diff --git a/dapps/www.eigenlayer.xyz:.png.png b/dapps/www.eigenlayer.xyz:.png.png new file mode 100644 index 0000000000000..8f097b748099d Binary files /dev/null and b/dapps/www.eigenlayer.xyz:.png.png differ diff --git a/dapps/www.friend.tech.png b/dapps/www.friend.tech.png new file mode 100644 index 0000000000000..cfcd8bdc0bac8 Binary files /dev/null and b/dapps/www.friend.tech.png differ diff --git a/dapps/www.holoworldai.com:.png b/dapps/www.holoworldai.com:.png new file mode 100644 index 0000000000000..3d09247d02f6d Binary files /dev/null and b/dapps/www.holoworldai.com:.png differ diff --git a/dapps/www.jito.network.png b/dapps/www.jito.network.png new file mode 100644 index 0000000000000..489f9f201a585 Binary files /dev/null and b/dapps/www.jito.network.png differ diff --git a/dapps/www.kiloex.io.png b/dapps/www.kiloex.io.png new file mode 100644 index 0000000000000..6c3a1021d030a Binary files /dev/null and b/dapps/www.kiloex.io.png differ diff --git a/dapps/www.maestrobots.com.png b/dapps/www.maestrobots.com.png new file mode 100644 index 0000000000000..5239552b0c80a Binary files /dev/null and b/dapps/www.maestrobots.com.png differ diff --git a/dapps/www.nightcrows.com.png b/dapps/www.nightcrows.com.png new file mode 100644 index 0000000000000..880ac4c58626a Binary files /dev/null and b/dapps/www.nightcrows.com.png differ diff --git a/dapps/www.orca.so.png b/dapps/www.orca.so.png new file mode 100644 index 0000000000000..9dc1f01dc6a4d Binary files /dev/null and b/dapps/www.orca.so.png differ diff --git a/dapps/www.pixels.xyz.png b/dapps/www.pixels.xyz.png new file mode 100644 index 0000000000000..4142252505cbe Binary files /dev/null and b/dapps/www.pixels.xyz.png differ diff --git a/dapps/www.playbux.co.png b/dapps/www.playbux.co.png new file mode 100644 index 0000000000000..177a2316f10bc Binary files /dev/null and b/dapps/www.playbux.co.png differ diff --git a/dapps/www.renzoprotocol.com.png b/dapps/www.renzoprotocol.com.png new file mode 100644 index 0000000000000..9ff5a87d6a3e8 Binary files /dev/null and b/dapps/www.renzoprotocol.com.png differ diff --git a/dapps/www.solchat.app.png b/dapps/www.solchat.app.png new file mode 100644 index 0000000000000..91421cb059de2 Binary files /dev/null and b/dapps/www.solchat.app.png differ diff --git a/dapps/www.spark.fi.png b/dapps/www.spark.fi.png new file mode 100644 index 0000000000000..01b0166f18b58 Binary files /dev/null and b/dapps/www.spark.fi.png differ diff --git a/dapps/www.staderlabs.com.png b/dapps/www.staderlabs.com.png new file mode 100644 index 0000000000000..9c285390e50e3 Binary files /dev/null and b/dapps/www.staderlabs.com.png differ diff --git a/dapps/www.synapseprotocol.com.png b/dapps/www.synapseprotocol.com.png new file mode 100644 index 0000000000000..ea35f62701a2c Binary files /dev/null and b/dapps/www.synapseprotocol.com.png differ diff --git a/dapps/www.worldofdypians.com.png b/dapps/www.worldofdypians.com.png new file mode 100644 index 0000000000000..3422af2737c60 Binary files /dev/null and b/dapps/www.worldofdypians.com.png differ diff --git a/dapps/zed.run.png b/dapps/zed.run.png old mode 100755 new mode 100644 diff --git a/dapps/zerolend.xyz.png b/dapps/zerolend.xyz.png new file mode 100644 index 0000000000000..b53a0a75581e3 Binary files /dev/null and b/dapps/zerolend.xyz.png differ diff --git a/go.mod b/go.mod index 6931842b512f2..1dc3304ff84eb 100644 --- a/go.mod +++ b/go.mod @@ -1,25 +1,26 @@ module github.com/trustwallet/assets -go 1.18 +go 1.19 require ( github.com/sirupsen/logrus v1.9.0 github.com/spf13/cobra v1.7.0 - github.com/trustwallet/assets-go-libs v0.3.5 + github.com/trustwallet/assets-go-libs v0.3.9-0.20240905070109-9da7e7c4847a github.com/trustwallet/go-libs v0.7.3 - github.com/trustwallet/go-primitives v0.0.77 + github.com/trustwallet/go-primitives v0.1.32 ) require ( github.com/beorn7/perks v1.0.1 // indirect - github.com/cespare/xxhash/v2 v2.1.2 // indirect + github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/deckarep/golang-set v1.7.1 // indirect github.com/fsnotify/fsnotify v1.5.1 // indirect + github.com/gin-gonic/gin v1.9.1 // indirect github.com/golang/protobuf v1.5.2 // indirect github.com/hashicorp/hcl v1.0.0 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect github.com/magiconair/properties v1.8.5 // indirect - github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect + github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect github.com/mitchellh/mapstructure v1.4.3 // indirect github.com/patrickmn/go-cache v2.1.0+incompatible // indirect github.com/pelletier/go-toml v1.9.4 // indirect @@ -32,12 +33,13 @@ require ( github.com/spf13/jwalterweatherman v1.1.0 // indirect github.com/spf13/pflag v1.0.5 // indirect github.com/spf13/viper v1.10.0 // indirect + github.com/stretchr/testify v1.8.3 // indirect github.com/subosito/gotenv v1.2.0 // indirect - golang.org/x/crypto v0.4.0 // indirect + golang.org/x/crypto v0.9.0 // indirect golang.org/x/image v0.5.0 // indirect - golang.org/x/sys v0.3.0 // indirect - golang.org/x/text v0.7.0 // indirect - google.golang.org/protobuf v1.27.1 // indirect + golang.org/x/sys v0.8.0 // indirect + golang.org/x/text v0.9.0 // indirect + google.golang.org/protobuf v1.30.0 // indirect gopkg.in/ini.v1 v1.66.2 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect ) diff --git a/go.sum b/go.sum index 27b58b00503e2..43cfa97b04a41 100644 --- a/go.sum +++ b/go.sum @@ -42,10 +42,13 @@ github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24 github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bytedance/sonic v1.9.1 h1:6iJ6NqdoxCDr6mbY8h18oSO+cShGSMRGCEo7F2h0x8s= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.1.2 h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE= github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= +github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 h1:qSGYFH7+jGhDF8vLC+iwCD4WpbV1EBDSzWkJODFLams= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= @@ -63,8 +66,10 @@ github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1m github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/fsnotify/fsnotify v1.5.1 h1:mZcQUHVQUQWoPXXtuf9yuEXKudkV2sx1E06UadKWpgI= github.com/fsnotify/fsnotify v1.5.1/go.mod h1:T3375wBYaZdLLcVNkcVbzGHY7f1l/uK5T5Ai1i3InKU= +github.com/gabriel-vasile/mimetype v1.4.2 h1:w5qFW6JKBz9Y393Y4q372O9A7cUSequkh1Q7OhCmWKU= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= -github.com/gin-gonic/gin v1.7.7 h1:3DoBmSbJbZAWqXJC3SLjAPfutPJJRN1U5pALB7EeTTs= +github.com/gin-gonic/gin v1.9.1 h1:4idEAncQnU5cB7BeOkPtxjfCSye0AAm1R0RVIqJ+Jmg= +github.com/gin-gonic/gin v1.9.1/go.mod h1:hPrL7YrpYKXt5YId3A/Tnip5kqbEAP+KLuI3SUcPTeU= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= @@ -74,10 +79,11 @@ github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vb github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= -github.com/go-playground/locales v0.13.0 h1:HyWk6mgj5qFqCT5fjGBuRArbVDfE4hi8+e8ceBS/t7Q= -github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no= -github.com/go-playground/validator/v10 v10.4.1 h1:pH2c5ADXtd66mxoE0Zm9SUhxE20r7aM3F26W0hOn+GE= +github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA= +github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY= +github.com/go-playground/validator/v10 v10.14.0 h1:vgvQWe3XCz3gIeFDm/HnTIbj6UGmg/+t63MyGU2n5js= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -150,6 +156,7 @@ github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/X github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= @@ -159,12 +166,13 @@ github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORN github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= -github.com/leodido/go-urn v1.2.0 h1:hpXL4XnriNwQ/ABnpepYM/1vCLWNDfUNts8dX3xTG6Y= +github.com/leodido/go-urn v1.2.4 h1:XlAE/cm/ms7TE/VMVoduSpNBoyc2dOxHs5MZSwAN63Q= github.com/magiconair/properties v1.8.5 h1:b6kJs+EmPFMYGkow9GiUyCyOvIwYetYJ3fSaWak/Gls= github.com/magiconair/properties v1.8.5/go.mod h1:y3VJvCyxH9uVvJTWEGAELF3aiYNyPKd5NZ3oSwXrF60= -github.com/mattn/go-isatty v0.0.14 h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y= -github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= +github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI= +github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= github.com/mitchellh/mapstructure v1.4.3 h1:OVowDSCllw/YjdLkam3/sm7wEtOy59d8ndGgCcyj8cs= github.com/mitchellh/mapstructure v1.4.3/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= @@ -180,6 +188,7 @@ github.com/patrickmn/go-cache v2.1.0+incompatible h1:HRMgzkcYKYpi3C8ajMPV8OFXaaR github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ= github.com/pelletier/go-toml v1.9.4 h1:tjENF6MfZAg8e4ZmZTeWaWiT2vXtsoO6+iuOjFhECwM= github.com/pelletier/go-toml v1.9.4/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c= +github.com/pelletier/go-toml/v2 v2.0.8 h1:0ctb6s9mE31h0/lhu+J6OPmVeDxJn+kYnJc2jZR9tGQ= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -233,16 +242,18 @@ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXf github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk= +github.com/stretchr/testify v1.8.3 h1:RP3t2pwF7cMEbC1dqtB6poj3niw/9gnV4Cjg5oW5gtY= +github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s= github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw= -github.com/trustwallet/assets-go-libs v0.3.5 h1:xYgaDdy0VG9H3dHq+Cp830vYaZUHWA0SKbB/Nyb3ptg= -github.com/trustwallet/assets-go-libs v0.3.5/go.mod h1:03cXr+ABmrdDXZkoPPdP6h3oN2RCsGPx6QqILORpEW0= +github.com/trustwallet/assets-go-libs v0.3.9-0.20240905070109-9da7e7c4847a h1:tdILqIqrcJxRoiCf4cuIYxK7ub3WFgZZ8QBmH0ODV1Q= +github.com/trustwallet/assets-go-libs v0.3.9-0.20240905070109-9da7e7c4847a/go.mod h1:/cgJRCuCysrcqQutXmwR82ck/26qbdmZ5jSBeoc2vIw= github.com/trustwallet/go-libs v0.7.3 h1:X5KTj2/582Iv/3Pbm9AKPABBlwGE0tLGbQir66jD6U0= github.com/trustwallet/go-libs v0.7.3/go.mod h1:5TQECBJo2ZUhGvB4pTKtyYeclGhzlYooVv/EufU4Axk= -github.com/trustwallet/go-primitives v0.0.77 h1:iHEyXUQFguF1ro2boze/10xqiN8eGRaorpcUQHTa+ok= -github.com/trustwallet/go-primitives v0.0.77/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= -github.com/ugorji/go/codec v1.1.7 h1:2SvQaVZ1ouYrrKKwoSk2pzd4A9evlKJb9oTL+OaLUSs= +github.com/trustwallet/go-primitives v0.1.32 h1:x6lDk+Y/W+qH0FNiEUorh3fOaFAOQYUXWSfnWfQg93I= +github.com/trustwallet/go-primitives v0.1.32/go.mod h1:GN9WNIOvtz9j77FSYLEqC7apbMlzQnFLNO9LOCMy5Mc= +github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= +github.com/ugorji/go/codec v1.2.11 h1:BMaWp1Bb6fHwEtbplGBGJ498wD+LKlNSl25MjdZY4dU= github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= @@ -252,6 +263,7 @@ go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +golang.org/x/arch v0.3.0 h1:02VY4/ZcO/gBOH6PUaoiptASxtXU10jazRCP865E97k= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= @@ -260,8 +272,8 @@ golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.4.0 h1:UVQgzMY87xqpKNgb+kDsll2Igd33HszWHFLmpaRMq/8= -golang.org/x/crypto v0.4.0/go.mod h1:3quD/ATkf6oY+rnes5c3ExXTbLc8mueNue5/DoinL80= +golang.org/x/crypto v0.9.0 h1:LF6fAI+IutBocDJ2OT0Q1g8plpYljMZ4+lty+dsqw3g= +golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -326,6 +338,7 @@ golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81R golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.10.0 h1:X2//UzNDwYmtCLn7To6G58Wr6f5ahEAQgKNzv9Y951M= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -383,8 +396,8 @@ golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.3.0 h1:w8ZOecv6NaNa/zC8944JTU3vz4u6Lagfk4RPQxv92NQ= -golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU= +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -394,8 +407,9 @@ golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.7.0 h1:4BRB4x83lYWy72KwLD/qYDuTu7q9PjSagHvijDw7cLo= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE= +golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -519,8 +533,8 @@ google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGj google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ= -google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng= +google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= diff --git a/internal/config/validators.go b/internal/config/validators.go index 6f1eb6268f1f6..28078256f09fa 100644 --- a/internal/config/validators.go +++ b/internal/config/validators.go @@ -3,6 +3,7 @@ package config type RootFolder struct { AllowedFiles []string `mapstructure:"allowed_files,omitempty"` SkipFiles []string `mapstructure:"skip_files,omitempty"` + SkipDirs []string `mapstructure:"skip_dirs,omitempty"` } type ChainFolder struct { diff --git a/internal/info/asset.go b/internal/info/asset.go new file mode 100644 index 0000000000000..c175e10ac1605 --- /dev/null +++ b/internal/info/asset.go @@ -0,0 +1,49 @@ +package info + +import ( + "github.com/trustwallet/assets-go-libs/validation" + "github.com/trustwallet/go-primitives/coin" +) + +func ValidateAsset(a AssetModel, chain coin.Coin, addr string) error { + if err := ValidateAssetRequiredKeys(a); err != nil { + return err + } + + // All fields validated for nil and can be safety used. + compErr := validation.NewErrComposite() + + if err := ValidateAssetID(*a.ID, addr); err != nil { + compErr.Append(err) + } + + if err := ValidateDecimals(*a.Decimals); err != nil { + compErr.Append(err) + } + + if err := ValidateAssetDecimalsAccordingType(*a.Type, *a.Decimals); err != nil { + compErr.Append(err) + } + + if err := ValidateStatus(*a.Status); err != nil { + compErr.Append(err) + } + + if err := ValidateDescription(*a.Description); err != nil { + compErr.Append(err) + } + + if err := ValidateDescriptionWebsite(*a.Description, *a.Website); err != nil { + compErr.Append(err) + } + + if err := ValidateLinks(a.Links); err != nil { + compErr.Append(err) + } + + if compErr.Len() > 0 { + return compErr + } + + return nil +} diff --git a/internal/info/coin.go b/internal/info/coin.go new file mode 100644 index 0000000000000..623ea2470dfde --- /dev/null +++ b/internal/info/coin.go @@ -0,0 +1,47 @@ +package info + +import ( + "github.com/trustwallet/assets-go-libs/validation" +) + +func ValidateCoin(c CoinModel, allowedTags []string) error { + if err := ValidateCoinRequiredKeys(c); err != nil { + return err + } + + // All fields validated for nil and can be safety used. + compErr := validation.NewErrComposite() + if err := ValidateCoinType(*c.Type); err != nil { + compErr.Append(err) + } + + if err := ValidateDecimals(*c.Decimals); err != nil { + compErr.Append(err) + } + + if err := ValidateStatus(*c.Status); err != nil { + compErr.Append(err) + } + + if err := ValidateTags(c.Tags, allowedTags); err != nil { + compErr.Append(err) + } + + if err := ValidateDescription(*c.Description); err != nil { + compErr.Append(err) + } + + if err := ValidateDescriptionWebsite(*c.Description, *c.Website); err != nil { + compErr.Append(err) + } + + if err := ValidateLinks(c.Links); err != nil { + compErr.Append(err) + } + + if compErr.Len() > 0 { + return compErr + } + + return nil +} diff --git a/internal/info/external/erc20.go b/internal/info/external/erc20.go new file mode 100644 index 0000000000000..adf5981af2bb0 --- /dev/null +++ b/internal/info/external/erc20.go @@ -0,0 +1,35 @@ +package external + +import ( + "fmt" + "strconv" + + "github.com/trustwallet/assets-go-libs/http" +) + +const ethAPIURL = "https://api.ethplorer.io/getTokenInfo/%s?apiKey=freekey" + +type TokenInfoERC20 struct { + Decimals string `json:"decimals"` + HoldersCount int `json:"holdersCount"` +} + +func GetTokenInfoForERC20(tokenID string) (*TokenInfo, error) { + url := fmt.Sprintf(ethAPIURL, tokenID) + + var result TokenInfoERC20 + err := http.GetHTTPResponse(url, &result) + if err != nil { + return nil, err + } + + decimals, err := strconv.Atoi(result.Decimals) + if err != nil { + return nil, err + } + + return &TokenInfo{ + Decimals: decimals, + HoldersCount: result.HoldersCount, + }, nil +} diff --git a/internal/info/external/external.go b/internal/info/external/external.go new file mode 100644 index 0000000000000..7270158843be2 --- /dev/null +++ b/internal/info/external/external.go @@ -0,0 +1,85 @@ +package external + +import ( + "fmt" + "regexp" + "strconv" + "strings" + + "github.com/trustwallet/assets-go-libs/http" +) + +var ( + holdersRegexp = regexp.MustCompile(`(\d+)\saddresses`) + decimalsRegexp = regexp.MustCompile(`(\d+)\s+<\/div>`) + symbolRegexp = regexp.MustCompile(`(\w+)<\/b>\s 1 { + symbol = match[1] + } + + match = decimalsRegexp.FindStringSubmatch(pageContent) + if len(match) > 1 { + decimals, err = strconv.Atoi(match[1]) + if err != nil { + return nil, err + } + } + + match = holdersRegexp.FindStringSubmatch(pageContent) + if len(match) > 1 { + holders, err = strconv.Atoi(match[1]) + if err != nil { + return nil, err + } + } + + return &TokenInfo{ + Symbol: symbol, + Decimals: decimals, + HoldersCount: holders, + }, nil +} diff --git a/internal/info/external/spl.go b/internal/info/external/spl.go new file mode 100644 index 0000000000000..a95addf68e07c --- /dev/null +++ b/internal/info/external/spl.go @@ -0,0 +1,37 @@ +package external + +import ( + "fmt" + + "github.com/trustwallet/assets-go-libs/http" +) + +const splAPIURL = "https://public-api.solscan.io/token/holders?tokenAddress=%s" + +type TokenInfoSPL struct { + Data []Data `json:"data"` + HoldersCount int `json:"total"` +} + +type Data struct { + Decimals int `json:"decimals"` +} + +func GetTokenInfoForSPL(tokenID string) (*TokenInfo, error) { + url := fmt.Sprintf(splAPIURL, tokenID) + + var result TokenInfoSPL + err := http.GetHTTPResponse(url, &result) + if err != nil { + return nil, err + } + + if len(result.Data) == 0 { + return nil, fmt.Errorf("failed to get token info for SPL token") + } + + return &TokenInfo{ + Decimals: result.Data[0].Decimals, + HoldersCount: result.HoldersCount, + }, nil +} diff --git a/internal/info/external/trc10.go b/internal/info/external/trc10.go new file mode 100644 index 0000000000000..9a585f8d212b2 --- /dev/null +++ b/internal/info/external/trc10.go @@ -0,0 +1,38 @@ +package external + +import ( + "errors" + "fmt" + + "github.com/trustwallet/assets-go-libs/http" +) + +const trc10APIURL = "https://apilist.tronscan.io/api/token?id=%s" + +type TRC10TokensResponse struct { + Data []struct { + Symbol string `json:"abbr"` + Decimals int `json:"precision"` + HoldersCount int `json:"nrOfTokenHolders"` + } `json:"data"` +} + +func GetTokenInfoForTRC10(tokenID string) (*TokenInfo, error) { + url := fmt.Sprintf(trc10APIURL, tokenID) + + var res TRC10TokensResponse + err := http.GetHTTPResponse(url, &res) + if err != nil { + return nil, err + } + + if len(res.Data) == 0 { + return nil, errors.New("not found") + } + + return &TokenInfo{ + Symbol: res.Data[0].Symbol, + Decimals: res.Data[0].Decimals, + HoldersCount: res.Data[0].HoldersCount, + }, nil +} diff --git a/internal/info/external/trc20.go b/internal/info/external/trc20.go new file mode 100644 index 0000000000000..3f4c228855d7d --- /dev/null +++ b/internal/info/external/trc20.go @@ -0,0 +1,38 @@ +package external + +import ( + "errors" + "fmt" + + "github.com/trustwallet/assets-go-libs/http" +) + +const trc20APIURL = "https://apilist.tronscan.io/api/token_trc20?contract=%s" + +type TRC20TokensResponse struct { + TRC20Tokens []struct { + Symbol string `json:"symbol"` + Decimals int `json:"decimals"` + HoldersCount int `json:"holders_count"` + } `json:"trc20_tokens"` +} + +func GetTokenInfoForTRC20(tokenID string) (*TokenInfo, error) { + url := fmt.Sprintf(trc20APIURL, tokenID) + + var res TRC20TokensResponse + err := http.GetHTTPResponse(url, &res) + if err != nil { + return nil, err + } + + if len(res.TRC20Tokens) == 0 { + return nil, errors.New("not found") + } + + return &TokenInfo{ + Symbol: res.TRC20Tokens[0].Symbol, + Decimals: res.TRC20Tokens[0].Decimals, + HoldersCount: res.TRC20Tokens[0].HoldersCount, + }, nil +} diff --git a/internal/info/fields_validators.go b/internal/info/fields_validators.go new file mode 100644 index 0000000000000..0d87b3239e646 --- /dev/null +++ b/internal/info/fields_validators.go @@ -0,0 +1,263 @@ +package info + +import ( + "fmt" + "strings" + + str "github.com/trustwallet/assets-go-libs/strings" + "github.com/trustwallet/assets-go-libs/validation" + "github.com/trustwallet/go-primitives/coin" + "github.com/trustwallet/go-primitives/types" +) + +// Asset info specific validators. + +func ValidateAssetRequiredKeys(a AssetModel) error { + var fields []string + if a.Name != nil && !isEmpty(*a.Name) { + fields = append(fields, "name") + } + if a.Symbol != nil && !isEmpty(*a.Symbol) { + fields = append(fields, "symbol") + } + if a.Type != nil && !isEmpty(*a.Type) { + fields = append(fields, "type") + } + if a.Decimals != nil { + fields = append(fields, "decimals") + } + if a.Description != nil && !isEmpty(*a.Description) { + fields = append(fields, "description") + } + if a.Website != nil { + fields = append(fields, "website") + } + if a.Explorer != nil && !isEmpty(*a.Explorer) { + fields = append(fields, "explorer") + } + if a.Status != nil && !isEmpty(*a.Status) { + fields = append(fields, "status") + } + if a.ID != nil && !isEmpty(*a.ID) { + fields = append(fields, "id") + } + + if len(fields) != len(requiredAssetFields) { + return fmt.Errorf("%w: %s", validation.ErrMissingField, + strings.Join(str.Difference(requiredAssetFields, fields), ", ")) + } + + return nil +} + +func ValidateAssetType(assetType string, chain coin.Coin) error { + chainFromType, err := types.GetChainFromAssetType(assetType) + if err != nil { + return fmt.Errorf("failed to get chain from asset type: %w", err) + } + + if chainFromType != chain { + return fmt.Errorf("%w: asset type field", validation.ErrInvalidField) + } + + if strings.ToUpper(assetType) != assetType { + return fmt.Errorf("%w: asset type should be ALLCAPS", validation.ErrInvalidField) + } + + return nil +} + +func ValidateAssetID(id, address string) error { + if id != address { + if !strings.EqualFold(id, address) { + return fmt.Errorf("%w: invalid id field", validation.ErrInvalidField) + } + + return fmt.Errorf("%w: invalid case for id field", validation.ErrInvalidField) + } + + return nil +} + +func ValidateAssetDecimalsAccordingType(assetType string, decimals int) error { + if assetType == "BEP2" && decimals != 8 { + return fmt.Errorf("%w: invalid decimals field, BEP2 tokens have 8 decimals", validation.ErrInvalidField) + } + + return nil +} + +// CoinModel info specific validators. + +func ValidateCoinRequiredKeys(c CoinModel) error { + var fields []string + if c.Name != nil && !isEmpty(*c.Name) { + fields = append(fields, "name") + } + if c.Symbol != nil && !isEmpty(*c.Symbol) { + fields = append(fields, "symbol") + } + if c.Type != nil && !isEmpty(*c.Type) { + fields = append(fields, "type") + } + if c.Decimals != nil { + fields = append(fields, "decimals") + } + if c.Description != nil && !isEmpty(*c.Description) { + fields = append(fields, "description") + } + if c.Website != nil && !isEmpty(*c.Website) { + fields = append(fields, "website") + } + if c.Explorer != nil && !isEmpty(*c.Explorer) { + fields = append(fields, "explorer") + } + if c.Status != nil && !isEmpty(*c.Status) { + fields = append(fields, "status") + } + + if len(fields) != len(requiredCoinFields) { + return fmt.Errorf("%w: %s", validation.ErrMissingField, + strings.Join(str.Difference(requiredCoinFields, fields), ", ")) + } + + return nil +} + +func ValidateLinks(links []Link) error { + if len(links) < 2 { + return nil + } + + for _, l := range links { + if l.Name == nil || l.URL == nil { + return fmt.Errorf("%w: missing required fields links.url and links.name", validation.ErrMissingField) + } + + if !linkNameAllowed(*l.Name) { + return fmt.Errorf("invalid value for links.name filed, allowed only: %s", + strings.Join(supportedLinkNames(), ", ")) + } + + prefix := allowedLinkKeys[*l.Name] + if prefix != "" { + if !strings.HasPrefix(*l.URL, prefix) { + return fmt.Errorf("invalid value '%s' for %s link url, allowed only with prefix: %s", + *l.URL, *l.Name, prefix) + } + } + + if !strings.HasPrefix(*l.URL, "https://") { + return fmt.Errorf("invalid value for links.url field, allowed only with https:// prefix") + } + + if *l.Name == "medium" { + if !strings.Contains(*l.URL, "medium.com") { + return fmt.Errorf("invalid value for links.url field, should contain medium.com") + } + } + } + + return nil +} + +func ValidateCoinType(assetType string) error { + if assetType != "coin" { + return fmt.Errorf("%w: only \"coin\" type allowed for coin field", validation.ErrInvalidField) + } + + return nil +} + +func ValidateTags(tags, allowedTags []string) error { + for _, t := range tags { + if !str.Contains(t, allowedTags) { + return fmt.Errorf("%w: tag '%s' not allowed", validation.ErrInvalidField, t) + } + } + + return nil +} + +// Both infos can be validated by this validators. + +func ValidateDecimals(decimals int) error { + if decimals > 30 || decimals < 0 { + return fmt.Errorf("%w: decimals field", validation.ErrInvalidField) + } + + return nil +} + +func ValidateStatus(status string) error { + for _, f := range allowedStatusValues { + if f == status { + return nil + } + } + + return fmt.Errorf("%w: allowed status field values: %s", validation.ErrInvalidField, + strings.Join(allowedStatusValues, ", ")) +} + +func ValidateDescription(description string) error { + if len(description) > 600 { + return fmt.Errorf("%w: invalid length for description field", validation.ErrInvalidField) + } + + for _, ch := range whiteSpaceCharacters { + if strings.Contains(description, ch) { + return fmt.Errorf("%w: description contains not allowed characters (new line, double space)", + validation.ErrInvalidField) + } + } + + return nil +} + +func ValidateDescriptionWebsite(description, website string) error { + if description != "-" && website == "" { + return fmt.Errorf("%w: website field", validation.ErrMissingField) + } + + return nil +} + +func ValidateExplorer(explorer, name string, chain coin.Coin, addr, tokenType string) error { + // explorer url is composed with values outside info.json. + if chain == coin.Nativeinjective() { + return nil + } + + explorerExpected, err := coin.GetCoinExploreURL(chain, addr, tokenType) + if err != nil { + explorerExpected = "" + } + + explorerActual := explorer + + if !strings.EqualFold(explorerActual, explorerExpected) { + explorerAlt := explorerURLAlternatives(chain.Handle, name) + if len(explorerAlt) == 0 { + return nil + } + + var matchCount int + + for _, e := range explorerAlt { + if strings.EqualFold(e, explorerActual) { + matchCount++ + } + } + + if matchCount == 0 { + return fmt.Errorf("invalid value for explorer field, %s insted of %s", explorerActual, explorerExpected) + } + } + + return nil +} + +func isEmpty(field string) bool { + return field == "" +} diff --git a/internal/info/model.go b/internal/info/model.go new file mode 100644 index 0000000000000..0a5d237e91daf --- /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 0000000000000..9463c1082d394 --- /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 1f393c9947484..96c91db85ae38 100644 --- a/internal/manager/manager.go +++ b/internal/manager/manager.go @@ -2,6 +2,7 @@ package manager import ( "os" + "strings" "github.com/trustwallet/assets-go-libs/file" "github.com/trustwallet/assets-go-libs/path" @@ -116,6 +117,15 @@ func handleAddTokenList(args []string, tokenlistType path.TokenListType) { } } +func filter[T any](ss []T, test func(T) bool) (ret []T) { + for _, s := range ss { + if test(s) { + ret = append(ret, s) + } + } + return +} + func InitAssetsService() *service.Service { setup() @@ -124,6 +134,15 @@ func InitAssetsService() *service.Service { log.WithError(err).Fatal("Failed to load file structure.") } + paths = filter(paths, func(path string) bool { + for _, dir := range config.Default.ValidatorsSettings.RootFolder.SkipDirs { + if strings.Contains(path, dir) { + return false + } + } + return true + }) + fileService := file.NewService(paths...) validatorsService := processor.NewService(fileService) reportService := report.NewService() diff --git a/internal/processor/fixers.go b/internal/processor/fixers.go index 8c929dd49e4cf..88c58f56cb35d 100644 --- a/internal/processor/fixers.go +++ b/internal/processor/fixers.go @@ -146,9 +146,12 @@ func (s *Service) FixAssetInfo(f *file.AssetFile) error { expectedTokenType = strings.ToUpper(assetType) } - if chain.ID != f.Chain().ID || !strings.EqualFold(assetType, expectedTokenType) { - assetInfo.Type = &expectedTokenType - isModified = true + // https://github.com/trustwallet/backend/issues/2561 + if chain.ID != coin.CRYPTOORG && chain.ID != coin.CRONOS { + if chain.ID != f.Chain().ID || !strings.EqualFold(assetType, expectedTokenType) { + assetInfo.Type = &expectedTokenType + isModified = true + } } // Fix asset id. diff --git a/internal/processor/validators.go b/internal/processor/validators.go index 0788ddcadafd3..61842118c15f6 100644 --- a/internal/processor/validators.go +++ b/internal/processor/validators.go @@ -8,10 +8,10 @@ import ( "github.com/trustwallet/assets-go-libs/file" "github.com/trustwallet/assets-go-libs/path" "github.com/trustwallet/assets-go-libs/validation" - "github.com/trustwallet/assets-go-libs/validation/info" "github.com/trustwallet/assets-go-libs/validation/list" "github.com/trustwallet/assets-go-libs/validation/tokenlist" "github.com/trustwallet/assets/internal/config" + "github.com/trustwallet/assets/internal/info" "github.com/trustwallet/go-primitives/coin" ) @@ -206,9 +206,12 @@ func (s *Service) ValidateAssetInfoFile(f *file.AssetFile) error { return err } - err := info.ValidateAsset(assetInfo, f.Chain(), f.Asset()) - if err != nil { - return err + // https://github.com/trustwallet/backend/issues/2561 + if f.Chain() != coin.Cryptoorg() && f.Chain() != coin.Cronos() { + err := info.ValidateAsset(assetInfo, f.Chain(), f.Asset()) + if err != nil { + return err + } } return nil