gramcoinorg / mining-pool

10 stars 4 forks source link

Gram Mining Pool Backend API

This API allows miners to interact with the Gram Mining Pool backend to fetch tasks and submit solutions.

Telegram Developers Chat | Telegram News Channel | Pool Official Web-site

API Host

https://api-pool.gramcoin.org

Get Task

Retrieve simplified tasks associated with a miner's address.

Request

GET /v2/task/:address

Params

Headers

Response

Response Fields

Submit Solution

Submit a solution to a task associated with a miner's address.

POST /v2/solution/:address

Params

Headers

Body

{
  id: string,
  solution: string,
}

Response