mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 07:41:01 +00:00
1 line
40 KiB
Plaintext
1 line
40 KiB
Plaintext
{"dependencies":[{"name":"rxjs","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":57,"index":57}}],"key":"PnOMrhZAPWoeW3ygrvUJ7ff768Y=","exportNames":["*"],"imports":1}},{"name":"../util/index.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":58},"end":{"line":2,"column":51,"index":109}}],"key":"GRJlO1cmIj14nBxcasNpiq30og4=","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 Object.defineProperty(exports, \"query\", {\n enumerable: true,\n get: function () {\n return query;\n }\n });\n exports.queryMulti = queryMulti;\n var _rxjs = require(_dependencyMap[0], \"rxjs\");\n var _utilIndexJs = 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.combineLatest)(ids.map(s => api.query.staking.ledger(s))) : (0, _rxjs.of)([])).pipe((0, _rxjs.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.combineLatest)([withController || withLedger ? (0, _rxjs.combineLatest)(stashIds.map(s => api.query.staking.bonded(s))) : (0, _rxjs.of)(stashIds.map(() => null)), withNominations ? (0, _rxjs.combineLatest)(stashIds.map(s => api.query.staking.nominators(s))) : (0, _rxjs.of)(stashIds.map(() => emptyNoms)), withDestination ? (0, _rxjs.combineLatest)(stashIds.map(s => api.query.staking.payee(s))) : (0, _rxjs.of)(stashIds.map(() => emptyRewa)), withPrefs ? (0, _rxjs.combineLatest)(stashIds.map(s => api.query.staking.validators(s))) : (0, _rxjs.of)(stashIds.map(() => emptyPrefs)), withExposure && api.query.staking.erasStakersPaged ? (0, _rxjs.combineLatest)(stashIds.map(s => api.query.staking.erasStakersPaged(activeEra, s, page))) : (0, _rxjs.of)(stashIds.map(() => emptyExpo)), withExposureMeta && api.query.staking.erasStakersOverview ? (0, _rxjs.combineLatest)(stashIds.map(s => api.query.staking.erasStakersOverview(activeEra, s))) : (0, _rxjs.of)(stashIds.map(() => emptyExpoMeta)), withClaimedRewardsEras && api.query.staking.claimedRewards ? (0, _rxjs.combineLatest)([api.query.staking.claimedRewards.entries(), api.query.staking.erasStakersOverview.entries()]).pipe((0, _rxjs.map)(([rewardsStorageVec, overviewStorageVec]) => filterRewards(stashIds, eras, rewardsStorageVec, overviewStorageVec))) : (0, _rxjs.of)(stashIds.map(() => emptyClaimedRewards)), withExposureErasStakersLegacy && api.query.staking.erasStakers ? (0, _rxjs.combineLatest)(stashIds.map(s => api.query.staking.erasStakers(activeEra, s))) : (0, _rxjs.of)(stashIds.map(() => emptyExpoEraStakers))]);\n }\n function getBatch(api, activeEra, stashIds, flags, page) {\n return getStashInfo(api, stashIds, activeEra, flags, page).pipe((0, _rxjs.switchMap)(([controllerIdOpt, nominatorsOpt, rewardDestination, validatorPrefs, exposure, exposureMeta, claimedRewardsEras, exposureEraStakers]) => getLedgers(api, controllerIdOpt, flags).pipe((0, _rxjs.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 const query = /*#__PURE__*/(0, _utilIndexJs.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, _utilIndexJs.memo)(instanceId, (accountIds, flags, page) => api.derive.session.indexes().pipe((0, _rxjs.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.of)([]);\n })));\n }\n});","lineCount":156,"map":[[7,2,152,0,"Object"],[7,8,152,0],[7,9,152,0,"defineProperty"],[7,23,152,0],[7,24,152,0,"exports"],[7,31,152,0],[8,4,152,0,"enumerable"],[8,14,152,0],[9,4,152,0,"get"],[9,7,152,0],[9,18,152,0,"get"],[9,19,152,0],[10,6,152,0],[10,13,152,0,"query"],[10,18,152,0],[11,4,152,0],[12,2,152,0],[13,2,164,0,"exports"],[13,9,164,0],[13,10,164,0,"queryMulti"],[13,20,164,0],[13,23,164,0,"queryMulti"],[13,33,164,0],[14,2,1,0],[14,6,1,0,"_rxjs"],[14,11,1,0],[14,14,1,0,"require"],[14,21,1,0],[14,22,1,0,"_dependencyMap"],[14,36,1,0],[15,2,2,0],[15,6,2,0,"_utilIndexJs"],[15,18,2,0],[15,21,2,0,"require"],[15,28,2,0],[15,29,2,0,"_dependencyMap"],[15,43,2,0],[16,2,3,0],[16,11,3,9,"rewardDestinationCompat"],[16,34,3,32,"rewardDestinationCompat"],[16,35,3,33,"rewardDestination"],[16,52,3,50],[16,54,3,52],[17,4,4,4],[18,4,5,4],[18,11,5,11],[18,18,5,18,"rewardDestination"],[18,35,5,35],[18,36,5,36,"isSome"],[18,42,5,42],[18,47,5,47],[18,56,5,56],[18,59,6,10,"rewardDestination"],[18,76,6,27],[18,77,6,28,"unwrapOr"],[18,85,6,36],[18,86,6,37],[18,90,6,41],[18,91,6,42],[18,94,7,10,"rewardDestination"],[18,111,7,27],[19,2,8,0],[20,2,9,0],[20,11,9,9,"filterClaimedRewards"],[20,31,9,29,"filterClaimedRewards"],[20,32,9,30,"api"],[20,35,9,33],[20,37,9,35,"cl"],[20,39,9,37],[20,41,9,39],[21,4,10,4],[21,11,10,11,"api"],[21,14,10,14],[21,15,10,15,"registry"],[21,23,10,23],[21,24,10,24,"createType"],[21,34,10,34],[21,35,10,35],[21,45,10,45],[21,47,10,47,"cl"],[21,49,10,49],[21,50,10,50,"filter"],[21,56,10,56],[21,57,10,58,"c"],[21,58,10,59],[21,62,10,64,"c"],[21,63,10,65],[21,68,10,70],[21,69,10,71],[21,70,10,72],[21,71,10,73],[21,72,10,74],[22,2,11,0],[23,2,12,0],[23,11,12,9,"filterRewards"],[23,24,12,22,"filterRewards"],[23,25,12,23,"stashIds"],[23,33,12,31],[23,35,12,33,"eras"],[23,39,12,37],[23,41,12,39,"claimedRewards"],[23,55,12,53],[23,57,12,55,"stakersOverview"],[23,72,12,70],[23,74,12,72],[24,4,13,4],[24,10,13,10,"claimedData"],[24,21,13,21],[24,24,13,24],[24,25,13,25],[24,26,13,26],[25,4,14,4],[25,10,14,10,"overviewData"],[25,22,14,22],[25,25,14,25],[25,26,14,26],[25,27,14,27],[26,4,15,4],[26,10,15,10,"ids"],[26,13,15,13],[26,16,15,16,"stashIds"],[26,24,15,24],[26,25,15,25,"map"],[26,28,15,28],[26,29,15,30,"i"],[26,30,15,31],[26,34,15,36,"i"],[26,35,15,37],[26,36,15,38,"toString"],[26,44,15,46],[26,45,15,47],[26,46,15,48],[26,47,15,49],[27,4,16,4,"claimedRewards"],[27,18,16,18],[27,19,16,19,"forEach"],[27,26,16,26],[27,27,16,27],[27,28,16,28],[27,29,16,29,"keys"],[27,33,16,33],[27,35,16,35,"rewards"],[27,42,16,42],[27,43,16,43],[27,48,16,48],[28,6,17,8],[28,12,17,14,"id"],[28,14,17,16],[28,17,17,19,"keys"],[28,21,17,23],[28,22,17,24,"args"],[28,26,17,28],[28,27,17,29],[28,28,17,30],[28,29,17,31],[28,30,17,32,"toString"],[28,38,17,40],[28,39,17,41],[28,40,17,42],[29,6,18,8],[29,12,18,14,"era"],[29,15,18,17],[29,18,18,20,"keys"],[29,22,18,24],[29,23,18,25,"args"],[29,27,18,29],[29,28,18,30],[29,29,18,31],[29,30,18,32],[29,31,18,33,"toNumber"],[29,39,18,41],[29,40,18,42],[29,41,18,43],[30,6,19,8],[30,10,19,12,"ids"],[30,13,19,15],[30,14,19,16,"includes"],[30,22,19,24],[30,23,19,25,"id"],[30,25,19,27],[30,26,19,28],[30,28,19,30],[31,8,20,12],[31,12,20,16,"claimedData"],[31,23,20,27],[31,24,20,28,"id"],[31,26,20,30],[31,27,20,31],[31,29,20,33],[32,10,21,16,"claimedData"],[32,21,21,27],[32,22,21,28,"id"],[32,24,21,30],[32,25,21,31],[32,26,21,32,"set"],[32,29,21,35],[32,30,21,36,"era"],[32,33,21,39],[32,35,21,41,"rewards"],[32,42,21,48],[32,43,21,49,"toArray"],[32,50,21,56],[32,51,21,57],[32,52,21,58],[32,53,21,59],[33,8,22,12],[33,9,22,13],[33,15,23,17],[34,10,24,16,"claimedData"],[34,21,24,27],[34,22,24,28,"id"],[34,24,24,30],[34,25,24,31],[34,28,24,34],[34,32,24,38,"Map"],[34,35,24,41],[34,36,24,42],[34,37,24,43],[35,10,25,16,"claimedData"],[35,21,25,27],[35,22,25,28,"id"],[35,24,25,30],[35,25,25,31],[35,26,25,32,"set"],[35,29,25,35],[35,30,25,36,"era"],[35,33,25,39],[35,35,25,41,"rewards"],[35,42,25,48],[35,43,25,49,"toArray"],[35,50,25,56],[35,51,25,57],[35,52,25,58],[35,53,25,59],[36,8,26,12],[37,6,27,8],[38,4,28,4],[38,5,28,5],[38,6,28,6],[39,4,29,4,"stakersOverview"],[39,19,29,19],[39,20,29,20,"forEach"],[39,27,29,27],[39,28,29,28],[39,29,29,29],[39,30,29,30,"keys"],[39,34,29,34],[39,36,29,36,"overview"],[39,44,29,44],[39,45,29,45],[39,50,29,50],[40,6,30,8],[40,12,30,14,"id"],[40,14,30,16],[40,17,30,19,"keys"],[40,21,30,23],[40,22,30,24,"args"],[40,26,30,28],[40,27,30,29],[40,28,30,30],[40,29,30,31],[40,30,30,32,"toString"],[40,38,30,40],[40,39,30,41],[40,40,30,42],[41,6,31,8],[41,12,31,14,"era"],[41,15,31,17],[41,18,31,20,"keys"],[41,22,31,24],[41,23,31,25,"args"],[41,27,31,29],[41,28,31,30],[41,29,31,31],[41,30,31,32],[41,31,31,33,"toNumber"],[41,39,31,41],[41,40,31,42],[41,41,31,43],[42,6,32,8],[42,10,32,12,"ids"],[42,13,32,15],[42,14,32,16,"includes"],[42,22,32,24],[42,23,32,25,"id"],[42,25,32,27],[42,26,32,28],[42,30,32,32,"overview"],[42,38,32,40],[42,39,32,41,"isSome"],[42,45,32,47],[42,47,32,49],[43,8,33,12],[43,12,33,16,"overviewData"],[43,24,33,28],[43,25,33,29,"id"],[43,27,33,31],[43,28,33,32],[43,30,33,34],[44,10,34,16,"overviewData"],[44,22,34,28],[44,23,34,29,"id"],[44,25,34,31],[44,26,34,32],[44,27,34,33,"set"],[44,30,34,36],[44,31,34,37,"era"],[44,34,34,40],[44,36,34,42,"overview"],[44,44,34,50],[44,45,34,51,"unwrap"],[44,51,34,57],[44,52,34,58],[44,53,34,59],[44,54,34,60,"pageCount"],[44,63,34,69],[44,64,34,70],[45,8,35,12],[45,9,35,13],[45,15,36,17],[46,10,37,16,"overviewData"],[46,22,37,28],[46,23,37,29,"id"],[46,25,37,31],[46,26,37,32],[46,29,37,35],[46,33,37,39,"Map"],[46,36,37,42],[46,37,37,43],[46,38,37,44],[47,10,38,16,"overviewData"],[47,22,38,28],[47,23,38,29,"id"],[47,25,38,31],[47,26,38,32],[47,27,38,33,"set"],[47,30,38,36],[47,31,38,37,"era"],[47,34,38,40],[47,36,38,42,"overview"],[47,44,38,50],[47,45,38,51,"unwrap"],[47,51,38,57],[47,52,38,58],[47,53,38,59],[47,54,38,60,"pageCount"],[47,63,38,69],[47,64,38,70],[48,8,39,12],[49,6,40,8],[50,4,41,4],[50,5,41,5],[50,6,41,6],[51,4,42,4],[51,11,42,11,"stashIds"],[51,19,42,19],[51,20,42,20,"map"],[51,23,42,23],[51,24,42,25,"id"],[51,26,42,27],[51,30,42,32],[52,6,43,8],[52,12,43,14,"rewardsPerEra"],[52,25,43,27],[52,28,43,30,"claimedData"],[52,39,43,41],[52,40,43,42,"id"],[52,42,43,44],[52,43,43,45,"toString"],[52,51,43,53],[52,52,43,54],[52,53,43,55],[52,54,43,56],[53,6,44,8],[53,12,44,14,"overviewPerEra"],[53,26,44,28],[53,29,44,31,"overviewData"],[53,41,44,43],[53,42,44,44,"id"],[53,44,44,46],[53,45,44,47,"toString"],[53,53,44,55],[53,54,44,56],[53,55,44,57],[53,56,44,58],[54,6,45,8],[54,13,45,15,"eras"],[54,17,45,19],[54,18,45,20,"map"],[54,21,45,23],[54,22,45,25,"era"],[54,25,45,28],[54,29,45,33],[55,8,46,12],[55,12,46,16,"rewardsPerEra"],[55,25,46,29],[55,29,46,33,"rewardsPerEra"],[55,42,46,46],[55,43,46,47,"has"],[55,46,46,50],[55,47,46,51,"era"],[55,50,46,54],[55,51,46,55],[55,55,46,59,"overviewPerEra"],[55,69,46,73],[55,73,46,77,"overviewPerEra"],[55,87,46,91],[55,88,46,92,"has"],[55,91,46,95],[55,92,46,96,"era"],[55,95,46,99],[55,96,46,100],[55,98,46,102],[56,10,47,16],[56,16,47,22,"rewards"],[56,23,47,29],[56,26,47,32,"rewardsPerEra"],[56,39,47,45],[56,40,47,46,"get"],[56,43,47,49],[56,44,47,50,"era"],[56,47,47,53],[56,48,47,54],[57,10,48,16],[57,16,48,22,"pageCount"],[57,25,48,31],[57,28,48,34,"overviewPerEra"],[57,42,48,48],[57,43,48,49,"get"],[57,46,48,52],[57,47,48,53,"era"],[57,50,48,56],[57,51,48,57],[58,10,49,16],[58,17,49,23,"rewards"],[58,24,49,30],[58,25,49,31,"length"],[58,31,49,37],[58,36,49,42,"pageCount"],[58,45,49,51],[58,46,49,52,"toNumber"],[58,54,49,60],[58,55,49,61],[58,56,49,62],[58,59,50,22,"era"],[58,62,50,25],[58,65,51,22],[58,66,51,23],[58,67,51,24],[59,8,52,12],[60,8,53,12],[60,15,53,19],[60,16,53,20],[60,17,53,21],[61,6,54,8],[61,7,54,9],[61,8,54,10],[62,4,55,4],[62,5,55,5],[62,6,55,6],[63,2,56,0],[64,2,57,0],[64,11,57,9,"parseDetails"],[64,23,57,21,"parseDetails"],[64,24,57,22,"api"],[64,27,57,25],[64,29,57,27,"stashId"],[64,36,57,34],[64,38,57,36,"controllerIdOpt"],[64,53,57,51],[64,55,57,53,"nominatorsOpt"],[64,68,57,66],[64,70,57,68,"rewardDestinationOpts"],[64,91,57,89],[64,93,57,91,"validatorPrefs"],[64,107,57,105],[64,109,57,107,"exposure"],[64,117,57,115],[64,119,57,117,"stakingLedgerOpt"],[64,135,57,133],[64,137,57,135,"exposureMeta"],[64,149,57,147],[64,151,57,149,"claimedRewards"],[64,165,57,163],[64,167,57,165,"exposureEraStakers"],[64,185,57,183],[64,187,57,185],[65,4,58,4],[65,11,58,11],[66,6,59,8,"accountId"],[66,15,59,17],[66,17,59,19,"stashId"],[66,24,59,26],[67,6,60,8,"claimedRewardsEras"],[67,24,60,26],[67,26,60,28,"filterClaimedRewards"],[67,46,60,48],[67,47,60,49,"api"],[67,50,60,52],[67,52,60,54,"claimedRewards"],[67,66,60,68],[67,67,60,69],[68,6,61,8,"controllerId"],[68,18,61,20],[68,20,61,22,"controllerIdOpt"],[68,35,61,37],[68,37,61,39,"unwrapOr"],[68,45,61,47],[68,46,61,48],[68,50,61,52],[68,51,61,53],[68,55,61,57],[68,59,61,61],[69,6,62,8,"exposureEraStakers"],[69,24,62,26],[70,6,63,8,"exposureMeta"],[70,18,63,20],[71,6,64,8,"exposurePaged"],[71,19,64,21],[71,21,64,23,"exposure"],[71,29,64,31],[72,6,65,8,"nominators"],[72,16,65,18],[72,18,65,20,"nominatorsOpt"],[72,31,65,33],[72,32,65,34,"isSome"],[72,38,65,40],[72,41,66,14,"nominatorsOpt"],[72,54,66,27],[72,55,66,28,"unwrap"],[72,61,66,34],[72,62,66,35],[72,63,66,36],[72,64,66,37,"targets"],[72,71,66,44],[72,74,67,14],[72,76,67,16],[73,6,68,8,"rewardDestination"],[73,23,68,25],[73,25,68,27,"rewardDestinationCompat"],[73,48,68,50],[73,49,68,51,"rewardDestinationOpts"],[73,70,68,72],[73,71,68,73],[74,6,69,8,"stakingLedger"],[74,19,69,21],[74,21,69,23,"stakingLedgerOpt"],[74,37,69,39],[74,38,69,40,"unwrapOrDefault"],[74,53,69,55],[74,54,69,56],[74,55,69,57],[75,6,70,8,"stashId"],[75,13,70,15],[76,6,71,8,"validatorPrefs"],[77,4,72,4],[77,5,72,5],[78,2,73,0],[79,2,74,0],[79,11,74,9,"getLedgers"],[79,21,74,19,"getLedgers"],[79,22,74,20,"api"],[79,25,74,23],[79,27,74,25,"optIds"],[79,33,74,31],[79,35,74,33],[80,4,74,35,"withLedger"],[80,14,74,45],[80,17,74,48],[81,2,74,54],[81,3,74,55],[81,5,74,57],[82,4,75,4],[82,10,75,10,"ids"],[82,13,75,13],[82,16,75,16,"optIds"],[82,22,75,22],[82,23,76,9,"filter"],[82,29,76,15],[82,30,76,17,"o"],[82,31,76,18],[82,35,76,23,"withLedger"],[82,45,76,33],[82,49,76,37],[82,50,76,38],[82,51,76,39,"o"],[82,52,76,40],[82,56,76,44,"o"],[82,57,76,45],[82,58,76,46,"isSome"],[82,64,76,52],[82,65,76,53],[82,66,77,9,"map"],[82,69,77,12],[82,70,77,14,"o"],[82,71,77,15],[82,75,77,20,"o"],[82,76,77,21],[82,77,77,22,"unwrap"],[82,83,77,28],[82,84,77,29],[82,85,77,30],[82,86,77,31],[83,4,78,4],[83,10,78,10,"emptyLed"],[83,18,78,18],[83,21,78,21,"api"],[83,24,78,24],[83,25,78,25,"registry"],[83,33,78,33],[83,34,78,34,"createType"],[83,44,78,44],[83,45,78,45],[83,68,78,68],[83,69,78,69],[84,4,79,4],[84,11,79,11],[84,12,79,12,"ids"],[84,15,79,15],[84,16,79,16,"length"],[84,22,79,22],[84,25,80,10],[84,29,80,10,"combineLatest"],[84,34,80,23],[84,35,80,23,"combineLatest"],[84,48,80,23],[84,50,80,24,"ids"],[84,53,80,27],[84,54,80,28,"map"],[84,57,80,31],[84,58,80,33,"s"],[84,59,80,34],[84,63,80,39,"api"],[84,66,80,42],[84,67,80,43,"query"],[84,72,80,48],[84,73,80,49,"staking"],[84,80,80,56],[84,81,80,57,"ledger"],[84,87,80,63],[84,88,80,64,"s"],[84,89,80,65],[84,90,80,66],[84,91,80,67],[84,92,80,68],[84,95,81,10],[84,99,81,10,"of"],[84,104,81,12],[84,105,81,12,"of"],[84,107,81,12],[84,109,81,13],[84,111,81,15],[84,112,81,16],[84,114,81,18,"pipe"],[84,118,81,22],[84,119,81,23],[84,123,81,23,"map"],[84,128,81,26],[84,129,81,26,"map"],[84,132,81,26],[84,134,81,28,"optLedgers"],[84,144,81,38],[84,148,81,43],[85,6,82,8],[85,10,82,12,"offset"],[85,16,82,18],[85,19,82,21],[85,20,82,22],[85,21,82,23],[86,6,83,8],[86,13,83,15,"optIds"],[86,19,83,21],[86,20,83,22,"map"],[86,23,83,25],[86,24,83,27,"o"],[86,25,83,28],[86,29,83,33,"o"],[86,30,83,34],[86,34,83,38,"o"],[86,35,83,39],[86,36,83,40,"isSome"],[86,42,83,46],[86,45,84,14,"optLedgers"],[86,55,84,24],[86,56,84,25],[86,58,84,27,"offset"],[86,64,84,33],[86,65,84,34],[86,69,84,38,"emptyLed"],[86,77,84,46],[86,80,85,14,"emptyLed"],[86,88,85,22],[86,89,85,23],[87,4,86,4],[87,5,86,5],[87,6,86,6],[87,7,86,7],[88,2,87,0],[89,2,88,0],[89,11,88,9,"getStashInfo"],[89,23,88,21,"getStashInfo"],[89,24,88,22,"api"],[89,27,88,25],[89,29,88,27,"stashIds"],[89,37,88,35],[89,39,88,37,"activeEra"],[89,48,88,46],[89,50,88,48],[90,4,88,50,"withClaimedRewardsEras"],[90,26,88,72],[91,4,88,74,"withController"],[91,18,88,88],[92,4,88,90,"withDestination"],[92,19,88,105],[93,4,88,107,"withExposure"],[93,16,88,119],[94,4,88,121,"withExposureErasStakersLegacy"],[94,33,88,150],[95,4,88,152,"withExposureMeta"],[95,20,88,168],[96,4,88,170,"withLedger"],[96,14,88,180],[97,4,88,182,"withNominations"],[97,19,88,197],[98,4,88,199,"withPrefs"],[99,2,88,209],[99,3,88,210],[99,5,88,212,"page"],[99,9,88,216],[99,11,88,218],[100,4,89,4],[100,10,89,10,"emptyNoms"],[100,19,89,19],[100,22,89,22,"api"],[100,25,89,25],[100,26,89,26,"registry"],[100,34,89,34],[100,35,89,35,"createType"],[100,45,89,45],[100,46,89,46],[100,67,89,67],[100,68,89,68],[101,4,90,4],[101,10,90,10,"emptyRewa"],[101,19,90,19],[101,22,90,22,"api"],[101,25,90,25],[101,26,90,26,"registry"],[101,34,90,34],[101,35,90,35,"createType"],[101,45,90,45],[101,46,90,46],[101,65,90,65],[101,66,90,66],[102,4,91,4],[102,10,91,10,"emptyExpoEraStakers"],[102,29,91,29],[102,32,91,32,"api"],[102,35,91,35],[102,36,91,36,"registry"],[102,44,91,44],[102,45,91,45,"createType"],[102,55,91,55],[102,56,91,56],[102,66,91,66],[102,67,91,67],[103,4,92,4],[103,10,92,10,"emptyPrefs"],[103,20,92,20],[103,23,92,23,"api"],[103,26,92,26],[103,27,92,27,"registry"],[103,35,92,35],[103,36,92,36,"createType"],[103,46,92,46],[103,47,92,47],[103,63,92,63],[103,64,92,64],[104,4,93,4],[105,4,94,4],[106,4,95,4],[106,10,95,10,"emptyExpo"],[106,19,95,19],[106,22,95,22,"api"],[106,25,95,25],[106,26,95,26,"registry"],[106,34,95,34],[106,35,95,35,"createType"],[106,45,95,45],[106,46,95,46],[106,60,95,60],[106,61,95,61],[107,4,96,4],[107,10,96,10,"emptyExpoMeta"],[107,23,96,23],[107,26,96,26,"api"],[107,29,96,29],[107,30,96,30,"registry"],[107,38,96,38],[107,39,96,39,"createType"],[107,49,96,49],[107,50,96,50],[107,64,96,64],[107,65,96,65],[108,4,97,4],[108,10,97,10,"emptyClaimedRewards"],[108,29,97,29],[108,32,97,32],[108,33,97,33],[108,34,97,34],[108,35,97,35],[108,36,97,36],[109,4,98,4],[109,10,98,10,"depth"],[109,15,98,15],[109,18,98,18,"Number"],[109,24,98,24],[109,25,98,25,"api"],[109,28,98,28],[109,29,98,29,"consts"],[109,35,98,35],[109,36,98,36,"staking"],[109,43,98,43],[109,44,98,44,"historyDepth"],[109,56,98,56],[109,57,98,57,"toNumber"],[109,65,98,65],[109,66,98,66],[109,67,98,67],[109,68,98,68],[110,4,99,4],[110,10,99,10,"eras"],[110,14,99,14],[110,17,99,17],[110,21,99,21,"Array"],[110,26,99,26],[110,27,99,27,"depth"],[110,32,99,32],[110,33,99,33],[110,34,99,34,"fill"],[110,38,99,38],[110,39,99,39],[110,40,99,40],[110,41,99,41],[110,42,99,42,"map"],[110,45,99,45],[110,46,99,46],[110,47,99,47,"_"],[110,48,99,48],[110,50,99,50,"idx"],[110,53,99,53],[110,58,99,58],[111,6,100,8],[111,10,100,12,"idx"],[111,13,100,15],[111,18,100,20],[111,19,100,21],[111,21,100,23],[112,8,101,12],[112,15,101,19,"activeEra"],[112,24,101,28],[112,25,101,29,"toNumber"],[112,33,101,37],[112,34,101,38],[112,35,101,39],[112,38,101,42],[112,39,101,43],[113,6,102,8],[114,6,103,8],[114,13,103,15,"activeEra"],[114,22,103,24],[114,23,103,25,"toNumber"],[114,31,103,33],[114,32,103,34],[114,33,103,35],[114,36,103,38,"idx"],[114,39,103,41],[114,42,103,44],[114,43,103,45],[115,4,104,4],[115,5,104,5],[115,6,104,6],[116,4,105,4],[116,11,105,11],[116,15,105,11,"combineLatest"],[116,20,105,24],[116,21,105,24,"combineLatest"],[116,34,105,24],[116,36,105,25],[116,37,106,8,"withController"],[116,51,106,22],[116,55,106,26,"withLedger"],[116,65,106,36],[116,68,107,14],[116,72,107,14,"combineLatest"],[116,77,107,27],[116,78,107,27,"combineLatest"],[116,91,107,27],[116,93,107,28,"stashIds"],[116,101,107,36],[116,102,107,37,"map"],[116,105,107,40],[116,106,107,42,"s"],[116,107,107,43],[116,111,107,48,"api"],[116,114,107,51],[116,115,107,52,"query"],[116,120,107,57],[116,121,107,58,"staking"],[116,128,107,65],[116,129,107,66,"bonded"],[116,135,107,72],[116,136,107,73,"s"],[116,137,107,74],[116,138,107,75],[116,139,107,76],[116,140,107,77],[116,143,108,14],[116,147,108,14,"of"],[116,152,108,16],[116,153,108,16,"of"],[116,155,108,16],[116,157,108,17,"stashIds"],[116,165,108,25],[116,166,108,26,"map"],[116,169,108,29],[116,170,108,30],[116,176,108,36],[116,180,108,40],[116,181,108,41],[116,182,108,42],[116,184,109,8,"withNominations"],[116,199,109,23],[116,202,110,14],[116,206,110,14,"combineLatest"],[116,211,110,27],[116,212,110,27,"combineLatest"],[116,225,110,27],[116,227,110,28,"stashIds"],[116,235,110,36],[116,236,110,37,"map"],[116,239,110,40],[116,240,110,42,"s"],[116,241,110,43],[116,245,110,48,"api"],[116,248,110,51],[116,249,110,52,"query"],[116,254,110,57],[116,255,110,58,"staking"],[116,262,110,65],[116,263,110,66,"nominators"],[116,273,110,76],[116,274,110,77,"s"],[116,275,110,78],[116,276,110,79],[116,277,110,80],[116,278,110,81],[116,281,111,14],[116,285,111,14,"of"],[116,290,111,16],[116,291,111,16,"of"],[116,293,111,16],[116,295,111,17,"stashIds"],[116,303,111,25],[116,304,111,26,"map"],[116,307,111,29],[116,308,111,30],[116,314,111,36,"emptyNoms"],[116,323,111,45],[116,324,111,46],[116,325,111,47],[116,327,112,8,"withDestination"],[116,342,112,23],[116,345,113,14],[116,349,113,14,"combineLatest"],[116,354,113,27],[116,355,113,27,"combineLatest"],[116,368,113,27],[116,370,113,28,"stashIds"],[116,378,113,36],[116,379,113,37,"map"],[116,382,113,40],[116,383,113,42,"s"],[116,384,113,43],[116,388,113,48,"api"],[116,391,113,51],[116,392,113,52,"query"],[116,397,113,57],[116,398,113,58,"staking"],[116,405,113,65],[116,406,113,66,"payee"],[116,411,113,71],[116,412,113,72,"s"],[116,413,113,73],[116,414,113,74],[116,415,113,75],[116,416,113,76],[116,419,114,14],[116,423,114,14,"of"],[116,428,114,16],[116,429,114,16,"of"],[116,431,114,16],[116,433,114,17,"stashIds"],[116,441,114,25],[116,442,114,26,"map"],[116,445,114,29],[116,446,114,30],[116,452,114,36,"emptyRewa"],[116,461,114,45],[116,462,114,46],[116,463,114,47],[116,465,115,8,"withPrefs"],[116,474,115,17],[116,477,116,14],[116,481,116,14,"combineLatest"],[116,486,116,27],[116,487,116,27,"combineLatest"],[116,500,116,27],[116,502,116,28,"stashIds"],[116,510,116,36],[116,511,116,37,"map"],[116,514,116,40],[116,515,116,42,"s"],[116,516,116,43],[116,520,116,48,"api"],[116,523,116,51],[116,524,116,52,"query"],[116,529,116,57],[116,530,116,58,"staking"],[116,537,116,65],[116,538,116,66,"validators"],[116,548,116,76],[116,549,116,77,"s"],[116,550,116,78],[116,551,116,79],[116,552,116,80],[116,553,116,81],[116,556,117,14],[116,560,117,14,"of"],[116,565,117,16],[116,566,117,16,"of"],[116,568,117,16],[116,570,117,17,"stashIds"],[116,578,117,25],[116,579,117,26,"map"],[116,582,117,29],[116,583,117,30],[116,589,117,36,"emptyPrefs"],[116,599,117,46],[116,600,117,47],[116,601,117,48],[116,603,118,8,"withExposure"],[116,615,118,20],[116,619,118,24,"api"],[116,622,118,27],[116,623,118,28,"query"],[116,628,118,33],[116,629,118,34,"staking"],[116,636,118,41],[116,637,118,42,"erasStakersPaged"],[116,653,118,58],[116,656,119,14],[116,660,119,14,"combineLatest"],[116,665,119,27],[116,666,119,27,"combineLatest"],[116,679,119,27],[116,681,119,28,"stashIds"],[116,689,119,36],[116,690,119,37,"map"],[116,693,119,40],[116,694,119,42,"s"],[116,695,119,43],[116,699,119,48,"api"],[116,702,119,51],[116,703,119,52,"query"],[116,708,119,57],[116,709,119,58,"staking"],[116,716,119,65],[116,717,119,66,"erasStakersPaged"],[116,733,119,82],[116,734,119,83,"activeEra"],[116,743,119,92],[116,745,119,94,"s"],[116,746,119,95],[116,748,119,97,"page"],[116,752,119,101],[116,753,119,102],[116,754,119,103],[116,755,119,104],[116,758,120,14],[116,762,120,14,"of"],[116,767,120,16],[116,768,120,16,"of"],[116,770,120,16],[116,772,120,17,"stashIds"],[116,780,120,25],[116,781,120,26,"map"],[116,784,120,29],[116,785,120,30],[116,791,120,36,"emptyExpo"],[116,800,120,45],[116,801,120,46],[116,802,120,47],[116,804,121,8,"withExposureMeta"],[116,820,121,24],[116,824,121,28,"api"],[116,827,121,31],[116,828,121,32,"query"],[116,833,121,37],[116,834,121,38,"staking"],[116,841,121,45],[116,842,121,46,"erasStakersOverview"],[116,861,121,65],[116,864,122,14],[116,868,122,14,"combineLatest"],[116,873,122,27],[116,874,122,27,"combineLatest"],[116,887,122,27],[116,889,122,28,"stashIds"],[116,897,122,36],[116,898,122,37,"map"],[116,901,122,40],[116,902,122,42,"s"],[116,903,122,43],[116,907,122,48,"api"],[116,910,122,51],[116,911,122,52,"query"],[116,916,122,57],[116,917,122,58,"staking"],[116,924,122,65],[116,925,122,66,"erasStakersOverview"],[116,944,122,85],[116,945,122,86,"activeEra"],[116,954,122,95],[116,956,122,97,"s"],[116,957,122,98],[116,958,122,99],[116,959,122,100],[116,960,122,101],[116,963,123,14],[116,967,123,14,"of"],[116,972,123,16],[116,973,123,16,"of"],[116,975,123,16],[116,977,123,17,"stashIds"],[116,985,123,25],[116,986,123,26,"map"],[116,989,123,29],[116,990,123,30],[116,996,123,36,"emptyExpoMeta"],[116,1009,123,49],[116,1010,123,50],[116,1011,123,51],[116,1013,124,8,"withClaimedRewardsEras"],[116,1035,124,30],[116,1039,124,34,"api"],[116,1042,124,37],[116,1043,124,38,"query"],[116,1048,124,43],[116,1049,124,44,"staking"],[116,1056,124,51],[116,1057,124,52,"claimedRewards"],[116,1071,124,66],[116,1074,125,14],[116,1078,125,14,"combineLatest"],[116,1083,125,27],[116,1084,125,27,"combineLatest"],[116,1097,125,27],[116,1099,125,28],[116,1100,126,16,"api"],[116,1103,126,19],[116,1104,126,20,"query"],[116,1109,126,25],[116,1110,126,26,"staking"],[116,1117,126,33],[116,1118,126,34,"claimedRewards"],[116,1132,126,48],[116,1133,126,49,"entries"],[116,1140,126,56],[116,1141,126,57],[116,1142,126,58],[116,1144,127,16,"api"],[116,1147,127,19],[116,1148,127,20,"query"],[116,1153,127,25],[116,1154,127,26,"staking"],[116,1161,127,33],[116,1162,127,34,"erasStakersOverview"],[116,1181,127,53],[116,1182,127,54,"entries"],[116,1189,127,61],[116,1190,127,62],[116,1191,127,63],[116,1192,128,13],[116,1193,128,14],[116,1194,128,15,"pipe"],[116,1198,128,19],[116,1199,128,20],[116,1203,128,20,"map"],[116,1208,128,23],[116,1209,128,23,"map"],[116,1212,128,23],[116,1214,128,24],[116,1215,128,25],[116,1216,128,26,"rewardsStorageVec"],[116,1233,128,43],[116,1235,128,45,"overviewStorageVec"],[116,1253,128,63],[116,1254,128,64],[116,1259,128,69,"filterRewards"],[116,1272,128,82],[116,1273,128,83,"stashIds"],[116,1281,128,91],[116,1283,128,93,"eras"],[116,1287,128,97],[116,1289,128,99,"rewardsStorageVec"],[116,1306,128,116],[116,1308,128,118,"overviewStorageVec"],[116,1326,128,136],[116,1327,128,137],[116,1328,128,138],[116,1329,128,139],[116,1332,129,14],[116,1336,129,14,"of"],[116,1341,129,16],[116,1342,129,16,"of"],[116,1344,129,16],[116,1346,129,17,"stashIds"],[116,1354,129,25],[116,1355,129,26,"map"],[116,1358,129,29],[116,1359,129,30],[116,1365,129,36,"emptyClaimedRewards"],[116,1384,129,55],[116,1385,129,56],[116,1386,129,57],[116,1388,130,8,"withExposureErasStakersLegacy"],[116,1417,130,37],[116,1421,130,41,"api"],[116,1424,130,44],[116,1425,130,45,"query"],[116,1430,130,50],[116,1431,130,51,"staking"],[116,1438,130,58],[116,1439,130,59,"erasStakers"],[116,1450,130,70],[116,1453,131,14],[116,1457,131,14,"combineLatest"],[116,1462,131,27],[116,1463,131,27,"combineLatest"],[116,1476,131,27],[116,1478,131,28,"stashIds"],[116,1486,131,36],[116,1487,131,37,"map"],[116,1490,131,40],[116,1491,131,42,"s"],[116,1492,131,43],[116,1496,131,48,"api"],[116,1499,131,51],[116,1500,131,52,"query"],[116,1505,131,57],[116,1506,131,58,"staking"],[116,1513,131,65],[116,1514,131,66,"erasStakers"],[116,1525,131,77],[116,1526,131,78,"activeEra"],[116,1535,131,87],[116,1537,131,89,"s"],[116,1538,131,90],[116,1539,131,91],[116,1540,131,92],[116,1541,131,93],[116,1544,132,14],[116,1548,132,14,"of"],[116,1553,132,16],[116,1554,132,16,"of"],[116,1556,132,16],[116,1558,132,17,"stashIds"],[116,1566,132,25],[116,1567,132,26,"map"],[116,1570,132,29],[116,1571,132,30],[116,1577,132,36,"emptyExpoEraStakers"],[116,1596,132,55],[116,1597,132,56],[116,1598,132,57],[116,1599,133,5],[116,1600,133,6],[117,2,134,0],[118,2,135,0],[118,11,135,9,"getBatch"],[118,19,135,17,"getBatch"],[118,20,135,18,"api"],[118,23,135,21],[118,25,135,23,"activeEra"],[118,34,135,32],[118,36,135,34,"stashIds"],[118,44,135,42],[118,46,135,44,"flags"],[118,51,135,49],[118,53,135,51,"page"],[118,57,135,55],[118,59,135,57],[119,4,136,4],[119,11,136,11,"getStashInfo"],[119,23,136,23],[119,24,136,24,"api"],[119,27,136,27],[119,29,136,29,"stashIds"],[119,37,136,37],[119,39,136,39,"activeEra"],[119,48,136,48],[119,50,136,50,"flags"],[119,55,136,55],[119,57,136,57,"page"],[119,61,136,61],[119,62,136,62],[119,63,136,63,"pipe"],[119,67,136,67],[119,68,136,68],[119,72,136,68,"switchMap"],[119,77,136,77],[119,78,136,77,"switchMap"],[119,87,136,77],[119,89,136,78],[119,90,136,79],[119,91,136,80,"controllerIdOpt"],[119,106,136,95],[119,108,136,97,"nominatorsOpt"],[119,121,136,110],[119,123,136,112,"rewardDestination"],[119,140,136,129],[119,142,136,131,"validatorPrefs"],[119,156,136,145],[119,158,136,147,"exposure"],[119,166,136,155],[119,168,136,157,"exposureMeta"],[119,180,136,169],[119,182,136,171,"claimedRewardsEras"],[119,200,136,189],[119,202,136,191,"exposureEraStakers"],[119,220,136,209],[119,221,136,210],[119,226,136,215,"getLedgers"],[119,236,136,225],[119,237,136,226,"api"],[119,240,136,229],[119,242,136,231,"controllerIdOpt"],[119,257,136,246],[119,259,136,248,"flags"],[119,264,136,253],[119,265,136,254],[119,266,136,255,"pipe"],[119,270,136,259],[119,271,136,260],[119,275,136,260,"map"],[119,280,136,263],[119,281,136,263,"map"],[119,284,136,263],[119,286,136,265,"stakingLedgerOpts"],[119,303,136,282],[119,307,136,287,"stashIds"],[119,315,136,295],[119,316,136,296,"map"],[119,319,136,299],[119,320,136,300],[119,321,136,301,"stashId"],[119,328,136,308],[119,330,136,310,"index"],[119,335,136,315],[119,340,136,320,"parseDetails"],[119,352,136,332],[119,353,136,333,"api"],[119,356,136,336],[119,358,136,338,"stashId"],[119,365,136,345],[119,367,136,347,"controllerIdOpt"],[119,382,136,362],[119,383,136,363,"index"],[119,388,136,368],[119,389,136,369],[119,391,136,371,"nominatorsOpt"],[119,404,136,384],[119,405,136,385,"index"],[119,410,136,390],[119,411,136,391],[119,413,136,393,"rewardDestination"],[119,430,136,410],[119,431,136,411,"index"],[119,436,136,416],[119,437,136,417],[119,439,136,419,"validatorPrefs"],[119,453,136,433],[119,454,136,434,"index"],[119,459,136,439],[119,460,136,440],[119,462,136,442,"exposure"],[119,470,136,450],[119,471,136,451,"index"],[119,476,136,456],[119,477,136,457],[119,479,136,459,"stakingLedgerOpts"],[119,496,136,476],[119,497,136,477,"index"],[119,502,136,482],[119,503,136,483],[119,505,136,485,"exposureMeta"],[119,517,136,497],[119,518,136,498,"index"],[119,523,136,503],[119,524,136,504],[119,526,136,506,"claimedRewardsEras"],[119,544,136,524],[119,545,136,525,"index"],[119,550,136,530],[119,551,136,531],[119,553,136,533,"exposureEraStakers"],[119,571,136,551],[119,572,136,552,"index"],[119,577,136,557],[119,578,136,558],[119,579,136,559],[119,580,136,560],[119,581,136,561],[119,582,136,562],[119,583,136,563],[119,584,136,564],[120,2,137,0],[121,2,138,0],[122,0,139,0],[123,0,140,0],[124,0,141,0],[125,0,142,0],[126,0,143,0],[127,0,144,0],[128,0,145,0],[129,0,146,0],[130,0,147,0],[131,0,148,0],[132,0,149,0],[133,0,150,0],[134,0,151,0],[135,2,152,7],[135,8,152,13,"query"],[135,13,152,18],[135,16,152,21],[135,29,152,35],[135,33,152,35,"firstMemo"],[135,45,152,44],[135,46,152,44,"firstMemo"],[135,55,152,44],[135,57,152,45],[135,58,152,46,"api"],[135,61,152,49],[135,63,152,51,"accountId"],[135,72,152,60],[135,74,152,62,"flags"],[135,79,152,67],[135,81,152,69,"page"],[135,85,152,73],[135,90,152,78,"api"],[135,93,152,81],[135,94,152,82,"derive"],[135,100,152,88],[135,101,152,89,"staking"],[135,108,152,96],[135,109,152,97,"queryMulti"],[135,119,152,107],[135,120,152,108],[135,121,152,109,"accountId"],[135,130,152,118],[135,131,152,119],[135,133,152,121,"flags"],[135,138,152,126],[135,140,152,128,"page"],[135,144,152,132],[135,145,152,133],[135,146,152,134],[136,2,153,0],[137,0,154,0],[138,0,155,0],[139,0,156,0],[140,0,157,0],[141,0,158,0],[142,0,159,0],[143,0,160,0],[144,0,161,0],[145,0,162,0],[146,0,163,0],[147,2,164,7],[147,11,164,16,"queryMulti"],[147,21,164,26,"queryMulti"],[147,22,164,27,"instanceId"],[147,32,164,37],[147,34,164,39,"api"],[147,37,164,42],[147,39,164,44],[148,4,165,4],[148,11,165,11],[148,15,165,11,"memo"],[148,27,165,15],[148,28,165,15,"memo"],[148,32,165,15],[148,34,165,16,"instanceId"],[148,44,165,26],[148,46,165,28],[148,47,165,29,"accountIds"],[148,57,165,39],[148,59,165,41,"flags"],[148,64,165,46],[148,66,165,48,"page"],[148,70,165,52],[148,75,165,57,"api"],[148,78,165,60],[148,79,165,61,"derive"],[148,85,165,67],[148,86,165,68,"session"],[148,93,165,75],[148,94,165,76,"indexes"],[148,101,165,83],[148,102,165,84],[148,103,165,85],[148,104,165,86,"pipe"],[148,108,165,90],[148,109,165,91],[148,113,165,91,"switchMap"],[148,118,165,100],[148,119,165,100,"switchMap"],[148,128,165,100],[148,130,165,101],[148,131,165,102],[149,6,165,104,"activeEra"],[150,4,165,114],[150,5,165,115],[150,10,165,120],[151,6,166,8],[151,12,166,14,"stashIds"],[151,20,166,22],[151,23,166,25,"accountIds"],[151,33,166,35],[151,34,166,36,"map"],[151,37,166,39],[151,38,166,41,"a"],[151,39,166,42],[151,43,166,47,"api"],[151,46,166,50],[151,47,166,51,"registry"],[151,55,166,59],[151,56,166,60,"createType"],[151,66,166,70],[151,67,166,71],[151,78,166,82],[151,80,166,84,"a"],[151,81,166,85],[151,82,166,86],[151,83,166,87],[152,6,167,8],[152,12,167,14,"p"],[152,13,167,15],[152,16,167,18,"page"],[152,20,167,22],[152,24,167,26],[152,25,167,27],[153,6,168,8],[153,13,168,15,"stashIds"],[153,21,168,23],[153,22,168,24,"length"],[153,28,168,30],[153,31,169,14,"getBatch"],[153,39,169,22],[153,40,169,23,"api"],[153,43,169,26],[153,45,169,28,"activeEra"],[153,54,169,37],[153,56,169,39,"stashIds"],[153,64,169,47],[153,66,169,49,"flags"],[153,71,169,54],[153,73,169,56,"p"],[153,74,169,57],[153,75,169,58],[153,78,170,14],[153,82,170,14,"of"],[153,87,170,16],[153,88,170,16,"of"],[153,90,170,16],[153,92,170,17],[153,94,170,19],[153,95,170,20],[154,4,171,4],[154,5,171,5],[154,6,171,6],[154,7,171,7],[154,8,171,8],[155,2,172,0],[156,0,172,1],[156,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","map$argument_0","optIds.map$argument_0","getStashInfo","Array.fill.map$argument_0","getBatch","switchMap$argument_0","firstMemo$argument_0","queryMulti","memo$argument_1","accountIds.map$argument_0"],"mappings":"AAA;ACE;CDK;AEC;yDCC,eD;CFC;AIC;6BCG,mBD;2BEC;KFY;4BGC;KHY;wBCC;wBGG;SHS;KDC;CJC;ASC;CTgB;AUC;gBCE,oCD;aEC,iBF;gCGG,kCH;2BIC;0BCE;sBDE;KJC;CVC;AgBC;8CCW;KDK;yCXG,kCW;8BXC,UW;yCXE,sCW;8BXC,eW;yCXE,iCW;8BXC,eW;yCXE,sCW;8BXC,gBW;yCXE,6DW;8BXC,eW;yCXE,0DW;8BXC,mBW;wBFK,iHE;8BXC,yBW;yCXE,kDW;8BXC,yBW;ChBE;AkBC;8ECC,0LL,oCT,mQS,CK,ED;ClBC;6CoBe,wFpB;OqBY;4BCC,yEH;wCIC,8CJ;KGK,ED;CrBC"},"hasCjsExports":false},"type":"js/module"}]} |