This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Ready to paste into Polkadot.js Apps Developer → JavaScript console | |
// For Kusama edit ERA_DURATION_MS to 6h!!! | |
console.log('Fetching AssetHub era & session progress\n'); | |
const activeEraOption = await api.query.staking.activeEra(); | |
if (activeEraOption.isNone) { | |
console.error('No active era found'); | |
return; | |
} |