const http = require('../utils/axios') module.exports = class Chain { static async getAll() { const url = '/chain/getAll' const rst = await http.post(url, {}) return rst.data } }