| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- import request from "./../utils/request.js";
- /**
- * 黑洞矿井相关接口
- */
- export function getMineStatus() {
- return request.get('coin/status', {})
- }
- /**
- * 启动
- */
- export function bootCoin() {
- return request.post("coin/boot");
- }
- /**
- * 历史记录
- */
- export function coinHistory(page = 1, limit = 30) {
- return request.get("coin/history?page=" + page + "&limit=" + limit);
- }
- /**
- * 更新钱包地址
- */
- export function coinAddress(address, symbol = "doge") {
- return request.post("coin/addr", {
- symbol: symbol,
- addr: address
- });
- }
- /**
- * 提币
- */
- export function coinTransfer(amount, symbol = "doge") {
- return request.post("coin/transfer", {
- symbol: symbol,
- amount: amount
- });
- }
|