Skip to content

Json files to map pool IDs and names for different Jörmungandr networks.

License

Notifications You must be signed in to change notification settings

Willburn/stake-pool-names

 
 

Repository files navigation

stake-pool-names

Json files to map pool IDs and names for different Jörmungandr networks.

If you want to pull the JSON to your website, you can use NODEjs with axios. Code would look something like this:

import axios from 'axios'

let pathToRawFile = 'https://raw.githubusercontent.com/standardize-network/stake-pool-names/master/stake-pools-official-nightly.json';

function getPoolNames() {
  let poolNames = await axios.get(pathToRawFile, {
    headers: {
      'Content-Type': 'application/json'
    }
  });
  console.log(poolNames.data);
};

getPoolNames();

About

Json files to map pool IDs and names for different Jörmungandr networks.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published