服务端的项目

DApp browser https://github.com/TrustWallet/dapps-browser

该项目每次提交一个到master都会自动增加DApp,说明里面做了某个机制了。
看提交记录,里面也只是bump版本号;

Automatic deploys from master using Heroku
Every push to master will deploy a new version of this app. Deploys happen >automatically: be sure that this branch in GitHub is always in a deployable state >and any tests have passed before you push.

本项目是个带UI,展示所有收录的DApp项目;

访问的API是下面的trust-api:
// const url = 'https://trust-api.herokuapp.com';

trust-ray

官方介绍:API for the Trust Wallet

  1. Parsing entire blockchain
    遍历整个区块
  2. Retrieving transactions with operations field for ERC20 contract actions
    获取所有的交易操作域
  3. Retrieving ERC20 token balances
    获取ERC20token余额
  4. Push notification service (not yet implemented)
    给用户推送帐号变化信息

接口能力:

  1. 交易;
  2. 查价;(TokenPrice)
  3. Token;
  4. Price;
  5. 状态;
  6. Push
  7. 设备注册;
  8. assets查资源;

trust-api

这个跟trust-ray介绍有点像,其实本可以合并为一个项目,
但这个是返回如下接口:

  1. DApp分类+DApp项;
  2. 查价格;
  3. 检查App版本(比如是否发布了新的TrustWallet app版本)
  4. 查Token信息
  5. 转发Redirect
  6. Tickers
  7. 收藏(collectibles)接口;

你可能感兴趣的:(服务端的项目)