chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:14:29 +08:00
commit b7d888a71b
32059 changed files with 305734 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: 'Type: Bug'
assignees: catenocrypt
---
**Describe the bug**
A clear and concise description of what the bug is.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
**Expected behavior**
A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]
**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
**Additional context**
Add any other context about the problem here.
+20
View File
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: 'Type: New Feature'
assignees: leedaniil
---
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Additional context**
Add any other context or screenshots about the feature request here.
+12
View File
@@ -0,0 +1,12 @@
---
name: Question
about: Any questions related to this repo
title: ''
labels: 'Type: Question'
assignees: ''
---
## How can we help ?
<!-- Short, concise description of the proposed feature -->
+73
View File
@@ -0,0 +1,73 @@
app:
log_level: "debug"
client_urls:
binance:
dex: "https://dex.binance.org"
explorer: "https://explorer.binance.org"
assets_manager_api: "https://assets.trustwallet.com/api"
urls:
assets_app: "https://assets-cdn.trustwallet.com"
logo: "https://trustwallet.com/assets/images/favicon.png"
time_format: "2006-01-02T15:04:05.000000"
validators_settings:
root_folder:
allowed_files:
- ".github"
- "blockchains"
- "dapps"
- "media"
- "node_modules"
- "script-old"
- "script"
- "test"
- ".gitignore"
- "azure-pipelines.yml"
- "jest.config.js"
- "LICENSE"
- "package-lock.json"
- "package.json"
- "README.md"
- ".git"
- ".eslintignore"
- ".eslintrc.js"
- "cmd"
- "internal"
- "go.mod"
- "go.sum"
- ".golangci.yml"
- "Makefile"
- "bin"
skip_files:
- "node_modules"
skip_dirs:
- ".git"
chain_folder:
allowed_files:
- "assets"
- "tokenlist.json"
- "chainlist.json"
- "tokenlist-extended.json"
- "validators"
- "info"
asset_folder:
allowed_files:
- "logo.png"
- "info.json"
chain_info_folder:
has_files:
- "logo.png"
- "info.json"
chain_validators_asset_folder:
has_files:
- "logo.png"
dapps_folder:
ext: ".png"
+29
View File
@@ -0,0 +1,29 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
# Go module dependencies
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
day: "wednesday"
open-pull-requests-limit: 3
labels:
- "dependencies"
groups:
go-dependencies:
patterns:
- "*"
# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
open-pull-requests-limit: 3
labels:
- "github-actions"
+16
View File
@@ -0,0 +1,16 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 1
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 2
# Issues with these labels will never be considered stale
exemptLabels:
- 'Payment Status: Paid'
- pinned
- security
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false
+31
View File
@@ -0,0 +1,31 @@
name: Check
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.18
- name: Check out code
uses: actions/checkout@v3
- name: Run check
run: make check
- name: Unit Test
run: make test
- name: Lint
run: make lint
+63
View File
@@ -0,0 +1,63 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
schedule:
- cron: '43 20 * * 6'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'go' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Use only 'java' to analyze code written in Java, Kotlin or both
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
- name: Build assets binary
run: make build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
+61
View File
@@ -0,0 +1,61 @@
name: Upload S3
on:
push:
branches:
- master
workflow_dispatch:
inputs:
use-size-only:
description: 'Include --size-only flag in aws s3 sync command'
required: false
default: 'true'
permissions:
id-token: write
env:
AWS_REGION: us-east-1
jobs:
upload-s3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Confiugre AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
aws-region: ${{ env.AWS_REGION }}
- name: Sync to S3
if: github.repository_owner == 'trustwallet'
shell: bash
run: |
SYNC_OPTIONS="--follow-symlinks --delete --exclude '*' --include 'dapps/*' --include 'blockchains/*'"
if [ "${{ github.event.inputs.use-size-only }}" == "true" ]; then
SYNC_OPTIONS="$SYNC_OPTIONS --size-only"
fi
eval "aws s3 sync . s3://$AWS_S3_BUCKET $SYNC_OPTIONS"
env:
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
- name: Get changed files
uses: jitterbit/get-changed-files@v1
if: github.event_name == 'push'
id: files
- name: Filter files to invalidate
run: |
echo "::set-output name=paths::$(echo ${{ steps.files.outputs.added_modified }} | tr ' ' '\n' | grep -E 'blockchains/|dapps/' | awk '{print "/"$1}' | tr '\n' ' ')"
if: github.event_name == 'push'
id: filter
- name: Invalidate CloudFront
if: github.repository_owner == 'trustwallet' && github.event_name == 'push' && steps.filter.outputs.paths != ''
uses: chetan/invalidate-cloudfront-action@v2
env:
PATHS: ${{ steps.filter.outputs.paths }}
DISTRIBUTION: ${{ secrets.AWS_DISTRIBUTION }}
+8
View File
@@ -0,0 +1,8 @@
**/.DS_Store
.idea
.vscode/
*~
*.txt
.env
.env.test
bin/
+243
View File
@@ -0,0 +1,243 @@
linters-settings:
cyclop:
max-complexity: 20
# the maximal average package complexity. If it's higher than 0.0 (float) the check is enabled (default 0.0)
package-average: 0.0
skip-tests: false
dogsled:
# checks assignments with too many blank identifiers; default is 2
max-blank-identifiers: 2
dupl:
threshold: 100
errcheck:
check-type-assertions: false
check-blank: false
errorlint:
errorf: false
asserts: true
comparison: true
forbidigo:
# Forbid the following identifiers (identifiers are written using regexp):
forbid:
- ^print.*$
- 'fmt\.Print.*'
exclude_godoc_examples: true
funlen:
lines: 60
statements: 60
gocognit:
min-complexity: 35
goconst:
min-len: 3
min-occurrences: 3
ignore-tests: true
match-constant: true
numbers: false
min: 3
max: 3
ignore-calls: true
gocritic:
# Which checks should be disabled; can't be combined with 'enabled-checks'
disabled-checks:
- regexpMust
gocyclo:
min-complexity: 20
godot:
# comments to be checked: `declarations`, `toplevel`, or `all`
scope: all
capital: false
godox:
# report any comments starting with keywords, this is useful for TODO or FIXME comments that
# might be left in the code accidentally and should be resolved before merging
keywords:
- TODO
- BUG
- FIXME
- NOTE
- OPTIMIZE # marks code that should be optimized before merging
- HACK # marks hack-arounds that should be removed before merging
gofmt:
# simplify code: gofmt with `-s` option
simplify: true
gofumpt:
# Select the Go version to target
lang-version: "1.18"
extra-rules: false
goimports:
# put imports beginning with prefix after 3rd-party packages;
# it's a comma-separated list of prefixes
local-prefixes: github.com/trustwallet
gomnd:
settings:
mnd:
# the list of enabled checks, see https://github.com/tommy-muehle/go-mnd/#checks for description.
checks:
- argument
- case
- condition
- operation
- return
- assign
ignored-numbers: 10,1000
gomoddirectives:
replace-local: false
gosec:
# To select a subset of rules to run.
# Available rules: https://github.com/securego/gosec#available-rules
includes:
- G401
- G306
- G101
gosimple:
# Select the Go version to target
go: "1.18"
# https://staticcheck.io/docs/options#checks
checks: [ "all" ]
govet:
check-shadowing: true
ifshort:
# Maximum length of variable declaration measured in number of lines, after which linter won't suggest using short syntax.
# Has higher priority than max-decl-chars.
max-decl-lines: 1
# Maximum length of variable declaration measured in number of characters, after which linter won't suggest using short syntax.
max-decl-chars: 30
importas:
# if set to `true`, force to use alias.
no-unaliased: true
# List of aliases
alias:
- pkg: github:com/trustwallet/go-libs/gin
alias: golibsGin
lll:
# max line length
line-length: 120
tab-width: 1
misspell:
locale: US
# ignore-words:
nolintlint:
# Enable to ensure that nolint directives are all used
allow-unused: false
# Disable to ensure that nolint directives don't have a leading space
allow-leading-space: true
# Exclude following linters from requiring an explanation
allow-no-explanation: []
# Enable to require an explanation of nonzero length after each nolint directive
require-explanation: false
# Enable to require nolint directives to mention the specific linter being suppressed
require-specific: true
revive:
# see https://github.com/mgechev/revive#available-rules for details.
ignore-generated-header: true
severity: warning
rules:
- name: indent-error-flow
severity: warning
- name: time-naming
severity: warn
- name: errorf
severity: warn
- name: blank-imports
sevetiry: warn
# The error return parameter should be last
- name: error-return
severity: error
# Redundant if when returning an error
- name: if-return
severity: warn
# Warns when there are heading or trailing newlines in a block
- name: empty-lines
severity: error
staticcheck:
# Select the Go version to target
go: "1.18"
# https://staticcheck.io/docs/options#checks
checks: [ "all" ]
stylecheck:
# Select the Go version to target
go: "1.18"
# https://staticcheck.io/docs/options#checks
checks: [ "all", "-ST1000", "-ST1003", "-ST1016", "-ST1020", "-ST1021", "-ST1022" ]
# https://staticcheck.io/docs/options#dot_import_whitelist
dot-import-whitelist:
- fmt
# https://staticcheck.io/docs/options#initialisms
initialisms: [ "ACL", "API", "ASCII", "CPU", "CSS", "DNS", "EOF", "GUID", "HTML", "HTTP", "HTTPS", "ID", "IP", "JSON", "QPS", "RAM", "RPC", "SLA", "SMTP", "SQL", "SSH", "TCP", "TLS", "TTL", "UDP", "UI", "GID", "UID", "UUID", "URI", "URL", "UTF8", "VM", "XML", "XMPP", "XSRF", "XSS" ]
# https://staticcheck.io/docs/options#http_status_code_whitelist
http-status-code-whitelist: [ "200", "400", "404", "500" ]
unused:
# Select the Go version to target
go: "1.18"
whitespace:
multi-if: true # Enforces newlines (or comments) after every multi-line if statement
multi-func: false # Enforces newlines (or comments) after every multi-line function signature
wsl:
# See https://github.com/bombsimon/wsl/blob/master/doc/configuration.md for
# documentation of available settings
allow-assign-and-anything: false
allow-assign-and-call: true
allow-cuddle-declarations: false
allow-multiline-assign: true
allow-separated-leading-comment: false
allow-trailing-comment: false
force-case-trailing-whitespace: 0
force-err-cuddling: false
force-short-decl-cuddling: false
strict-append: true
linters:
disable-all: true
enable:
- bodyclose
- deadcode
- depguard
- dogsled
- errcheck
- exportloopref
- exhaustive
- funlen
- gochecknoinits
- goconst
- gocritic
- gocyclo
- gofmt
- goimports
# - gomnd
- goprintffuncname
- gosec
- gosimple
- govet
- ineffassign
- lll
- misspell
- nakedret
- noctx
- nolintlint
- rowserrcheck
- staticcheck
- structcheck
- stylecheck
- typecheck
- unconvert
- unparam
- unused
- varcheck
- whitespace
- asciicheck
# - gochecknoglobals
- gocognit
- godot
# - godox
# - goerr113
# - nestif
- prealloc
# - revive
# - wsl
output:
format: colored-line-number
print-issued-lines: true
print-linter-name: true
uniq-by-line: true
path-prefix: ""
sort-results: true
+21
View File
@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2019-2023 Trust Wallet
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+61
View File
@@ -0,0 +1,61 @@
#! /usr/bin/make -f
# Project variables.
VERSION := $(shell git describe --tags 2>/dev/null || git describe --all)
BUILD := $(shell git rev-parse --short HEAD)
PROJECT_NAME := $(shell basename "$(PWD)")
BUILD_TARGETS := $(shell find cmd -name \*main.go | awk -F'/' '{print $$0}')
# Use linker flags to provide version/build settings
LDFLAGS=-ldflags "-X=main.Version=$(VERSION) -X=main.Build=$(BUILD)"
# Make is verbose in Linux. Make it silent.
MAKEFLAGS += --silent
# Go files.
GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
# Common commands.
all: fmt lint test
build:
@echo " > Building main.go to bin/assets"
go build $(LDFLAGS) -o bin/assets ./cmd
test:
@echo " > Running unit tests"
go test -cover -race -coverprofile=coverage.txt -covermode=atomic -v ./...
fmt:
@echo " > Format all go files"
gofmt -w ${GOFMT_FILES}
lint-install:
ifeq (,$(wildcard test -f bin/golangci-lint))
@echo " > Installing golint"
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- v1.50.1
endif
lint: lint-install
@echo " > Running golint"
bin/golangci-lint run --timeout=2m
# Assets commands.
check: build
bin/assets check
fix: build
bin/assets fix
update-auto: build
bin/assets update-auto
# Helper commands.
add-token: build
bin/assets add-token $(asset_id)
add-tokenlist: build
bin/assets add-tokenlist $(asset_id)
add-tokenlist-extended: build
bin/assets add-tokenlist-extended $(asset_id)
+81
View File
@@ -0,0 +1,81 @@
# Trust Wallet Assets Info
![Check](https://github.com/trustwallet/assets/workflows/Check/badge.svg)
## Overview
Trust Wallet token repository is a comprehensive, up-to-date collection of information about several thousands (!) of crypto tokens.
[Trust Wallet](https://trustwallet.com) uses token logos from this source, alongside a number of other projects.
The repository contains token info from several blockchains, info on dApps, staking validators, etc.
For every token a logo and optional additional information is available (such data is not available on-chain).
Such a large collection can be maintained only through a community effort, so _feel free to add your token_.
<center><img src='https://trustwallet.com/assets/images/media/assets/horizontal_blue.png' height="200"></center>
## How to add token
Please note that __brand new tokens are not accepted__,
the projects have to be sound, with information available, and __non-minimal circulation__
(for limit details see <https://developer.trustwallet.com/listing-new-assets/requirements>).
### Assets App
The [Assets web app](https://assets.trustwallet.com) can be used for most new token additions (Github account is needed).
### Quick starter
Details of the repository structure and contribution guidelines are listed on the
[Developers site](https://developer.trustwallet.com/listing-new-assets/new-asset).
Here is a quick starter summary for the most common use case.
## Documentation
For details, see the [Developers site](https://developer.trustwallet.com):
- [Contribution guidelines](https://developer.trustwallet.com/listing-new-assets/repository_details)
- [FAQ](https://developer.trustwallet.com/listing-new-assets/faq)
## Scripts
There are several scripts available for maintainers:
- `make check` -- Execute validation checks; also used in continuous integration.
- `make fix` -- Perform automatic fixes where possible
- `make update-auto` -- Run automatic updates from external sources, executed regularly (GitHub action)
- `make add-token asset_id=c60_t0x4Fabb145d64652a948d72533023f6E7A623C7C53` -- Create `info.json` file as asset template.
- `make add-tokenlist asset_id=c60_t0x4Fabb145d64652a948d72533023f6E7A623C7C53` -- Adds a token to tokenlist.json.
- `make add-tokenlist-extended asset_id=c60_t0x4Fabb145d64652a948d72533023f6E7A623C7C53` -- Adds a token to tokenlist-extended.json.
## On Checks
This repo contains a set of scripts for verification of all the information. Implemented as Golang scripts, available through `make check`, and executed in CI build; checks the whole repo.
There are similar check logic implemented:
- in assets-management app; for checking changed token files in PRs, or when creating a PR. Checks diffs, can be run from browser environment.
- in merge-fee-bot, which runs as a GitHub app shows result in PR comment. Executes in a non-browser environment.
## Trading pair maintenance
Info on supported trading pairs are stored in `tokenlist.json` files.
Trading pairs can be updated --
from Uniswap/Ethereum and PancakeSwap/Smartchain -- using update script (and checking in changes).
Minimal limit values for trading pair inclusion are set in the [config file](https://github.com/trustwallet/assets/blob/master/.github/assets.config.yaml).
There are also options for force-include and force-exclude in the config.
## Disclaimer
Trust Wallet team allows anyone to submit new assets to this repository. However, this does not mean that we are in direct partnership with all of the projects.
Trust Wallet team will reject projects that are deemed as scam or fraudulent after careful review.
Trust Wallet team reserves the right to change the terms of asset submissions at any time due to changing market conditions, risk of fraud, or any other factors we deem relevant.
Additionally, spam-like behavior, including but not limited to mass distribution of tokens to random addresses will result in the asset being flagged as spam and possible removal from the repository.
## License
The scripts and documentation in this project are released under the [MIT License](LICENSE)
+7
View File
@@ -0,0 +1,7 @@
# WeHub 来源说明
- 原始项目:`trustwallet/assets`
- 原始仓库:https://github.com/trustwallet/assets
- 导入方式:上游默认分支的最新快照
- 原作者、版权和许可证信息以原始仓库及本仓库 LICENSE 为准
- 本文件仅用于记录来源,不代表 WeHub 是原项目作者
+20
View File
@@ -0,0 +1,20 @@
{
"name": "Acala",
"website": "https://acala.network",
"description": "Acala provides backend infrastructure for traditional finance that is trusted by institutions like Coinbase, Figment, and Current.com.",
"explorer": "https://acala.subscan.io",
"symbol": "ACA",
"type": "coin",
"decimals": 12,
"status": "active",
"links": [
{
"name": "github",
"url": "https://github.com/AcalaNetwork/Acala"
},
{
"name": "x",
"url": "https://x.com/AcalaNetwork"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

@@ -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/"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

@@ -0,0 +1,42 @@
{
"name": "Dai Stablecoin",
"website": "http://makerdao.com",
"description": "Dai is a stable cryptocurrency supported by Maker (MKR). To ensure price stability, Dai minimizes the price volatility against the US dollar, through an incentive structure for its participants.",
"explorer": "https://blockscout.acala.network/token/0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE",
"research": "https://research.binance.com/en/projects/dai",
"type": "ACALAEVM",
"symbol": "DAI",
"decimals": 18,
"status": "active",
"id": "0x54A37A01cD75B616D63E0ab665bFfdb0143c52AE",
"tags": [
"defi",
"stablecoin"
],
"links": [
{
"name": "x",
"url": "https://x.com/MakerDAO"
},
{
"name": "reddit",
"url": "https://reddit.com/MakerDAO/"
},
{
"name": "blog",
"url": "https://blog.makerdao.com/"
},
{
"name": "whitepaper",
"url": "https://makerdao.com/whitepaper/"
},
{
"name": "coinmarketcap",
"url": "https://coinmarketcap.com/currencies/multi-collateral-dai/"
},
{
"name": "coingecko",
"url": "https://coingecko.com/en/coins/dai/"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

+20
View File
@@ -0,0 +1,20 @@
{
"name": "Acala EVM",
"website": "https://acala.network",
"description": "Acala provides backend infrastructure for traditional finance that is trusted by institutions like Coinbase, Figment, and Current.com.",
"explorer": "https://blockscout.acala.network",
"symbol": "ACA",
"type": "coin",
"decimals": 18,
"status": "active",
"links": [
{
"name": "github",
"url": "https://github.com/AcalaNetwork/Acala"
},
{
"name": "x",
"url": "https://x.com/AcalaNetwork"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

+29
View File
@@ -0,0 +1,29 @@
{
"name": "Aeternity",
"website": "https://aeternity.com",
"description": "Aeternity is a blockchain platform with turing complete smart contracts. The platform implemented decentralized oracles to make it possible for decentralized applications to use real world data.",
"explorer": "https://www.aeknow.org/",
"research": "https://research.binance.com/en/projects/aeternity",
"symbol": "AE",
"type": "coin",
"decimals": 18,
"status": "active",
"links": [
{
"name": "github",
"url": "https://github.com/aeternity"
},
{
"name": "x",
"url": "https://x.com/aeternity"
},
{
"name": "reddit",
"url": "https://reddit.com/r/Aeternity"
},
{
"name": "whitepaper",
"url": "https://github.com/aeternity/white-paper/blob/master/paper.pdf"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

+28
View File
@@ -0,0 +1,28 @@
{
"name": "Agoric",
"website": "https://agoric.com",
"description": "Agoric is a Proof-of-Stake chain utilizing Hardened JavaScript smart contracts to rapidly build and deploy DeFi.",
"explorer": "https://atomscan.com/agoric/",
"research": "",
"symbol": "BLD",
"type": "coin",
"decimals": 6,
"status": "active",
"tags": [
"staking-native"
],
"links": [
{
"name": "github",
"url": "https://github.com/Agoric"
},
{
"name": "x",
"url": "https://x.com/agoric"
},
{
"name": "whitepaper",
"url": "https://agoric.com/wp-content/uploads/2022/08/Agoric-White-Paper-v1.1.pdf"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 821 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

+44
View File
@@ -0,0 +1,44 @@
[
{
"id": "agoricvaloper1ahd5z754dkgqxuc5fcwd2s5tatmpurhsdeqes2",
"name": "0xFury",
"description": "0xFury - Enterprise-grade blockchain infrastructure solutions.",
"website": "https://0xfury.com/"
},
{
"id": "agoricvaloper1n3mhyp9fvcmuu8l0q8qvjy07x0rql8q4acufxj",
"name": "0base.vc",
"description": "0base.vc is a validator who doesn't trust any blockchain; we validate it ourselves.",
"website": "https://0base.vc/"
},
{
"id": "agoricvaloper1jjx0vc6dxe44mxzyq2la22j86avdmj0qpkum7f",
"name": "Agaram.ai",
"description": "Securing Agoric. 100% Slash protected",
"website": "https://agaram.ai/"
},
{
"id": "agoricvaloper1df98lt4ph685ujr69jy5w8xvrtszad7te7pna9",
"name": "AutoStake 🛡️ Slash Protected",
"description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake",
"website": "https://autostake.com"
},
{
"id": "agoricvaloper1nkrt7kjln9rsypg3m4k23q703nww9lj9msvqp5",
"name": "Stakin",
"description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.",
"website": "https://stakin.com/"
},
{
"id": "agoricvaloper1tfmed8ueaxrmdsvkecrae6renyxjct8xwdkes5",
"name": "w3coins",
"description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.",
"website": "https://www.w3coins.io"
},
{
"id": "agoricvaloper1mxhgvj2c93xahahx9d9fc7rwwtufqza5cn6uhn",
"name": "Stakely.io",
"description": "🔥 Professional validator highly experienced in PoS 🔥 Slashing protection & Eligible for airdrops | Learn with our staking guides, video tutorials and FAQs | Part of the commission of our nodes will go to our Multicoin Faucet funds and other tools 🌱 Carbon Neutral 🌱",
"website": "https://stakely.io"
}
]
+29
View File
@@ -0,0 +1,29 @@
{
"name": "Aion",
"website": "https://theoan.com",
"description": "The Aion blockchain addresses the scalabilty problem. It has a bridging mechanism that makes inter-blockchain communication with data and value possible. The Aion blockchain also addresses the scalability problem with its virtual machine and enabling of applications to establish a multiple chain connection.",
"explorer": "https://mainnet.aion.network",
"research": "https://research.binance.com/en/projects/aion",
"symbol": "AION",
"type": "coin",
"decimals": 18,
"status": "active",
"links": [
{
"name": "github",
"url": "https://github.com/aionnetwork"
},
{
"name": "x",
"url": "https://x.com/Aion_OAN"
},
{
"name": "reddit",
"url": "https://reddit.com/r/AionNetwork"
},
{
"name": "whitepaper",
"url": "https://aion.network/developers/#whitepapers"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

+31
View File
@@ -0,0 +1,31 @@
{
"name": "Akash Network",
"type": "coin",
"symbol": "AKT",
"decimals": 6,
"website": "https://akash.network/",
"description": "The world first decentralized open source cloud, and DeCloud for DeFi, built with the Cosmos SDK.",
"explorer": "https://www.mintscan.io/akash",
"status": "active",
"rpc_url": "https://akash-rpc.polkachu.com/",
"denom": "uakt",
"lcd_url": "https://akash-api.polkachu.com/",
"hrp": "akash",
"tags": [
"staking-native"
],
"links": [
{
"name": "github",
"url": "https://github.com/akash-network"
},
{
"name": "whitepaper",
"url": "https://docs.akash.network/"
},
{
"name": "x",
"url": "https://x.com/akashnet_"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

+80
View File
@@ -0,0 +1,80 @@
[
{
"id": "akashvaloper1dgxdep80th2qm8xxk8h3j3g93npsd3a8jg60gz",
"name": "StakeLab",
"description": "Staking & Relaying Hub for Cosmos ecosystem.",
"website": "https://stakelab.zone"
},
{
"id": "akashvaloper105nkdqgkj3hpgqss0elcec2t72ujg09w5mzhm8",
"name": "NodesByGirls",
"description": "We are a professional team with many years of experience in the crypto industry. Stake with us to get the best APR!",
"website": "https://nodesbygirls.com/"
},
{
"id": "akashvaloper1c07ughj0a396vdg7t9edy2wyrzr90p02yhl7p8",
"name": "Allnodes",
"description": "Reliable non-custodial Validator run by the industry leader - Allnodes. Monitor your rewards through the Allnodes portfolio page.",
"website": "https://www.allnodes.com/akt/staking"
},
{
"id": "akashvaloper1qvsus5qg8yhre7k2c78xkkw4nvqqgev7zw5wzs",
"name": "kava_labs",
"description": "Kava is a decentralized blockchain that combines the speed and interoperability of Cosmos with the developer power of Ethereum.",
"website": "https://www.kava.io"
},
{
"id": "akashvaloper14kn0kk33szpwus9nh8n87fjel8djx0y0uzn073",
"name": "Forbole",
"description": "Forbole is a renown validator in blockchain ecosystems such as Cosmos, Solana and Polkadot. We are an early investor and recognized contributor in Akash. We will continuous our effort to build Akash ecosystem with stakers like you.",
"website": "https://www.forbole.com"
},
{
"id": "akashvaloper1strxz39h5fapp7zvn5mvf8xm0ea9aajqjstv6g",
"name": "AutoStake 🛡️ Slash Protected",
"description": "BareMetal - Decentralised - Reliable infrastructure run by the industry leader - AutoStake - Connect with us at: https://linktr.ee/autostake",
"website": "https://autostake.com"
},
{
"id": "akashvaloper1lxh0u07haj646pt9e0l2l4qc3d8htfx5kk698d",
"name": "Chandra Station",
"description": "100% Uptime|100% Transparency|100% Slashing Protection",
"website": "https://www.chandrastation.com"
},
{
"id": "akashvaloper12fnzqmnja37mf2y9m6r3dleq5n3jkz7pfkpzmy",
"name": "Stakin",
"description": "Experienced enterprise validator running Proof-of-Stake nodes for the Cosmos ecosystem and beyond.",
"website": "https://stakin.com/"
},
{
"id": "akashvaloper14jz04wwvwkpjzezq8zvrl5yv4qq3p5lqct7plh",
"name": "w3coins",
"description": "w3coins is a Professional Validator and web3 Venture Capital. Stake Your Cryptocurrency with us to Maximize Your Earnings.",
"website": "https://www.w3coins.io"
},
{
"id": "akashvaloper140l6y2gp3gxvay6qtn70re7z2s0gn57ztqs903",
"name": "Lavender.Five Nodes 🐝",
"description": "Fortifying crypto networks with Horcrux security, 100% slash insurance, and open source contributions. Connect with us at https://linktr.ee/lavenderfive.",
"website": "https://lavenderfive.com/"
},
{
"id": "akashvaloper14mdu3xwpdr4qkayuv0aut5j6l9lgegc4hnvm9e",
"name": "Meria",
"description": "Meria is an institutional-grade staking service provider running blockchain infrastructure on more than +35 networks.",
"website": "https://stake.meria.com/"
},
{
"id": "akashvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98aup3je",
"name": "Kahuna",
"description": "Kahuna is a tech-focused investment firm dedicated to Blockchain Infrastructure, DeFi, and Gaming startups. Follow us on https://x.com/kahunahq",
"website": "https://www.kahuna.network/"
},
{
"id": "akashvaloper18xmxazt7zjhhvzv7u49fs8hjy4w7l4dyvvxpuf",
"name": "Coinage x DAIC",
"description": "The official validator node from Coinage (Coinage.Media) and DAIC (https://daic.capital/telegram)",
"website": "https://daic.capital/"
}
]
@@ -0,0 +1,32 @@
{
"name": "HEADLINE",
"website": "https://www.headline-inc.com",
"description": "HEADLINE is the Algoramd utility token that powers AlgoCloud, FORUM, Vaults Protocol, and much more. HDL is developed by HEADLINE Crypto, the premier dev toolkit builder on the Algorand blockchain.",
"explorer": "https://algoexplorer.io/asset/137594422",
"id": "137594422",
"symbol": "HDL",
"type": "ASA",
"decimals": 6,
"status": "active",
"links": [
{
"name": "github",
"url": "https://github.com/headline-design"
},
{
"name": "x",
"url": "https://x.com/headline_crypto"
},
{
"name": "reddit",
"url": "https://reddit.com/r/headlinecrypto"
},
{
"name": "whitepaper",
"url": "https://www.headline-inc.com/files/white-paper.pdf"
}
],
"tags": [
"defi"
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

@@ -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/"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

@@ -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"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

+29
View File
@@ -0,0 +1,29 @@
{
"name": "Algorand",
"website": "http://algorand.foundation",
"description": "Algorand is the first blockchain to provide immediate transaction finality. No forking. No uncertainty. Algorand removes the technical barriers that for years undermined mainstream blockchain adoption: decentralization, scale, and security.",
"explorer": "https://algoexplorer.io/",
"research": "https://research.binance.com/en/projects/algorand",
"symbol": "ALGO",
"type": "coin",
"decimals": 6,
"status": "active",
"links": [
{
"name": "github",
"url": "https://github.com/algorand"
},
{
"name": "x",
"url": "https://x.com/AlgoFoundation"
},
{
"name": "reddit",
"url": "https://reddit.com/r/AlgorandOfficial"
},
{
"name": "whitepaper",
"url": "https://www.algorand.com/resources/white-papers/"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

@@ -0,0 +1,20 @@
{
"name": "World Liberty Financial USD",
"type": "APTOS",
"symbol": "USD1",
"decimals": 6,
"description": "A stablecoin by World Liberty Financial, redeemable 1:1 for the US dollar and backed by U.S. treasuries, dollar deposits, and other cash equivalents.",
"website": "https://www.worldlibertyfinancial.com/",
"explorer": "https://explorer.aptoslabs.com",
"status": "active",
"id": "0x05fabd1b12e39967a3c24e91b7b8f67719a6dacee74f3c8b9fb7d93e855437d2",
"links": [
{
"name": "coinmarketcap",
"url": "https://coinmarketcap.com/currencies/usd1/"
}
],
"tags": [
"stablecoin"
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

@@ -0,0 +1,11 @@
{
"name": "Argo USD",
"symbol": "USDA",
"decimals": 6,
"website": "https://argo.fi/",
"status": "active",
"id": "0x1000000fa32d122c18a6a31c009ce5e71674f22d06a581bb0a15575e6addadcc::usda::USDA",
"tags": [
"stablecoin"
]
}
@@ -0,0 +1,34 @@
{
"name": "PancakeSwap Token",
"symbol": "CAKE",
"decimals": 8,
"website": "https://pancakeswap.finance",
"status": "active",
"description": "PancakeSwap is a yield farming project whereby users can get FLIP for staking and get CAKE token as reward. CAKE holders can swap CAKE for SYRUP for additional incentivized staking.",
"id": "0x159df6b7689437016108a019fd5bef736bac692b6d4a1f10c941f6fbb9a74ca6%3A%3Aoft%3A%3ACakeOFT",
"tags": [
"defi"
],
"links": [
{
"name": "github",
"url": "https://github.com/pancakeswap"
},
{
"name": "x",
"url": "https://x.com/pancakeswap"
},
{
"name": "blog",
"url": "https://medium.com/@pancakeswap"
},
{
"name": "telegram",
"url": "https://t.me/PancakeSwap"
},
{
"name": "coingecko",
"url": "https://coingecko.com/coins/pancakeswap-token/"
}
]
}
@@ -0,0 +1,7 @@
{
"name": "Nexum Coin",
"symbol": "NEXM",
"decimals": 8,
"status": "active",
"id": "0x1f9dca8eb42832b9ea07a804d745ef08833051e0c75c45b82665ef6f6e7fac32::coin::T"
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

@@ -0,0 +1,7 @@
{
"name": "SushiToken (Wormhole)",
"symbol": "SUSHI",
"decimals": 8,
"status": "active",
"id": "0x2305dd96edd8debb5a2049be54379c74e61b37ceb54a49bd7dee4726d2a6b689::coin::T"
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

@@ -0,0 +1,28 @@
{
"name": "Tether USD",
"website": "https://tether.to",
"description": "Tether (USDT) is a cryptocurrency with a value meant to mirror the value of the U.S. dollar.",
"explorer": "https://explorer.aptoslabs.com/fungible_asset/0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b?network=mainnet",
"symbol": "USDT",
"type": "APTOSFA",
"decimals": 6,
"status": "active",
"id": "0x357b0b74bc833e95a115ad22604854d6b0fca151cecd94111770e5d6ffc9dc2b",
"tags": [
"stablecoin"
],
"links": [
{
"name": "facebook",
"url": "https://facebook.com/tether.to/"
},
{
"name": "x",
"url": "https://x.com/Tether_to/"
},
{
"name": "coinmarketcap",
"url": "https://coinmarketcap.com/currencies/tether/"
}
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

@@ -0,0 +1,7 @@
{
"name": "NEAR (Wormhole)",
"symbol": "NEAR",
"decimals": 8,
"status": "active",
"id": "0x394205c024d8e932832deef4cbfc7d3bb17ff2e9dc184fa9609405c2836b94aa::coin::T"
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

@@ -0,0 +1,10 @@
{
"name": "USD Coin (Wormhole Avalanche)",
"symbol": "USDCav",
"decimals": 6,
"status": "active",
"id": "0x39d84c2af3b0c9895b45d4da098049e382c451ba63bec0ce0396ff7af4bb5dff::coin::T",
"tags": [
"stablecoin"
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

@@ -0,0 +1,10 @@
{
"name": "Dai Stablecoin (Wormhole)",
"symbol": "DAI",
"decimals": 8,
"status": "active",
"id": "0x407a220699982ebb514568d007938d2447d33667e4418372ffec1ddb24491b6c::coin::T",
"tags": [
"stablecoin"
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

@@ -0,0 +1,7 @@
{
"name": "FTX Token",
"symbol": "FTT",
"decimals": 8,
"status": "active",
"id": "0x419d16ebaeda8dc374b1178a61d24fb699799d55a3f475f427998769c537b51b::coin::T"
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

@@ -0,0 +1,10 @@
{
"name": "Wrapped AVAX (Wormhole)",
"symbol": "WAVAX",
"decimals": 8,
"status": "active",
"id": "0x5b1bbc25524d41b17a95dac402cf2f584f56400bf5cc06b53c36b331b1ec6e8f::coin::T",
"tags": [
"wrapped"
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

@@ -0,0 +1,8 @@
{
"name": "Aptoge",
"symbol": "APTOGE",
"decimals": 6,
"website": "https://aptoge.com",
"status": "active",
"id": "0x5c738a5dfa343bee927c39ebe85b0ceb95fdb5ee5b323c95559614f5a77c47cf::Aptoge::Aptoge"
}
@@ -0,0 +1,10 @@
{
"name": "USD Coin (Wormhole)",
"symbol": "USDC",
"decimals": 6,
"status": "active",
"id": "0x5e156f1207d0ebfa19a9eeff00d62a282278fb8719f4fab3a586a0a2c0fffbea::coin::T",
"tags": [
"stablecoin"
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

@@ -0,0 +1,10 @@
{
"name": "Wrapped BNB (Wormhole)",
"symbol": "WBNB",
"decimals": 8,
"status": "active",
"id": "0x6312bc0a484bc4e37013befc9949df2d7c8a78e01c6fe14a34018449d136ba86::coin::T",
"tags": [
"wrapped"
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

@@ -0,0 +1,10 @@
{
"name": "USD Coin (Wormhole, BSC)",
"symbol": "USDCbs",
"decimals": 8,
"status": "active",
"id": "0x79a6ed7a0607fdad2d18d67d1a0e552d4b09ebce5951f1e5c851732c02437595::coin::T",
"tags": [
"stablecoin"
]
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

@@ -0,0 +1,11 @@
{
"name": "Tortuga Staked Aptos",
"symbol": "tAPT",
"decimals": 8,
"website": "https://tortuga.finance/",
"status": "active",
"id": "0x84d7aeef42d38a5ffc3ccef853e1b82e4958659d16a7de736a29c55fbbeb0114::staked_aptos_coin::StakedAptosCoin",
"tags": [
"staking"
]
}

Some files were not shown because too many files have changed in this diff Show More