mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 03:01:04 +00:00
1 line
40 KiB
Plaintext
1 line
40 KiB
Plaintext
{"dependencies":[{"name":"rxjs","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":15,"index":149},"end":{"line":5,"column":30,"index":164}}],"key":"atDzfUGaJNRNtwyVumomzH/5ygw=","exportNames":["*"],"imports":1}},{"name":"../util/index.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":19,"index":185},"end":{"line":6,"column":46,"index":212}}],"key":"H94lp+EitftSFqDHaenrSs5zKB0=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.query = void 0;\n exports.queryMulti = queryMulti;\n const rxjs_1 = require(_dependencyMap[0], \"rxjs\");\n const index_js_1 = require(_dependencyMap[1], \"../util/index.js\");\n function rewardDestinationCompat(rewardDestination) {\n // We ensure the type is an Option by checking if isSome is a boolean. When isSome doesn't exist it will always return undefined.\n return typeof rewardDestination.isSome === 'boolean' ? rewardDestination.unwrapOr(null) : rewardDestination;\n }\n function filterClaimedRewards(api, cl) {\n return api.registry.createType('Vec<u32>', cl.filter(c => c !== -1));\n }\n function filterRewards(stashIds, eras, claimedRewards, stakersOverview) {\n const claimedData = {};\n const overviewData = {};\n const ids = stashIds.map(i => i.toString());\n claimedRewards.forEach(([keys, rewards]) => {\n const id = keys.args[1].toString();\n const era = keys.args[0].toNumber();\n if (ids.includes(id)) {\n if (claimedData[id]) {\n claimedData[id].set(era, rewards.toArray());\n } else {\n claimedData[id] = new Map();\n claimedData[id].set(era, rewards.toArray());\n }\n }\n });\n stakersOverview.forEach(([keys, overview]) => {\n const id = keys.args[1].toString();\n const era = keys.args[0].toNumber();\n if (ids.includes(id) && overview.isSome) {\n if (overviewData[id]) {\n overviewData[id].set(era, overview.unwrap().pageCount);\n } else {\n overviewData[id] = new Map();\n overviewData[id].set(era, overview.unwrap().pageCount);\n }\n }\n });\n return stashIds.map(id => {\n const rewardsPerEra = claimedData[id.toString()];\n const overviewPerEra = overviewData[id.toString()];\n return eras.map(era => {\n if (rewardsPerEra && rewardsPerEra.has(era) && overviewPerEra && overviewPerEra.has(era)) {\n const rewards = rewardsPerEra.get(era);\n const pageCount = overviewPerEra.get(era);\n return rewards.length === pageCount.toNumber() ? era : -1;\n }\n return -1;\n });\n });\n }\n function parseDetails(api, stashId, controllerIdOpt, nominatorsOpt, rewardDestinationOpts, validatorPrefs, exposure, stakingLedgerOpt, exposureMeta, claimedRewards, exposureEraStakers) {\n return {\n accountId: stashId,\n claimedRewardsEras: filterClaimedRewards(api, claimedRewards),\n controllerId: controllerIdOpt?.unwrapOr(null) || null,\n exposureEraStakers,\n exposureMeta,\n exposurePaged: exposure,\n nominators: nominatorsOpt.isSome ? nominatorsOpt.unwrap().targets : [],\n rewardDestination: rewardDestinationCompat(rewardDestinationOpts),\n stakingLedger: stakingLedgerOpt.unwrapOrDefault(),\n stashId,\n validatorPrefs\n };\n }\n function getLedgers(api, optIds, {\n withLedger = false\n }) {\n const ids = optIds.filter(o => withLedger && !!o && o.isSome).map(o => o.unwrap());\n const emptyLed = api.registry.createType('Option<StakingLedger>');\n return (ids.length ? (0, rxjs_1.combineLatest)(ids.map(s => api.query.staking.ledger(s))) : (0, rxjs_1.of)([])).pipe((0, rxjs_1.map)(optLedgers => {\n let offset = -1;\n return optIds.map(o => o && o.isSome ? optLedgers[++offset] || emptyLed : emptyLed);\n }));\n }\n function getStashInfo(api, stashIds, activeEra, {\n withClaimedRewardsEras,\n withController,\n withDestination,\n withExposure,\n withExposureErasStakersLegacy,\n withExposureMeta,\n withLedger,\n withNominations,\n withPrefs\n }, page) {\n const emptyNoms = api.registry.createType('Option<Nominations>');\n const emptyRewa = api.registry.createType('RewardDestination');\n const emptyExpoEraStakers = api.registry.createType('Exposure');\n const emptyPrefs = api.registry.createType('ValidatorPrefs');\n // The reason we don't explicitly make the actual types is for compatibility. If the chain doesn't have the noted type it will fail\n // on construction. Therefore we just make an empty option.\n const emptyExpo = api.registry.createType('Option<Null>');\n const emptyExpoMeta = api.registry.createType('Option<Null>');\n const emptyClaimedRewards = [-1];\n const depth = Number(api.consts.staking.historyDepth.toNumber());\n const eras = new Array(depth).fill(0).map((_, idx) => {\n if (idx === 0) {\n return activeEra.toNumber() - 1;\n }\n return activeEra.toNumber() - idx - 1;\n });\n return (0, rxjs_1.combineLatest)([withController || withLedger ? (0, rxjs_1.combineLatest)(stashIds.map(s => api.query.staking.bonded(s))) : (0, rxjs_1.of)(stashIds.map(() => null)), withNominations ? (0, rxjs_1.combineLatest)(stashIds.map(s => api.query.staking.nominators(s))) : (0, rxjs_1.of)(stashIds.map(() => emptyNoms)), withDestination ? (0, rxjs_1.combineLatest)(stashIds.map(s => api.query.staking.payee(s))) : (0, rxjs_1.of)(stashIds.map(() => emptyRewa)), withPrefs ? (0, rxjs_1.combineLatest)(stashIds.map(s => api.query.staking.validators(s))) : (0, rxjs_1.of)(stashIds.map(() => emptyPrefs)), withExposure && api.query.staking.erasStakersPaged ? (0, rxjs_1.combineLatest)(stashIds.map(s => api.query.staking.erasStakersPaged(activeEra, s, page))) : (0, rxjs_1.of)(stashIds.map(() => emptyExpo)), withExposureMeta && api.query.staking.erasStakersOverview ? (0, rxjs_1.combineLatest)(stashIds.map(s => api.query.staking.erasStakersOverview(activeEra, s))) : (0, rxjs_1.of)(stashIds.map(() => emptyExpoMeta)), withClaimedRewardsEras && api.query.staking.claimedRewards ? (0, rxjs_1.combineLatest)([api.query.staking.claimedRewards.entries(), api.query.staking.erasStakersOverview.entries()]).pipe((0, rxjs_1.map)(([rewardsStorageVec, overviewStorageVec]) => filterRewards(stashIds, eras, rewardsStorageVec, overviewStorageVec))) : (0, rxjs_1.of)(stashIds.map(() => emptyClaimedRewards)), withExposureErasStakersLegacy && api.query.staking.erasStakers ? (0, rxjs_1.combineLatest)(stashIds.map(s => api.query.staking.erasStakers(activeEra, s))) : (0, rxjs_1.of)(stashIds.map(() => emptyExpoEraStakers))]);\n }\n function getBatch(api, activeEra, stashIds, flags, page) {\n return getStashInfo(api, stashIds, activeEra, flags, page).pipe((0, rxjs_1.switchMap)(([controllerIdOpt, nominatorsOpt, rewardDestination, validatorPrefs, exposure, exposureMeta, claimedRewardsEras, exposureEraStakers]) => getLedgers(api, controllerIdOpt, flags).pipe((0, rxjs_1.map)(stakingLedgerOpts => stashIds.map((stashId, index) => parseDetails(api, stashId, controllerIdOpt[index], nominatorsOpt[index], rewardDestination[index], validatorPrefs[index], exposure[index], stakingLedgerOpts[index], exposureMeta[index], claimedRewardsEras[index], exposureEraStakers[index]))))));\n }\n /**\n * @name query\n * @param { Uint8Array | string } accountId The stash account to query.\n * @param { StakingQueryFlags } flags Flags to customize the query.\n * @param { u32 } page (Optional) pagination parameter.\n * @description Retrieves staking details for a given stash account.\n * @example\n * ```javascript\n * const stakingInfo = await api.derive.staking.query(\n * ALICE,\n * {}\n * );\n * ```\n */\n exports.query = (0, index_js_1.firstMemo)((api, accountId, flags, page) => api.derive.staking.queryMulti([accountId], flags, page));\n /**\n * @name queryMulti\n * @param { (Uint8Array | string)[] } accountIds List of stash accounts to query.\n * @param { StakingQueryFlags } flags Flags to customize the query.\n * @param { u32 } page (Optional) pagination parameter.\n * @description Retrieves staking details for multiple stash accounts.\n * @example\n * ```javascript\n * const stakingInfos = await api.derive.staking.queryMulti([stashId1, stashId2], {});\n * ```\n */\n function queryMulti(instanceId, api) {\n return (0, index_js_1.memo)(instanceId, (accountIds, flags, page) => api.derive.session.indexes().pipe((0, rxjs_1.switchMap)(({\n activeEra\n }) => {\n const stashIds = accountIds.map(a => api.registry.createType('AccountId', a));\n const p = page || 0;\n return stashIds.length ? getBatch(api, activeEra, stashIds, flags, p) : (0, rxjs_1.of)([]);\n })));\n }\n});","lineCount":151,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"query"],[7,15,3,13],[7,18,3,16],[7,23,3,21],[7,24,3,22],[8,2,4,0,"exports"],[8,9,4,7],[8,10,4,8,"queryMulti"],[8,20,4,18],[8,23,4,21,"queryMulti"],[8,33,4,31],[9,2,5,0],[9,8,5,6,"rxjs_1"],[9,14,5,12],[9,17,5,15,"require"],[9,24,5,22],[9,25,5,22,"_dependencyMap"],[9,39,5,22],[9,50,5,29],[9,51,5,30],[10,2,6,0],[10,8,6,6,"index_js_1"],[10,18,6,16],[10,21,6,19,"require"],[10,28,6,26],[10,29,6,26,"_dependencyMap"],[10,43,6,26],[10,66,6,45],[10,67,6,46],[11,2,7,0],[11,11,7,9,"rewardDestinationCompat"],[11,34,7,32,"rewardDestinationCompat"],[11,35,7,33,"rewardDestination"],[11,52,7,50],[11,54,7,52],[12,4,8,4],[13,4,9,4],[13,11,9,11],[13,18,9,18,"rewardDestination"],[13,35,9,35],[13,36,9,36,"isSome"],[13,42,9,42],[13,47,9,47],[13,56,9,56],[13,59,10,10,"rewardDestination"],[13,76,10,27],[13,77,10,28,"unwrapOr"],[13,85,10,36],[13,86,10,37],[13,90,10,41],[13,91,10,42],[13,94,11,10,"rewardDestination"],[13,111,11,27],[14,2,12,0],[15,2,13,0],[15,11,13,9,"filterClaimedRewards"],[15,31,13,29,"filterClaimedRewards"],[15,32,13,30,"api"],[15,35,13,33],[15,37,13,35,"cl"],[15,39,13,37],[15,41,13,39],[16,4,14,4],[16,11,14,11,"api"],[16,14,14,14],[16,15,14,15,"registry"],[16,23,14,23],[16,24,14,24,"createType"],[16,34,14,34],[16,35,14,35],[16,45,14,45],[16,47,14,47,"cl"],[16,49,14,49],[16,50,14,50,"filter"],[16,56,14,56],[16,57,14,58,"c"],[16,58,14,59],[16,62,14,64,"c"],[16,63,14,65],[16,68,14,70],[16,69,14,71],[16,70,14,72],[16,71,14,73],[16,72,14,74],[17,2,15,0],[18,2,16,0],[18,11,16,9,"filterRewards"],[18,24,16,22,"filterRewards"],[18,25,16,23,"stashIds"],[18,33,16,31],[18,35,16,33,"eras"],[18,39,16,37],[18,41,16,39,"claimedRewards"],[18,55,16,53],[18,57,16,55,"stakersOverview"],[18,72,16,70],[18,74,16,72],[19,4,17,4],[19,10,17,10,"claimedData"],[19,21,17,21],[19,24,17,24],[19,25,17,25],[19,26,17,26],[20,4,18,4],[20,10,18,10,"overviewData"],[20,22,18,22],[20,25,18,25],[20,26,18,26],[20,27,18,27],[21,4,19,4],[21,10,19,10,"ids"],[21,13,19,13],[21,16,19,16,"stashIds"],[21,24,19,24],[21,25,19,25,"map"],[21,28,19,28],[21,29,19,30,"i"],[21,30,19,31],[21,34,19,36,"i"],[21,35,19,37],[21,36,19,38,"toString"],[21,44,19,46],[21,45,19,47],[21,46,19,48],[21,47,19,49],[22,4,20,4,"claimedRewards"],[22,18,20,18],[22,19,20,19,"forEach"],[22,26,20,26],[22,27,20,27],[22,28,20,28],[22,29,20,29,"keys"],[22,33,20,33],[22,35,20,35,"rewards"],[22,42,20,42],[22,43,20,43],[22,48,20,48],[23,6,21,8],[23,12,21,14,"id"],[23,14,21,16],[23,17,21,19,"keys"],[23,21,21,23],[23,22,21,24,"args"],[23,26,21,28],[23,27,21,29],[23,28,21,30],[23,29,21,31],[23,30,21,32,"toString"],[23,38,21,40],[23,39,21,41],[23,40,21,42],[24,6,22,8],[24,12,22,14,"era"],[24,15,22,17],[24,18,22,20,"keys"],[24,22,22,24],[24,23,22,25,"args"],[24,27,22,29],[24,28,22,30],[24,29,22,31],[24,30,22,32],[24,31,22,33,"toNumber"],[24,39,22,41],[24,40,22,42],[24,41,22,43],[25,6,23,8],[25,10,23,12,"ids"],[25,13,23,15],[25,14,23,16,"includes"],[25,22,23,24],[25,23,23,25,"id"],[25,25,23,27],[25,26,23,28],[25,28,23,30],[26,8,24,12],[26,12,24,16,"claimedData"],[26,23,24,27],[26,24,24,28,"id"],[26,26,24,30],[26,27,24,31],[26,29,24,33],[27,10,25,16,"claimedData"],[27,21,25,27],[27,22,25,28,"id"],[27,24,25,30],[27,25,25,31],[27,26,25,32,"set"],[27,29,25,35],[27,30,25,36,"era"],[27,33,25,39],[27,35,25,41,"rewards"],[27,42,25,48],[27,43,25,49,"toArray"],[27,50,25,56],[27,51,25,57],[27,52,25,58],[27,53,25,59],[28,8,26,12],[28,9,26,13],[28,15,27,17],[29,10,28,16,"claimedData"],[29,21,28,27],[29,22,28,28,"id"],[29,24,28,30],[29,25,28,31],[29,28,28,34],[29,32,28,38,"Map"],[29,35,28,41],[29,36,28,42],[29,37,28,43],[30,10,29,16,"claimedData"],[30,21,29,27],[30,22,29,28,"id"],[30,24,29,30],[30,25,29,31],[30,26,29,32,"set"],[30,29,29,35],[30,30,29,36,"era"],[30,33,29,39],[30,35,29,41,"rewards"],[30,42,29,48],[30,43,29,49,"toArray"],[30,50,29,56],[30,51,29,57],[30,52,29,58],[30,53,29,59],[31,8,30,12],[32,6,31,8],[33,4,32,4],[33,5,32,5],[33,6,32,6],[34,4,33,4,"stakersOverview"],[34,19,33,19],[34,20,33,20,"forEach"],[34,27,33,27],[34,28,33,28],[34,29,33,29],[34,30,33,30,"keys"],[34,34,33,34],[34,36,33,36,"overview"],[34,44,33,44],[34,45,33,45],[34,50,33,50],[35,6,34,8],[35,12,34,14,"id"],[35,14,34,16],[35,17,34,19,"keys"],[35,21,34,23],[35,22,34,24,"args"],[35,26,34,28],[35,27,34,29],[35,28,34,30],[35,29,34,31],[35,30,34,32,"toString"],[35,38,34,40],[35,39,34,41],[35,40,34,42],[36,6,35,8],[36,12,35,14,"era"],[36,15,35,17],[36,18,35,20,"keys"],[36,22,35,24],[36,23,35,25,"args"],[36,27,35,29],[36,28,35,30],[36,29,35,31],[36,30,35,32],[36,31,35,33,"toNumber"],[36,39,35,41],[36,40,35,42],[36,41,35,43],[37,6,36,8],[37,10,36,12,"ids"],[37,13,36,15],[37,14,36,16,"includes"],[37,22,36,24],[37,23,36,25,"id"],[37,25,36,27],[37,26,36,28],[37,30,36,32,"overview"],[37,38,36,40],[37,39,36,41,"isSome"],[37,45,36,47],[37,47,36,49],[38,8,37,12],[38,12,37,16,"overviewData"],[38,24,37,28],[38,25,37,29,"id"],[38,27,37,31],[38,28,37,32],[38,30,37,34],[39,10,38,16,"overviewData"],[39,22,38,28],[39,23,38,29,"id"],[39,25,38,31],[39,26,38,32],[39,27,38,33,"set"],[39,30,38,36],[39,31,38,37,"era"],[39,34,38,40],[39,36,38,42,"overview"],[39,44,38,50],[39,45,38,51,"unwrap"],[39,51,38,57],[39,52,38,58],[39,53,38,59],[39,54,38,60,"pageCount"],[39,63,38,69],[39,64,38,70],[40,8,39,12],[40,9,39,13],[40,15,40,17],[41,10,41,16,"overviewData"],[41,22,41,28],[41,23,41,29,"id"],[41,25,41,31],[41,26,41,32],[41,29,41,35],[41,33,41,39,"Map"],[41,36,41,42],[41,37,41,43],[41,38,41,44],[42,10,42,16,"overviewData"],[42,22,42,28],[42,23,42,29,"id"],[42,25,42,31],[42,26,42,32],[42,27,42,33,"set"],[42,30,42,36],[42,31,42,37,"era"],[42,34,42,40],[42,36,42,42,"overview"],[42,44,42,50],[42,45,42,51,"unwrap"],[42,51,42,57],[42,52,42,58],[42,53,42,59],[42,54,42,60,"pageCount"],[42,63,42,69],[42,64,42,70],[43,8,43,12],[44,6,44,8],[45,4,45,4],[45,5,45,5],[45,6,45,6],[46,4,46,4],[46,11,46,11,"stashIds"],[46,19,46,19],[46,20,46,20,"map"],[46,23,46,23],[46,24,46,25,"id"],[46,26,46,27],[46,30,46,32],[47,6,47,8],[47,12,47,14,"rewardsPerEra"],[47,25,47,27],[47,28,47,30,"claimedData"],[47,39,47,41],[47,40,47,42,"id"],[47,42,47,44],[47,43,47,45,"toString"],[47,51,47,53],[47,52,47,54],[47,53,47,55],[47,54,47,56],[48,6,48,8],[48,12,48,14,"overviewPerEra"],[48,26,48,28],[48,29,48,31,"overviewData"],[48,41,48,43],[48,42,48,44,"id"],[48,44,48,46],[48,45,48,47,"toString"],[48,53,48,55],[48,54,48,56],[48,55,48,57],[48,56,48,58],[49,6,49,8],[49,13,49,15,"eras"],[49,17,49,19],[49,18,49,20,"map"],[49,21,49,23],[49,22,49,25,"era"],[49,25,49,28],[49,29,49,33],[50,8,50,12],[50,12,50,16,"rewardsPerEra"],[50,25,50,29],[50,29,50,33,"rewardsPerEra"],[50,42,50,46],[50,43,50,47,"has"],[50,46,50,50],[50,47,50,51,"era"],[50,50,50,54],[50,51,50,55],[50,55,50,59,"overviewPerEra"],[50,69,50,73],[50,73,50,77,"overviewPerEra"],[50,87,50,91],[50,88,50,92,"has"],[50,91,50,95],[50,92,50,96,"era"],[50,95,50,99],[50,96,50,100],[50,98,50,102],[51,10,51,16],[51,16,51,22,"rewards"],[51,23,51,29],[51,26,51,32,"rewardsPerEra"],[51,39,51,45],[51,40,51,46,"get"],[51,43,51,49],[51,44,51,50,"era"],[51,47,51,53],[51,48,51,54],[52,10,52,16],[52,16,52,22,"pageCount"],[52,25,52,31],[52,28,52,34,"overviewPerEra"],[52,42,52,48],[52,43,52,49,"get"],[52,46,52,52],[52,47,52,53,"era"],[52,50,52,56],[52,51,52,57],[53,10,53,16],[53,17,53,23,"rewards"],[53,24,53,30],[53,25,53,31,"length"],[53,31,53,37],[53,36,53,42,"pageCount"],[53,45,53,51],[53,46,53,52,"toNumber"],[53,54,53,60],[53,55,53,61],[53,56,53,62],[53,59,54,22,"era"],[53,62,54,25],[53,65,55,22],[53,66,55,23],[53,67,55,24],[54,8,56,12],[55,8,57,12],[55,15,57,19],[55,16,57,20],[55,17,57,21],[56,6,58,8],[56,7,58,9],[56,8,58,10],[57,4,59,4],[57,5,59,5],[57,6,59,6],[58,2,60,0],[59,2,61,0],[59,11,61,9,"parseDetails"],[59,23,61,21,"parseDetails"],[59,24,61,22,"api"],[59,27,61,25],[59,29,61,27,"stashId"],[59,36,61,34],[59,38,61,36,"controllerIdOpt"],[59,53,61,51],[59,55,61,53,"nominatorsOpt"],[59,68,61,66],[59,70,61,68,"rewardDestinationOpts"],[59,91,61,89],[59,93,61,91,"validatorPrefs"],[59,107,61,105],[59,109,61,107,"exposure"],[59,117,61,115],[59,119,61,117,"stakingLedgerOpt"],[59,135,61,133],[59,137,61,135,"exposureMeta"],[59,149,61,147],[59,151,61,149,"claimedRewards"],[59,165,61,163],[59,167,61,165,"exposureEraStakers"],[59,185,61,183],[59,187,61,185],[60,4,62,4],[60,11,62,11],[61,6,63,8,"accountId"],[61,15,63,17],[61,17,63,19,"stashId"],[61,24,63,26],[62,6,64,8,"claimedRewardsEras"],[62,24,64,26],[62,26,64,28,"filterClaimedRewards"],[62,46,64,48],[62,47,64,49,"api"],[62,50,64,52],[62,52,64,54,"claimedRewards"],[62,66,64,68],[62,67,64,69],[63,6,65,8,"controllerId"],[63,18,65,20],[63,20,65,22,"controllerIdOpt"],[63,35,65,37],[63,37,65,39,"unwrapOr"],[63,45,65,47],[63,46,65,48],[63,50,65,52],[63,51,65,53],[63,55,65,57],[63,59,65,61],[64,6,66,8,"exposureEraStakers"],[64,24,66,26],[65,6,67,8,"exposureMeta"],[65,18,67,20],[66,6,68,8,"exposurePaged"],[66,19,68,21],[66,21,68,23,"exposure"],[66,29,68,31],[67,6,69,8,"nominators"],[67,16,69,18],[67,18,69,20,"nominatorsOpt"],[67,31,69,33],[67,32,69,34,"isSome"],[67,38,69,40],[67,41,70,14,"nominatorsOpt"],[67,54,70,27],[67,55,70,28,"unwrap"],[67,61,70,34],[67,62,70,35],[67,63,70,36],[67,64,70,37,"targets"],[67,71,70,44],[67,74,71,14],[67,76,71,16],[68,6,72,8,"rewardDestination"],[68,23,72,25],[68,25,72,27,"rewardDestinationCompat"],[68,48,72,50],[68,49,72,51,"rewardDestinationOpts"],[68,70,72,72],[68,71,72,73],[69,6,73,8,"stakingLedger"],[69,19,73,21],[69,21,73,23,"stakingLedgerOpt"],[69,37,73,39],[69,38,73,40,"unwrapOrDefault"],[69,53,73,55],[69,54,73,56],[69,55,73,57],[70,6,74,8,"stashId"],[70,13,74,15],[71,6,75,8,"validatorPrefs"],[72,4,76,4],[72,5,76,5],[73,2,77,0],[74,2,78,0],[74,11,78,9,"getLedgers"],[74,21,78,19,"getLedgers"],[74,22,78,20,"api"],[74,25,78,23],[74,27,78,25,"optIds"],[74,33,78,31],[74,35,78,33],[75,4,78,35,"withLedger"],[75,14,78,45],[75,17,78,48],[76,2,78,54],[76,3,78,55],[76,5,78,57],[77,4,79,4],[77,10,79,10,"ids"],[77,13,79,13],[77,16,79,16,"optIds"],[77,22,79,22],[77,23,80,9,"filter"],[77,29,80,15],[77,30,80,17,"o"],[77,31,80,18],[77,35,80,23,"withLedger"],[77,45,80,33],[77,49,80,37],[77,50,80,38],[77,51,80,39,"o"],[77,52,80,40],[77,56,80,44,"o"],[77,57,80,45],[77,58,80,46,"isSome"],[77,64,80,52],[77,65,80,53],[77,66,81,9,"map"],[77,69,81,12],[77,70,81,14,"o"],[77,71,81,15],[77,75,81,20,"o"],[77,76,81,21],[77,77,81,22,"unwrap"],[77,83,81,28],[77,84,81,29],[77,85,81,30],[77,86,81,31],[78,4,82,4],[78,10,82,10,"emptyLed"],[78,18,82,18],[78,21,82,21,"api"],[78,24,82,24],[78,25,82,25,"registry"],[78,33,82,33],[78,34,82,34,"createType"],[78,44,82,44],[78,45,82,45],[78,68,82,68],[78,69,82,69],[79,4,83,4],[79,11,83,11],[79,12,83,12,"ids"],[79,15,83,15],[79,16,83,16,"length"],[79,22,83,22],[79,25,84,10],[79,26,84,11],[79,27,84,12],[79,29,84,14,"rxjs_1"],[79,35,84,20],[79,36,84,21,"combineLatest"],[79,49,84,34],[79,51,84,36,"ids"],[79,54,84,39],[79,55,84,40,"map"],[79,58,84,43],[79,59,84,45,"s"],[79,60,84,46],[79,64,84,51,"api"],[79,67,84,54],[79,68,84,55,"query"],[79,73,84,60],[79,74,84,61,"staking"],[79,81,84,68],[79,82,84,69,"ledger"],[79,88,84,75],[79,89,84,76,"s"],[79,90,84,77],[79,91,84,78],[79,92,84,79],[79,93,84,80],[79,96,85,10],[79,97,85,11],[79,98,85,12],[79,100,85,14,"rxjs_1"],[79,106,85,20],[79,107,85,21,"of"],[79,109,85,23],[79,111,85,25],[79,113,85,27],[79,114,85,28],[79,116,85,30,"pipe"],[79,120,85,34],[79,121,85,35],[79,122,85,36],[79,123,85,37],[79,125,85,39,"rxjs_1"],[79,131,85,45],[79,132,85,46,"map"],[79,135,85,49],[79,137,85,52,"optLedgers"],[79,147,85,62],[79,151,85,67],[80,6,86,8],[80,10,86,12,"offset"],[80,16,86,18],[80,19,86,21],[80,20,86,22],[80,21,86,23],[81,6,87,8],[81,13,87,15,"optIds"],[81,19,87,21],[81,20,87,22,"map"],[81,23,87,25],[81,24,87,27,"o"],[81,25,87,28],[81,29,87,33,"o"],[81,30,87,34],[81,34,87,38,"o"],[81,35,87,39],[81,36,87,40,"isSome"],[81,42,87,46],[81,45,88,14,"optLedgers"],[81,55,88,24],[81,56,88,25],[81,58,88,27,"offset"],[81,64,88,33],[81,65,88,34],[81,69,88,38,"emptyLed"],[81,77,88,46],[81,80,89,14,"emptyLed"],[81,88,89,22],[81,89,89,23],[82,4,90,4],[82,5,90,5],[82,6,90,6],[82,7,90,7],[83,2,91,0],[84,2,92,0],[84,11,92,9,"getStashInfo"],[84,23,92,21,"getStashInfo"],[84,24,92,22,"api"],[84,27,92,25],[84,29,92,27,"stashIds"],[84,37,92,35],[84,39,92,37,"activeEra"],[84,48,92,46],[84,50,92,48],[85,4,92,50,"withClaimedRewardsEras"],[85,26,92,72],[86,4,92,74,"withController"],[86,18,92,88],[87,4,92,90,"withDestination"],[87,19,92,105],[88,4,92,107,"withExposure"],[88,16,92,119],[89,4,92,121,"withExposureErasStakersLegacy"],[89,33,92,150],[90,4,92,152,"withExposureMeta"],[90,20,92,168],[91,4,92,170,"withLedger"],[91,14,92,180],[92,4,92,182,"withNominations"],[92,19,92,197],[93,4,92,199,"withPrefs"],[94,2,92,209],[94,3,92,210],[94,5,92,212,"page"],[94,9,92,216],[94,11,92,218],[95,4,93,4],[95,10,93,10,"emptyNoms"],[95,19,93,19],[95,22,93,22,"api"],[95,25,93,25],[95,26,93,26,"registry"],[95,34,93,34],[95,35,93,35,"createType"],[95,45,93,45],[95,46,93,46],[95,67,93,67],[95,68,93,68],[96,4,94,4],[96,10,94,10,"emptyRewa"],[96,19,94,19],[96,22,94,22,"api"],[96,25,94,25],[96,26,94,26,"registry"],[96,34,94,34],[96,35,94,35,"createType"],[96,45,94,45],[96,46,94,46],[96,65,94,65],[96,66,94,66],[97,4,95,4],[97,10,95,10,"emptyExpoEraStakers"],[97,29,95,29],[97,32,95,32,"api"],[97,35,95,35],[97,36,95,36,"registry"],[97,44,95,44],[97,45,95,45,"createType"],[97,55,95,55],[97,56,95,56],[97,66,95,66],[97,67,95,67],[98,4,96,4],[98,10,96,10,"emptyPrefs"],[98,20,96,20],[98,23,96,23,"api"],[98,26,96,26],[98,27,96,27,"registry"],[98,35,96,35],[98,36,96,36,"createType"],[98,46,96,46],[98,47,96,47],[98,63,96,63],[98,64,96,64],[99,4,97,4],[100,4,98,4],[101,4,99,4],[101,10,99,10,"emptyExpo"],[101,19,99,19],[101,22,99,22,"api"],[101,25,99,25],[101,26,99,26,"registry"],[101,34,99,34],[101,35,99,35,"createType"],[101,45,99,45],[101,46,99,46],[101,60,99,60],[101,61,99,61],[102,4,100,4],[102,10,100,10,"emptyExpoMeta"],[102,23,100,23],[102,26,100,26,"api"],[102,29,100,29],[102,30,100,30,"registry"],[102,38,100,38],[102,39,100,39,"createType"],[102,49,100,49],[102,50,100,50],[102,64,100,64],[102,65,100,65],[103,4,101,4],[103,10,101,10,"emptyClaimedRewards"],[103,29,101,29],[103,32,101,32],[103,33,101,33],[103,34,101,34],[103,35,101,35],[103,36,101,36],[104,4,102,4],[104,10,102,10,"depth"],[104,15,102,15],[104,18,102,18,"Number"],[104,24,102,24],[104,25,102,25,"api"],[104,28,102,28],[104,29,102,29,"consts"],[104,35,102,35],[104,36,102,36,"staking"],[104,43,102,43],[104,44,102,44,"historyDepth"],[104,56,102,56],[104,57,102,57,"toNumber"],[104,65,102,65],[104,66,102,66],[104,67,102,67],[104,68,102,68],[105,4,103,4],[105,10,103,10,"eras"],[105,14,103,14],[105,17,103,17],[105,21,103,21,"Array"],[105,26,103,26],[105,27,103,27,"depth"],[105,32,103,32],[105,33,103,33],[105,34,103,34,"fill"],[105,38,103,38],[105,39,103,39],[105,40,103,40],[105,41,103,41],[105,42,103,42,"map"],[105,45,103,45],[105,46,103,46],[105,47,103,47,"_"],[105,48,103,48],[105,50,103,50,"idx"],[105,53,103,53],[105,58,103,58],[106,6,104,8],[106,10,104,12,"idx"],[106,13,104,15],[106,18,104,20],[106,19,104,21],[106,21,104,23],[107,8,105,12],[107,15,105,19,"activeEra"],[107,24,105,28],[107,25,105,29,"toNumber"],[107,33,105,37],[107,34,105,38],[107,35,105,39],[107,38,105,42],[107,39,105,43],[108,6,106,8],[109,6,107,8],[109,13,107,15,"activeEra"],[109,22,107,24],[109,23,107,25,"toNumber"],[109,31,107,33],[109,32,107,34],[109,33,107,35],[109,36,107,38,"idx"],[109,39,107,41],[109,42,107,44],[109,43,107,45],[110,4,108,4],[110,5,108,5],[110,6,108,6],[111,4,109,4],[111,11,109,11],[111,12,109,12],[111,13,109,13],[111,15,109,15,"rxjs_1"],[111,21,109,21],[111,22,109,22,"combineLatest"],[111,35,109,35],[111,37,109,37],[111,38,110,8,"withController"],[111,52,110,22],[111,56,110,26,"withLedger"],[111,66,110,36],[111,69,111,14],[111,70,111,15],[111,71,111,16],[111,73,111,18,"rxjs_1"],[111,79,111,24],[111,80,111,25,"combineLatest"],[111,93,111,38],[111,95,111,40,"stashIds"],[111,103,111,48],[111,104,111,49,"map"],[111,107,111,52],[111,108,111,54,"s"],[111,109,111,55],[111,113,111,60,"api"],[111,116,111,63],[111,117,111,64,"query"],[111,122,111,69],[111,123,111,70,"staking"],[111,130,111,77],[111,131,111,78,"bonded"],[111,137,111,84],[111,138,111,85,"s"],[111,139,111,86],[111,140,111,87],[111,141,111,88],[111,142,111,89],[111,145,112,14],[111,146,112,15],[111,147,112,16],[111,149,112,18,"rxjs_1"],[111,155,112,24],[111,156,112,25,"of"],[111,158,112,27],[111,160,112,29,"stashIds"],[111,168,112,37],[111,169,112,38,"map"],[111,172,112,41],[111,173,112,42],[111,179,112,48],[111,183,112,52],[111,184,112,53],[111,185,112,54],[111,187,113,8,"withNominations"],[111,202,113,23],[111,205,114,14],[111,206,114,15],[111,207,114,16],[111,209,114,18,"rxjs_1"],[111,215,114,24],[111,216,114,25,"combineLatest"],[111,229,114,38],[111,231,114,40,"stashIds"],[111,239,114,48],[111,240,114,49,"map"],[111,243,114,52],[111,244,114,54,"s"],[111,245,114,55],[111,249,114,60,"api"],[111,252,114,63],[111,253,114,64,"query"],[111,258,114,69],[111,259,114,70,"staking"],[111,266,114,77],[111,267,114,78,"nominators"],[111,277,114,88],[111,278,114,89,"s"],[111,279,114,90],[111,280,114,91],[111,281,114,92],[111,282,114,93],[111,285,115,14],[111,286,115,15],[111,287,115,16],[111,289,115,18,"rxjs_1"],[111,295,115,24],[111,296,115,25,"of"],[111,298,115,27],[111,300,115,29,"stashIds"],[111,308,115,37],[111,309,115,38,"map"],[111,312,115,41],[111,313,115,42],[111,319,115,48,"emptyNoms"],[111,328,115,57],[111,329,115,58],[111,330,115,59],[111,332,116,8,"withDestination"],[111,347,116,23],[111,350,117,14],[111,351,117,15],[111,352,117,16],[111,354,117,18,"rxjs_1"],[111,360,117,24],[111,361,117,25,"combineLatest"],[111,374,117,38],[111,376,117,40,"stashIds"],[111,384,117,48],[111,385,117,49,"map"],[111,388,117,52],[111,389,117,54,"s"],[111,390,117,55],[111,394,117,60,"api"],[111,397,117,63],[111,398,117,64,"query"],[111,403,117,69],[111,404,117,70,"staking"],[111,411,117,77],[111,412,117,78,"payee"],[111,417,117,83],[111,418,117,84,"s"],[111,419,117,85],[111,420,117,86],[111,421,117,87],[111,422,117,88],[111,425,118,14],[111,426,118,15],[111,427,118,16],[111,429,118,18,"rxjs_1"],[111,435,118,24],[111,436,118,25,"of"],[111,438,118,27],[111,440,118,29,"stashIds"],[111,448,118,37],[111,449,118,38,"map"],[111,452,118,41],[111,453,118,42],[111,459,118,48,"emptyRewa"],[111,468,118,57],[111,469,118,58],[111,470,118,59],[111,472,119,8,"withPrefs"],[111,481,119,17],[111,484,120,14],[111,485,120,15],[111,486,120,16],[111,488,120,18,"rxjs_1"],[111,494,120,24],[111,495,120,25,"combineLatest"],[111,508,120,38],[111,510,120,40,"stashIds"],[111,518,120,48],[111,519,120,49,"map"],[111,522,120,52],[111,523,120,54,"s"],[111,524,120,55],[111,528,120,60,"api"],[111,531,120,63],[111,532,120,64,"query"],[111,537,120,69],[111,538,120,70,"staking"],[111,545,120,77],[111,546,120,78,"validators"],[111,556,120,88],[111,557,120,89,"s"],[111,558,120,90],[111,559,120,91],[111,560,120,92],[111,561,120,93],[111,564,121,14],[111,565,121,15],[111,566,121,16],[111,568,121,18,"rxjs_1"],[111,574,121,24],[111,575,121,25,"of"],[111,577,121,27],[111,579,121,29,"stashIds"],[111,587,121,37],[111,588,121,38,"map"],[111,591,121,41],[111,592,121,42],[111,598,121,48,"emptyPrefs"],[111,608,121,58],[111,609,121,59],[111,610,121,60],[111,612,122,8,"withExposure"],[111,624,122,20],[111,628,122,24,"api"],[111,631,122,27],[111,632,122,28,"query"],[111,637,122,33],[111,638,122,34,"staking"],[111,645,122,41],[111,646,122,42,"erasStakersPaged"],[111,662,122,58],[111,665,123,14],[111,666,123,15],[111,667,123,16],[111,669,123,18,"rxjs_1"],[111,675,123,24],[111,676,123,25,"combineLatest"],[111,689,123,38],[111,691,123,40,"stashIds"],[111,699,123,48],[111,700,123,49,"map"],[111,703,123,52],[111,704,123,54,"s"],[111,705,123,55],[111,709,123,60,"api"],[111,712,123,63],[111,713,123,64,"query"],[111,718,123,69],[111,719,123,70,"staking"],[111,726,123,77],[111,727,123,78,"erasStakersPaged"],[111,743,123,94],[111,744,123,95,"activeEra"],[111,753,123,104],[111,755,123,106,"s"],[111,756,123,107],[111,758,123,109,"page"],[111,762,123,113],[111,763,123,114],[111,764,123,115],[111,765,123,116],[111,768,124,14],[111,769,124,15],[111,770,124,16],[111,772,124,18,"rxjs_1"],[111,778,124,24],[111,779,124,25,"of"],[111,781,124,27],[111,783,124,29,"stashIds"],[111,791,124,37],[111,792,124,38,"map"],[111,795,124,41],[111,796,124,42],[111,802,124,48,"emptyExpo"],[111,811,124,57],[111,812,124,58],[111,813,124,59],[111,815,125,8,"withExposureMeta"],[111,831,125,24],[111,835,125,28,"api"],[111,838,125,31],[111,839,125,32,"query"],[111,844,125,37],[111,845,125,38,"staking"],[111,852,125,45],[111,853,125,46,"erasStakersOverview"],[111,872,125,65],[111,875,126,14],[111,876,126,15],[111,877,126,16],[111,879,126,18,"rxjs_1"],[111,885,126,24],[111,886,126,25,"combineLatest"],[111,899,126,38],[111,901,126,40,"stashIds"],[111,909,126,48],[111,910,126,49,"map"],[111,913,126,52],[111,914,126,54,"s"],[111,915,126,55],[111,919,126,60,"api"],[111,922,126,63],[111,923,126,64,"query"],[111,928,126,69],[111,929,126,70,"staking"],[111,936,126,77],[111,937,126,78,"erasStakersOverview"],[111,956,126,97],[111,957,126,98,"activeEra"],[111,966,126,107],[111,968,126,109,"s"],[111,969,126,110],[111,970,126,111],[111,971,126,112],[111,972,126,113],[111,975,127,14],[111,976,127,15],[111,977,127,16],[111,979,127,18,"rxjs_1"],[111,985,127,24],[111,986,127,25,"of"],[111,988,127,27],[111,990,127,29,"stashIds"],[111,998,127,37],[111,999,127,38,"map"],[111,1002,127,41],[111,1003,127,42],[111,1009,127,48,"emptyExpoMeta"],[111,1022,127,61],[111,1023,127,62],[111,1024,127,63],[111,1026,128,8,"withClaimedRewardsEras"],[111,1048,128,30],[111,1052,128,34,"api"],[111,1055,128,37],[111,1056,128,38,"query"],[111,1061,128,43],[111,1062,128,44,"staking"],[111,1069,128,51],[111,1070,128,52,"claimedRewards"],[111,1084,128,66],[111,1087,129,14],[111,1088,129,15],[111,1089,129,16],[111,1091,129,18,"rxjs_1"],[111,1097,129,24],[111,1098,129,25,"combineLatest"],[111,1111,129,38],[111,1113,129,40],[111,1114,130,16,"api"],[111,1117,130,19],[111,1118,130,20,"query"],[111,1123,130,25],[111,1124,130,26,"staking"],[111,1131,130,33],[111,1132,130,34,"claimedRewards"],[111,1146,130,48],[111,1147,130,49,"entries"],[111,1154,130,56],[111,1155,130,57],[111,1156,130,58],[111,1158,131,16,"api"],[111,1161,131,19],[111,1162,131,20,"query"],[111,1167,131,25],[111,1168,131,26,"staking"],[111,1175,131,33],[111,1176,131,34,"erasStakersOverview"],[111,1195,131,53],[111,1196,131,54,"entries"],[111,1203,131,61],[111,1204,131,62],[111,1205,131,63],[111,1206,132,13],[111,1207,132,14],[111,1208,132,15,"pipe"],[111,1212,132,19],[111,1213,132,20],[111,1214,132,21],[111,1215,132,22],[111,1217,132,24,"rxjs_1"],[111,1223,132,30],[111,1224,132,31,"map"],[111,1227,132,34],[111,1229,132,36],[111,1230,132,37],[111,1231,132,38,"rewardsStorageVec"],[111,1248,132,55],[111,1250,132,57,"overviewStorageVec"],[111,1268,132,75],[111,1269,132,76],[111,1274,132,81,"filterRewards"],[111,1287,132,94],[111,1288,132,95,"stashIds"],[111,1296,132,103],[111,1298,132,105,"eras"],[111,1302,132,109],[111,1304,132,111,"rewardsStorageVec"],[111,1321,132,128],[111,1323,132,130,"overviewStorageVec"],[111,1341,132,148],[111,1342,132,149],[111,1343,132,150],[111,1344,132,151],[111,1347,133,14],[111,1348,133,15],[111,1349,133,16],[111,1351,133,18,"rxjs_1"],[111,1357,133,24],[111,1358,133,25,"of"],[111,1360,133,27],[111,1362,133,29,"stashIds"],[111,1370,133,37],[111,1371,133,38,"map"],[111,1374,133,41],[111,1375,133,42],[111,1381,133,48,"emptyClaimedRewards"],[111,1400,133,67],[111,1401,133,68],[111,1402,133,69],[111,1404,134,8,"withExposureErasStakersLegacy"],[111,1433,134,37],[111,1437,134,41,"api"],[111,1440,134,44],[111,1441,134,45,"query"],[111,1446,134,50],[111,1447,134,51,"staking"],[111,1454,134,58],[111,1455,134,59,"erasStakers"],[111,1466,134,70],[111,1469,135,14],[111,1470,135,15],[111,1471,135,16],[111,1473,135,18,"rxjs_1"],[111,1479,135,24],[111,1480,135,25,"combineLatest"],[111,1493,135,38],[111,1495,135,40,"stashIds"],[111,1503,135,48],[111,1504,135,49,"map"],[111,1507,135,52],[111,1508,135,54,"s"],[111,1509,135,55],[111,1513,135,60,"api"],[111,1516,135,63],[111,1517,135,64,"query"],[111,1522,135,69],[111,1523,135,70,"staking"],[111,1530,135,77],[111,1531,135,78,"erasStakers"],[111,1542,135,89],[111,1543,135,90,"activeEra"],[111,1552,135,99],[111,1554,135,101,"s"],[111,1555,135,102],[111,1556,135,103],[111,1557,135,104],[111,1558,135,105],[111,1561,136,14],[111,1562,136,15],[111,1563,136,16],[111,1565,136,18,"rxjs_1"],[111,1571,136,24],[111,1572,136,25,"of"],[111,1574,136,27],[111,1576,136,29,"stashIds"],[111,1584,136,37],[111,1585,136,38,"map"],[111,1588,136,41],[111,1589,136,42],[111,1595,136,48,"emptyExpoEraStakers"],[111,1614,136,67],[111,1615,136,68],[111,1616,136,69],[111,1617,137,5],[111,1618,137,6],[112,2,138,0],[113,2,139,0],[113,11,139,9,"getBatch"],[113,19,139,17,"getBatch"],[113,20,139,18,"api"],[113,23,139,21],[113,25,139,23,"activeEra"],[113,34,139,32],[113,36,139,34,"stashIds"],[113,44,139,42],[113,46,139,44,"flags"],[113,51,139,49],[113,53,139,51,"page"],[113,57,139,55],[113,59,139,57],[114,4,140,4],[114,11,140,11,"getStashInfo"],[114,23,140,23],[114,24,140,24,"api"],[114,27,140,27],[114,29,140,29,"stashIds"],[114,37,140,37],[114,39,140,39,"activeEra"],[114,48,140,48],[114,50,140,50,"flags"],[114,55,140,55],[114,57,140,57,"page"],[114,61,140,61],[114,62,140,62],[114,63,140,63,"pipe"],[114,67,140,67],[114,68,140,68],[114,69,140,69],[114,70,140,70],[114,72,140,72,"rxjs_1"],[114,78,140,78],[114,79,140,79,"switchMap"],[114,88,140,88],[114,90,140,90],[114,91,140,91],[114,92,140,92,"controllerIdOpt"],[114,107,140,107],[114,109,140,109,"nominatorsOpt"],[114,122,140,122],[114,124,140,124,"rewardDestination"],[114,141,140,141],[114,143,140,143,"validatorPrefs"],[114,157,140,157],[114,159,140,159,"exposure"],[114,167,140,167],[114,169,140,169,"exposureMeta"],[114,181,140,181],[114,183,140,183,"claimedRewardsEras"],[114,201,140,201],[114,203,140,203,"exposureEraStakers"],[114,221,140,221],[114,222,140,222],[114,227,140,227,"getLedgers"],[114,237,140,237],[114,238,140,238,"api"],[114,241,140,241],[114,243,140,243,"controllerIdOpt"],[114,258,140,258],[114,260,140,260,"flags"],[114,265,140,265],[114,266,140,266],[114,267,140,267,"pipe"],[114,271,140,271],[114,272,140,272],[114,273,140,273],[114,274,140,274],[114,276,140,276,"rxjs_1"],[114,282,140,282],[114,283,140,283,"map"],[114,286,140,286],[114,288,140,289,"stakingLedgerOpts"],[114,305,140,306],[114,309,140,311,"stashIds"],[114,317,140,319],[114,318,140,320,"map"],[114,321,140,323],[114,322,140,324],[114,323,140,325,"stashId"],[114,330,140,332],[114,332,140,334,"index"],[114,337,140,339],[114,342,140,344,"parseDetails"],[114,354,140,356],[114,355,140,357,"api"],[114,358,140,360],[114,360,140,362,"stashId"],[114,367,140,369],[114,369,140,371,"controllerIdOpt"],[114,384,140,386],[114,385,140,387,"index"],[114,390,140,392],[114,391,140,393],[114,393,140,395,"nominatorsOpt"],[114,406,140,408],[114,407,140,409,"index"],[114,412,140,414],[114,413,140,415],[114,415,140,417,"rewardDestination"],[114,432,140,434],[114,433,140,435,"index"],[114,438,140,440],[114,439,140,441],[114,441,140,443,"validatorPrefs"],[114,455,140,457],[114,456,140,458,"index"],[114,461,140,463],[114,462,140,464],[114,464,140,466,"exposure"],[114,472,140,474],[114,473,140,475,"index"],[114,478,140,480],[114,479,140,481],[114,481,140,483,"stakingLedgerOpts"],[114,498,140,500],[114,499,140,501,"index"],[114,504,140,506],[114,505,140,507],[114,507,140,509,"exposureMeta"],[114,519,140,521],[114,520,140,522,"index"],[114,525,140,527],[114,526,140,528],[114,528,140,530,"claimedRewardsEras"],[114,546,140,548],[114,547,140,549,"index"],[114,552,140,554],[114,553,140,555],[114,555,140,557,"exposureEraStakers"],[114,573,140,575],[114,574,140,576,"index"],[114,579,140,581],[114,580,140,582],[114,581,140,583],[114,582,140,584],[114,583,140,585],[114,584,140,586],[114,585,140,587],[114,586,140,588],[115,2,141,0],[116,2,142,0],[117,0,143,0],[118,0,144,0],[119,0,145,0],[120,0,146,0],[121,0,147,0],[122,0,148,0],[123,0,149,0],[124,0,150,0],[125,0,151,0],[126,0,152,0],[127,0,153,0],[128,0,154,0],[129,0,155,0],[130,2,156,0,"exports"],[130,9,156,7],[130,10,156,8,"query"],[130,15,156,13],[130,18,156,16],[130,19,156,17],[130,20,156,18],[130,22,156,20,"index_js_1"],[130,32,156,30],[130,33,156,31,"firstMemo"],[130,42,156,40],[130,44,156,42],[130,45,156,43,"api"],[130,48,156,46],[130,50,156,48,"accountId"],[130,59,156,57],[130,61,156,59,"flags"],[130,66,156,64],[130,68,156,66,"page"],[130,72,156,70],[130,77,156,75,"api"],[130,80,156,78],[130,81,156,79,"derive"],[130,87,156,85],[130,88,156,86,"staking"],[130,95,156,93],[130,96,156,94,"queryMulti"],[130,106,156,104],[130,107,156,105],[130,108,156,106,"accountId"],[130,117,156,115],[130,118,156,116],[130,120,156,118,"flags"],[130,125,156,123],[130,127,156,125,"page"],[130,131,156,129],[130,132,156,130],[130,133,156,131],[131,2,157,0],[132,0,158,0],[133,0,159,0],[134,0,160,0],[135,0,161,0],[136,0,162,0],[137,0,163,0],[138,0,164,0],[139,0,165,0],[140,0,166,0],[141,0,167,0],[142,2,168,0],[142,11,168,9,"queryMulti"],[142,21,168,19,"queryMulti"],[142,22,168,20,"instanceId"],[142,32,168,30],[142,34,168,32,"api"],[142,37,168,35],[142,39,168,37],[143,4,169,4],[143,11,169,11],[143,12,169,12],[143,13,169,13],[143,15,169,15,"index_js_1"],[143,25,169,25],[143,26,169,26,"memo"],[143,30,169,30],[143,32,169,32,"instanceId"],[143,42,169,42],[143,44,169,44],[143,45,169,45,"accountIds"],[143,55,169,55],[143,57,169,57,"flags"],[143,62,169,62],[143,64,169,64,"page"],[143,68,169,68],[143,73,169,73,"api"],[143,76,169,76],[143,77,169,77,"derive"],[143,83,169,83],[143,84,169,84,"session"],[143,91,169,91],[143,92,169,92,"indexes"],[143,99,169,99],[143,100,169,100],[143,101,169,101],[143,102,169,102,"pipe"],[143,106,169,106],[143,107,169,107],[143,108,169,108],[143,109,169,109],[143,111,169,111,"rxjs_1"],[143,117,169,117],[143,118,169,118,"switchMap"],[143,127,169,127],[143,129,169,129],[143,130,169,130],[144,6,169,132,"activeEra"],[145,4,169,142],[145,5,169,143],[145,10,169,148],[146,6,170,8],[146,12,170,14,"stashIds"],[146,20,170,22],[146,23,170,25,"accountIds"],[146,33,170,35],[146,34,170,36,"map"],[146,37,170,39],[146,38,170,41,"a"],[146,39,170,42],[146,43,170,47,"api"],[146,46,170,50],[146,47,170,51,"registry"],[146,55,170,59],[146,56,170,60,"createType"],[146,66,170,70],[146,67,170,71],[146,78,170,82],[146,80,170,84,"a"],[146,81,170,85],[146,82,170,86],[146,83,170,87],[147,6,171,8],[147,12,171,14,"p"],[147,13,171,15],[147,16,171,18,"page"],[147,20,171,22],[147,24,171,26],[147,25,171,27],[148,6,172,8],[148,13,172,15,"stashIds"],[148,21,172,23],[148,22,172,24,"length"],[148,28,172,30],[148,31,173,14,"getBatch"],[148,39,173,22],[148,40,173,23,"api"],[148,43,173,26],[148,45,173,28,"activeEra"],[148,54,173,37],[148,56,173,39,"stashIds"],[148,64,173,47],[148,66,173,49,"flags"],[148,71,173,54],[148,73,173,56,"p"],[148,74,173,57],[148,75,173,58],[148,78,174,14],[148,79,174,15],[148,80,174,16],[148,82,174,18,"rxjs_1"],[148,88,174,24],[148,89,174,25,"of"],[148,91,174,27],[148,93,174,29],[148,95,174,31],[148,96,174,32],[149,4,175,4],[149,5,175,5],[149,6,175,6],[149,7,175,7],[149,8,175,8],[150,2,176,0],[151,0,176,1],[151,3]],"functionMap":{"names":["<global>","rewardDestinationCompat","filterClaimedRewards","cl.filter$argument_0","filterRewards","stashIds.map$argument_0","claimedRewards.forEach$argument_0","stakersOverview.forEach$argument_0","eras.map$argument_0","parseDetails","getLedgers","optIds.filter$argument_0","optIds.filter.map$argument_0","ids.map$argument_0","<anonymous>","optIds.map$argument_0","getStashInfo","Array.fill.map$argument_0","getBatch","queryMulti","accountIds.map$argument_0"],"mappings":"AAA;ACM;CDK;AEC;yDCC,eD;CFC;AIC;6BCG,mBD;2BEC;KFY;4BGC;KHY;wBCC;wBGG;SHS;KDC;CJC;ASC;CTgB;AUC;gBCE,oCD;aEC,iBF;4CGG,kCH;mDIC;0BCE;sBDE;KJC;CVC;AgBC;8CCW;KDK;qDXG,kCW;0CXC,UW;qDXE,sCW;0CXC,eW;qDXE,iCW;0CXC,eW;qDXE,sCW;0CXC,gBW;qDXE,6DW;0CXC,eW;qDXE,0DW;0CXC,mBW;oCFK,iHE;0CXC,yBW;qDXE,kDW;0CXC,yBW;ChBE;AkBC;0FJC,0OT,mQS,GI;ClBC;0Cce,wFd;AmBY;4CLC;wCMC,8CN;OKK;CnBC"},"hasCjsExports":true},"type":"js/module"}]} |