Skip to content

Documents for unifying API on mining pool softwares (for different daemons).

Notifications You must be signed in to change notification settings

mining-pool/mining-pool-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

API Design

Objects

migrated to objects page

Paths

Path /

GET

fetch a table about all paths' status (available or not)

{
    "path1": true, // response of path1
    "path2": false, // response of path2
                 // ...
    "pathN": {}, // response of pathN
}

Path /config

migrated to config page

Path /pool

migrated to pool page

Path /miner

migrated to miner page

Path /payments

TODO

Path "/algorithm"

We are recommend to deploy different algorithm stratum port with different mining pool instance, so it means the frontend page have to deal with multi-api-server circumstance.

  • GET

Get all algorithms

  • POST

POST on '/algorithm' is meaning for being compatible multi-algorithms coins

{
    "name": "scrypt",
    "variant": "ltc-origin",
    "blobType": ""
}

Path "/lucky"

the lucky table

lucky = 1 / effort

More lucky means more benefit when same hashrate

  • GET
{
    "1d": 0.99,
    "7d": 1.01,
    "1m": 1.11
}
  • POST

e.g.

request with body, aiming to fetch luckies between these 14 days.

{
    "start": "1-Jan-2020",
    "end": "10-Jan-2020"
}

pool returns a list

["1.1", "1.11", "0.9", "0.98", "0.7", "1.5", "1.11", "0.9", "0.98", "1"]

Path "/effort"

the effort table

effort = 1 / lucky

More lucky means more benefit when same hashrate

  • GET
{
    "1d": 1.01,
    "7d": 0.99,
    "1m": 0.91
}
  • POST

e.g.

request with body, aiming to fetch efforts between these 14 days.

{
    "start": "1-Jan-2020",
    "end": "10-Jan-2020"
}

pool returns a list

["1.1", "1.11", "0.9", "0.98", "0.7", "1.5", "1.11", "0.9", "0.98", "1"]

About

Documents for unifying API on mining pool softwares (for different daemons).

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published