mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
41b308adbc
* Remove validators with min delegation > 0 and no free space * Remove dead validators * Update validators requirements in README * Update script with validators requirements * Remove validators logo what don't meet requirements * . * . * fix typo * Return bakers that dropped min staking to 0 * Add returned bakers images, set baker status
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
const axios = require('axios')
|
|
import {
|
|
getChainValidatorsList,
|
|
getChainValidatorsListPath,
|
|
Tezos,
|
|
writeJSONToPath
|
|
} from "../src/test/helpers";
|
|
import { BakingBadBaker } from "../src/test/models";
|
|
|
|
(async function(){
|
|
const bakers: BakingBadBaker[] = await axios.get(`https://api.baking-bad.org/v2/bakers`).then(res => res.data)
|
|
const bakersMap: {[key: string]: BakingBadBaker} = bakers.reduce((acm, val) => {
|
|
acm[val.address] = val
|
|
return acm
|
|
}, {})
|
|
|
|
const newbakers = getChainValidatorsList(Tezos).reduce((acm, val) => {
|
|
if (!(val.id in bakersMap)) {
|
|
console.log(val.id)
|
|
return acm
|
|
}
|
|
const bakerInfo = bakersMap[val.id]
|
|
|
|
val.payout.commission = Number((bakerInfo.fee * 100).toFixed(2))
|
|
val.payout.payoutDelay = bakerInfo.payoutDelay
|
|
val.payout.payoutPeriod = bakerInfo.payoutPeriod
|
|
|
|
const freeSpace = Number((bakerInfo.freeSpace).toFixed(0))
|
|
// Give baker status false if no more capacity
|
|
if (freeSpace <= 0) {
|
|
val.status = {
|
|
"disabled": true,
|
|
"note": "No more capacity"
|
|
}
|
|
}
|
|
|
|
// Enable baker if has capacity
|
|
if (freeSpace > 0 && val.hasOwnProperty("status")) {
|
|
delete val.status
|
|
}
|
|
|
|
if (bakerInfo.minDelegation > 0 || bakerInfo.serviceHealth !== "active") {
|
|
val.status = {
|
|
"disabled": true,
|
|
"note": `Must allow minimum delegation 0, current ${bakerInfo.minDelegation} and to be active, current status ${bakerInfo.serviceHealth}`
|
|
}
|
|
}
|
|
|
|
acm.push(val)
|
|
return acm
|
|
}, [])
|
|
|
|
writeJSONToPath(getChainValidatorsListPath(Tezos), newbakers)
|
|
})()
|