mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-06 03:17:58 +00:00
1 line
19 KiB
Plaintext
1 line
19 KiB
Plaintext
{"dependencies":[{"name":"rxjs","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":15,"index":131},"end":{"line":4,"column":30,"index":146}}],"key":"atDzfUGaJNRNtwyVumomzH/5ygw=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":15,"index":163},"end":{"line":5,"column":40,"index":188}}],"key":"u0mzEw2nilnHoUWtEdZl0JKHutA=","exportNames":["*"],"imports":1}},{"name":"../util/index.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":19,"index":209},"end":{"line":6,"column":46,"index":236}}],"key":"H94lp+EitftSFqDHaenrSs5zKB0=","exportNames":["*"],"imports":1}},{"name":"./util.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":7,"column":18,"index":256},"end":{"line":7,"column":38,"index":276}}],"key":"RHtkf1pyimtRfZWAvWBZ833kE8E=","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.contributions = contributions;\n const rxjs_1 = require(_dependencyMap[0], \"rxjs\");\n const util_1 = require(_dependencyMap[1], \"@polkadot/util\");\n const index_js_1 = require(_dependencyMap[2], \"../util/index.js\");\n const util_js_1 = require(_dependencyMap[3], \"./util.js\");\n const PAGE_SIZE_K = 1000; // limit aligned with the 1k on the node (trie lookups are heavy)\n function _getUpdates(api, paraId) {\n let added = [];\n let removed = [];\n return api.query.system.events().pipe((0, rxjs_1.switchMap)(events => {\n const changes = (0, util_js_1.extractContributed)(paraId, events);\n if (changes.added.length || changes.removed.length) {\n added = added.concat(...changes.added);\n removed = removed.concat(...changes.removed);\n return (0, rxjs_1.of)({\n added,\n addedDelta: changes.added,\n blockHash: events.createdAtHash?.toHex() || '-',\n removed,\n removedDelta: changes.removed\n });\n }\n return rxjs_1.EMPTY;\n }), (0, rxjs_1.startWith)({\n added,\n addedDelta: [],\n blockHash: '-',\n removed,\n removedDelta: []\n }));\n }\n function _eventTriggerAll(api, paraId) {\n return api.query.system.events().pipe((0, rxjs_1.switchMap)(events => {\n const items = events.filter(({\n event: {\n data: [eventParaId],\n method,\n section\n }\n }) => section === 'crowdloan' && ['AllRefunded', 'Dissolved', 'PartiallyRefunded'].includes(method) && eventParaId.eq(paraId));\n return items.length ? (0, rxjs_1.of)(events.createdAtHash?.toHex() || '-') : rxjs_1.EMPTY;\n }), (0, rxjs_1.startWith)('-'));\n }\n function _getKeysPaged(api, childKey) {\n const subject = new rxjs_1.BehaviorSubject(undefined);\n return subject.pipe((0, rxjs_1.switchMap)(startKey => api.rpc.childstate.getKeysPaged(childKey, '0x', PAGE_SIZE_K, startKey)), (0, rxjs_1.tap)(keys => {\n (0, util_1.nextTick)(() => {\n keys.length === PAGE_SIZE_K ? subject.next(keys[PAGE_SIZE_K - 1].toHex()) : subject.complete();\n });\n }), (0, rxjs_1.toArray)(),\n // toArray since we want to startSubject to be completed\n (0, rxjs_1.map)(keyArr => (0, util_1.arrayFlatten)(keyArr)));\n }\n function _getAll(api, paraId, childKey) {\n return _eventTriggerAll(api, paraId).pipe((0, rxjs_1.switchMap)(() => (0, util_1.isFunction)(api.rpc.childstate.getKeysPaged) ? _getKeysPaged(api, childKey) : api.rpc.childstate.getKeys(childKey, '0x')), (0, rxjs_1.map)(keys => keys.map(k => k.toHex())));\n }\n function _contributions(api, paraId, childKey) {\n return (0, rxjs_1.combineLatest)([_getAll(api, paraId, childKey), _getUpdates(api, paraId)]).pipe((0, rxjs_1.map)(([keys, {\n added,\n blockHash,\n removed\n }]) => {\n const contributorsMap = {};\n keys.forEach(k => {\n contributorsMap[k] = true;\n });\n added.forEach(k => {\n contributorsMap[k] = true;\n });\n removed.forEach(k => {\n delete contributorsMap[k];\n });\n return {\n blockHash,\n contributorsHex: Object.keys(contributorsMap)\n };\n }));\n }\n /**\n * @name contributions\n * @description Retrieves all contributions for a given parachain crowdloan.\n * @param {string | number | BN} paraId The parachain ID for which contributions are being queried.\n * @example\n * ```javascript\n * const contributions = await api.derive.crowdloan.contributions(3369);\n * console.log(\"Contributions:\", contributions);\n * ```\n */\n function contributions(instanceId, api) {\n return (0, index_js_1.memo)(instanceId, paraId => api.derive.crowdloan.childKey(paraId).pipe((0, rxjs_1.switchMap)(childKey => childKey ? _contributions(api, paraId, childKey) : (0, rxjs_1.of)({\n blockHash: '-',\n contributorsHex: []\n }))));\n }\n});","lineCount":101,"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,"contributions"],[7,23,3,21],[7,26,3,24,"contributions"],[7,39,3,37],[8,2,4,0],[8,8,4,6,"rxjs_1"],[8,14,4,12],[8,17,4,15,"require"],[8,24,4,22],[8,25,4,22,"_dependencyMap"],[8,39,4,22],[8,50,4,29],[8,51,4,30],[9,2,5,0],[9,8,5,6,"util_1"],[9,14,5,12],[9,17,5,15,"require"],[9,24,5,22],[9,25,5,22,"_dependencyMap"],[9,39,5,22],[9,60,5,39],[9,61,5,40],[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,8,7,6,"util_js_1"],[11,17,7,15],[11,20,7,18,"require"],[11,27,7,25],[11,28,7,25,"_dependencyMap"],[11,42,7,25],[11,58,7,37],[11,59,7,38],[12,2,8,0],[12,8,8,6,"PAGE_SIZE_K"],[12,19,8,17],[12,22,8,20],[12,26,8,24],[12,27,8,25],[12,28,8,26],[13,2,9,0],[13,11,9,9,"_getUpdates"],[13,22,9,20,"_getUpdates"],[13,23,9,21,"api"],[13,26,9,24],[13,28,9,26,"paraId"],[13,34,9,32],[13,36,9,34],[14,4,10,4],[14,8,10,8,"added"],[14,13,10,13],[14,16,10,16],[14,18,10,18],[15,4,11,4],[15,8,11,8,"removed"],[15,15,11,15],[15,18,11,18],[15,20,11,20],[16,4,12,4],[16,11,12,11,"api"],[16,14,12,14],[16,15,12,15,"query"],[16,20,12,20],[16,21,12,21,"system"],[16,27,12,27],[16,28,12,28,"events"],[16,34,12,34],[16,35,12,35],[16,36,12,36],[16,37,12,37,"pipe"],[16,41,12,41],[16,42,12,42],[16,43,12,43],[16,44,12,44],[16,46,12,46,"rxjs_1"],[16,52,12,52],[16,53,12,53,"switchMap"],[16,62,12,62],[16,64,12,65,"events"],[16,70,12,71],[16,74,12,76],[17,6,13,8],[17,12,13,14,"changes"],[17,19,13,21],[17,22,13,24],[17,23,13,25],[17,24,13,26],[17,26,13,28,"util_js_1"],[17,35,13,37],[17,36,13,38,"extractContributed"],[17,54,13,56],[17,56,13,58,"paraId"],[17,62,13,64],[17,64,13,66,"events"],[17,70,13,72],[17,71,13,73],[18,6,14,8],[18,10,14,12,"changes"],[18,17,14,19],[18,18,14,20,"added"],[18,23,14,25],[18,24,14,26,"length"],[18,30,14,32],[18,34,14,36,"changes"],[18,41,14,43],[18,42,14,44,"removed"],[18,49,14,51],[18,50,14,52,"length"],[18,56,14,58],[18,58,14,60],[19,8,15,12,"added"],[19,13,15,17],[19,16,15,20,"added"],[19,21,15,25],[19,22,15,26,"concat"],[19,28,15,32],[19,29,15,33],[19,32,15,36,"changes"],[19,39,15,43],[19,40,15,44,"added"],[19,45,15,49],[19,46,15,50],[20,8,16,12,"removed"],[20,15,16,19],[20,18,16,22,"removed"],[20,25,16,29],[20,26,16,30,"concat"],[20,32,16,36],[20,33,16,37],[20,36,16,40,"changes"],[20,43,16,47],[20,44,16,48,"removed"],[20,51,16,55],[20,52,16,56],[21,8,17,12],[21,15,17,19],[21,16,17,20],[21,17,17,21],[21,19,17,23,"rxjs_1"],[21,25,17,29],[21,26,17,30,"of"],[21,28,17,32],[21,30,17,34],[22,10,17,36,"added"],[22,15,17,41],[23,10,17,43,"addedDelta"],[23,20,17,53],[23,22,17,55,"changes"],[23,29,17,62],[23,30,17,63,"added"],[23,35,17,68],[24,10,17,70,"blockHash"],[24,19,17,79],[24,21,17,81,"events"],[24,27,17,87],[24,28,17,88,"createdAtHash"],[24,41,17,101],[24,43,17,103,"toHex"],[24,48,17,108],[24,49,17,109],[24,50,17,110],[24,54,17,114],[24,57,17,117],[25,10,17,119,"removed"],[25,17,17,126],[26,10,17,128,"removedDelta"],[26,22,17,140],[26,24,17,142,"changes"],[26,31,17,149],[26,32,17,150,"removed"],[27,8,17,158],[27,9,17,159],[27,10,17,160],[28,6,18,8],[29,6,19,8],[29,13,19,15,"rxjs_1"],[29,19,19,21],[29,20,19,22,"EMPTY"],[29,25,19,27],[30,4,20,4],[30,5,20,5],[30,6,20,6],[30,8,20,8],[30,9,20,9],[30,10,20,10],[30,12,20,12,"rxjs_1"],[30,18,20,18],[30,19,20,19,"startWith"],[30,28,20,28],[30,30,20,30],[31,6,20,32,"added"],[31,11,20,37],[32,6,20,39,"addedDelta"],[32,16,20,49],[32,18,20,51],[32,20,20,53],[33,6,20,55,"blockHash"],[33,15,20,64],[33,17,20,66],[33,20,20,69],[34,6,20,71,"removed"],[34,13,20,78],[35,6,20,80,"removedDelta"],[35,18,20,92],[35,20,20,94],[36,4,20,97],[36,5,20,98],[36,6,20,99],[36,7,20,100],[37,2,21,0],[38,2,22,0],[38,11,22,9,"_eventTriggerAll"],[38,27,22,25,"_eventTriggerAll"],[38,28,22,26,"api"],[38,31,22,29],[38,33,22,31,"paraId"],[38,39,22,37],[38,41,22,39],[39,4,23,4],[39,11,23,11,"api"],[39,14,23,14],[39,15,23,15,"query"],[39,20,23,20],[39,21,23,21,"system"],[39,27,23,27],[39,28,23,28,"events"],[39,34,23,34],[39,35,23,35],[39,36,23,36],[39,37,23,37,"pipe"],[39,41,23,41],[39,42,23,42],[39,43,23,43],[39,44,23,44],[39,46,23,46,"rxjs_1"],[39,52,23,52],[39,53,23,53,"switchMap"],[39,62,23,62],[39,64,23,65,"events"],[39,70,23,71],[39,74,23,76],[40,6,24,8],[40,12,24,14,"items"],[40,17,24,19],[40,20,24,22,"events"],[40,26,24,28],[40,27,24,29,"filter"],[40,33,24,35],[40,34,24,36],[40,35,24,37],[41,8,24,39,"event"],[41,13,24,44],[41,15,24,46],[42,10,24,48,"data"],[42,14,24,52],[42,16,24,54],[42,17,24,55,"eventParaId"],[42,28,24,66],[42,29,24,67],[43,10,24,69,"method"],[43,16,24,75],[44,10,24,77,"section"],[45,8,24,85],[46,6,24,87],[46,7,24,88],[46,12,24,93,"section"],[46,19,24,100],[46,24,24,105],[46,35,24,116],[46,39,25,12],[46,40,25,13],[46,53,25,26],[46,55,25,28],[46,66,25,39],[46,68,25,41],[46,87,25,60],[46,88,25,61],[46,89,25,62,"includes"],[46,97,25,70],[46,98,25,71,"method"],[46,104,25,77],[46,105,25,78],[46,109,26,12,"eventParaId"],[46,120,26,23],[46,121,26,24,"eq"],[46,123,26,26],[46,124,26,27,"paraId"],[46,130,26,33],[46,131,26,34],[46,132,26,35],[47,6,27,8],[47,13,27,15,"items"],[47,18,27,20],[47,19,27,21,"length"],[47,25,27,27],[47,28,28,14],[47,29,28,15],[47,30,28,16],[47,32,28,18,"rxjs_1"],[47,38,28,24],[47,39,28,25,"of"],[47,41,28,27],[47,43,28,29,"events"],[47,49,28,35],[47,50,28,36,"createdAtHash"],[47,63,28,49],[47,65,28,51,"toHex"],[47,70,28,56],[47,71,28,57],[47,72,28,58],[47,76,28,62],[47,79,28,65],[47,80,28,66],[47,83,29,14,"rxjs_1"],[47,89,29,20],[47,90,29,21,"EMPTY"],[47,95,29,26],[48,4,30,4],[48,5,30,5],[48,6,30,6],[48,8,30,8],[48,9,30,9],[48,10,30,10],[48,12,30,12,"rxjs_1"],[48,18,30,18],[48,19,30,19,"startWith"],[48,28,30,28],[48,30,30,30],[48,33,30,33],[48,34,30,34],[48,35,30,35],[49,2,31,0],[50,2,32,0],[50,11,32,9,"_getKeysPaged"],[50,24,32,22,"_getKeysPaged"],[50,25,32,23,"api"],[50,28,32,26],[50,30,32,28,"childKey"],[50,38,32,36],[50,40,32,38],[51,4,33,4],[51,10,33,10,"subject"],[51,17,33,17],[51,20,33,20],[51,24,33,24,"rxjs_1"],[51,30,33,30],[51,31,33,31,"BehaviorSubject"],[51,46,33,46],[51,47,33,47,"undefined"],[51,56,33,56],[51,57,33,57],[52,4,34,4],[52,11,34,11,"subject"],[52,18,34,18],[52,19,34,19,"pipe"],[52,23,34,23],[52,24,34,24],[52,25,34,25],[52,26,34,26],[52,28,34,28,"rxjs_1"],[52,34,34,34],[52,35,34,35,"switchMap"],[52,44,34,44],[52,46,34,47,"startKey"],[52,54,34,55],[52,58,34,60,"api"],[52,61,34,63],[52,62,34,64,"rpc"],[52,65,34,67],[52,66,34,68,"childstate"],[52,76,34,78],[52,77,34,79,"getKeysPaged"],[52,89,34,91],[52,90,34,92,"childKey"],[52,98,34,100],[52,100,34,102],[52,104,34,106],[52,106,34,108,"PAGE_SIZE_K"],[52,117,34,119],[52,119,34,121,"startKey"],[52,127,34,129],[52,128,34,130],[52,129,34,131],[52,131,34,133],[52,132,34,134],[52,133,34,135],[52,135,34,137,"rxjs_1"],[52,141,34,143],[52,142,34,144,"tap"],[52,145,34,147],[52,147,34,150,"keys"],[52,151,34,154],[52,155,34,159],[53,6,35,8],[53,7,35,9],[53,8,35,10],[53,10,35,12,"util_1"],[53,16,35,18],[53,17,35,19,"nextTick"],[53,25,35,27],[53,27,35,29],[53,33,35,35],[54,8,36,12,"keys"],[54,12,36,16],[54,13,36,17,"length"],[54,19,36,23],[54,24,36,28,"PAGE_SIZE_K"],[54,35,36,39],[54,38,37,18,"subject"],[54,45,37,25],[54,46,37,26,"next"],[54,50,37,30],[54,51,37,31,"keys"],[54,55,37,35],[54,56,37,36,"PAGE_SIZE_K"],[54,67,37,47],[54,70,37,50],[54,71,37,51],[54,72,37,52],[54,73,37,53,"toHex"],[54,78,37,58],[54,79,37,59],[54,80,37,60],[54,81,37,61],[54,84,38,18,"subject"],[54,91,38,25],[54,92,38,26,"complete"],[54,100,38,34],[54,101,38,35],[54,102,38,36],[55,6,39,8],[55,7,39,9],[55,8,39,10],[56,4,40,4],[56,5,40,5],[56,6,40,6],[56,8,40,8],[56,9,40,9],[56,10,40,10],[56,12,40,12,"rxjs_1"],[56,18,40,18],[56,19,40,19,"toArray"],[56,26,40,26],[56,28,40,28],[56,29,40,29],[57,4,40,31],[58,4,41,4],[58,5,41,5],[58,6,41,6],[58,8,41,8,"rxjs_1"],[58,14,41,14],[58,15,41,15,"map"],[58,18,41,18],[58,20,41,21,"keyArr"],[58,26,41,27],[58,30,41,32],[58,31,41,33],[58,32,41,34],[58,34,41,36,"util_1"],[58,40,41,42],[58,41,41,43,"arrayFlatten"],[58,53,41,55],[58,55,41,57,"keyArr"],[58,61,41,63],[58,62,41,64],[58,63,41,65],[58,64,41,66],[59,2,42,0],[60,2,43,0],[60,11,43,9,"_getAll"],[60,18,43,16,"_getAll"],[60,19,43,17,"api"],[60,22,43,20],[60,24,43,22,"paraId"],[60,30,43,28],[60,32,43,30,"childKey"],[60,40,43,38],[60,42,43,40],[61,4,44,4],[61,11,44,11,"_eventTriggerAll"],[61,27,44,27],[61,28,44,28,"api"],[61,31,44,31],[61,33,44,33,"paraId"],[61,39,44,39],[61,40,44,40],[61,41,44,41,"pipe"],[61,45,44,45],[61,46,44,46],[61,47,44,47],[61,48,44,48],[61,50,44,50,"rxjs_1"],[61,56,44,56],[61,57,44,57,"switchMap"],[61,66,44,66],[61,68,44,68],[61,74,44,74],[61,75,44,75],[61,76,44,76],[61,78,44,78,"util_1"],[61,84,44,84],[61,85,44,85,"isFunction"],[61,95,44,95],[61,97,44,97,"api"],[61,100,44,100],[61,101,44,101,"rpc"],[61,104,44,104],[61,105,44,105,"childstate"],[61,115,44,115],[61,116,44,116,"getKeysPaged"],[61,128,44,128],[61,129,44,129],[61,132,45,10,"_getKeysPaged"],[61,145,45,23],[61,146,45,24,"api"],[61,149,45,27],[61,151,45,29,"childKey"],[61,159,45,37],[61,160,45,38],[61,163,46,10,"api"],[61,166,46,13],[61,167,46,14,"rpc"],[61,170,46,17],[61,171,46,18,"childstate"],[61,181,46,28],[61,182,46,29,"getKeys"],[61,189,46,36],[61,190,46,37,"childKey"],[61,198,46,45],[61,200,46,47],[61,204,46,51],[61,205,46,52],[61,206,46,53],[61,208,46,55],[61,209,46,56],[61,210,46,57],[61,212,46,59,"rxjs_1"],[61,218,46,65],[61,219,46,66,"map"],[61,222,46,69],[61,224,46,72,"keys"],[61,228,46,76],[61,232,46,81,"keys"],[61,236,46,85],[61,237,46,86,"map"],[61,240,46,89],[61,241,46,91,"k"],[61,242,46,92],[61,246,46,97,"k"],[61,247,46,98],[61,248,46,99,"toHex"],[61,253,46,104],[61,254,46,105],[61,255,46,106],[61,256,46,107],[61,257,46,108],[61,258,46,109],[62,2,47,0],[63,2,48,0],[63,11,48,9,"_contributions"],[63,25,48,23,"_contributions"],[63,26,48,24,"api"],[63,29,48,27],[63,31,48,29,"paraId"],[63,37,48,35],[63,39,48,37,"childKey"],[63,47,48,45],[63,49,48,47],[64,4,49,4],[64,11,49,11],[64,12,49,12],[64,13,49,13],[64,15,49,15,"rxjs_1"],[64,21,49,21],[64,22,49,22,"combineLatest"],[64,35,49,35],[64,37,49,37],[64,38,50,8,"_getAll"],[64,45,50,15],[64,46,50,16,"api"],[64,49,50,19],[64,51,50,21,"paraId"],[64,57,50,27],[64,59,50,29,"childKey"],[64,67,50,37],[64,68,50,38],[64,70,51,8,"_getUpdates"],[64,81,51,19],[64,82,51,20,"api"],[64,85,51,23],[64,87,51,25,"paraId"],[64,93,51,31],[64,94,51,32],[64,95,52,5],[64,96,52,6],[64,97,52,7,"pipe"],[64,101,52,11],[64,102,52,12],[64,103,52,13],[64,104,52,14],[64,106,52,16,"rxjs_1"],[64,112,52,22],[64,113,52,23,"map"],[64,116,52,26],[64,118,52,28],[64,119,52,29],[64,120,52,30,"keys"],[64,124,52,34],[64,126,52,36],[65,6,52,38,"added"],[65,11,52,43],[66,6,52,45,"blockHash"],[66,15,52,54],[67,6,52,56,"removed"],[68,4,52,64],[68,5,52,65],[68,6,52,66],[68,11,52,71],[69,6,53,8],[69,12,53,14,"contributorsMap"],[69,27,53,29],[69,30,53,32],[69,31,53,33],[69,32,53,34],[70,6,54,8,"keys"],[70,10,54,12],[70,11,54,13,"forEach"],[70,18,54,20],[70,19,54,22,"k"],[70,20,54,23],[70,24,54,28],[71,8,55,12,"contributorsMap"],[71,23,55,27],[71,24,55,28,"k"],[71,25,55,29],[71,26,55,30],[71,29,55,33],[71,33,55,37],[72,6,56,8],[72,7,56,9],[72,8,56,10],[73,6,57,8,"added"],[73,11,57,13],[73,12,57,14,"forEach"],[73,19,57,21],[73,20,57,23,"k"],[73,21,57,24],[73,25,57,29],[74,8,58,12,"contributorsMap"],[74,23,58,27],[74,24,58,28,"k"],[74,25,58,29],[74,26,58,30],[74,29,58,33],[74,33,58,37],[75,6,59,8],[75,7,59,9],[75,8,59,10],[76,6,60,8,"removed"],[76,13,60,15],[76,14,60,16,"forEach"],[76,21,60,23],[76,22,60,25,"k"],[76,23,60,26],[76,27,60,31],[77,8,61,12],[77,15,61,19,"contributorsMap"],[77,30,61,34],[77,31,61,35,"k"],[77,32,61,36],[77,33,61,37],[78,6,62,8],[78,7,62,9],[78,8,62,10],[79,6,63,8],[79,13,63,15],[80,8,64,12,"blockHash"],[80,17,64,21],[81,8,65,12,"contributorsHex"],[81,23,65,27],[81,25,65,29,"Object"],[81,31,65,35],[81,32,65,36,"keys"],[81,36,65,40],[81,37,65,41,"contributorsMap"],[81,52,65,56],[82,6,66,8],[82,7,66,9],[83,4,67,4],[83,5,67,5],[83,6,67,6],[83,7,67,7],[84,2,68,0],[85,2,69,0],[86,0,70,0],[87,0,71,0],[88,0,72,0],[89,0,73,0],[90,0,74,0],[91,0,75,0],[92,0,76,0],[93,0,77,0],[94,0,78,0],[95,2,79,0],[95,11,79,9,"contributions"],[95,24,79,22,"contributions"],[95,25,79,23,"instanceId"],[95,35,79,33],[95,37,79,35,"api"],[95,40,79,38],[95,42,79,40],[96,4,80,4],[96,11,80,11],[96,12,80,12],[96,13,80,13],[96,15,80,15,"index_js_1"],[96,25,80,25],[96,26,80,26,"memo"],[96,30,80,30],[96,32,80,32,"instanceId"],[96,42,80,42],[96,44,80,45,"paraId"],[96,50,80,51],[96,54,80,56,"api"],[96,57,80,59],[96,58,80,60,"derive"],[96,64,80,66],[96,65,80,67,"crowdloan"],[96,74,80,76],[96,75,80,77,"childKey"],[96,83,80,85],[96,84,80,86,"paraId"],[96,90,80,92],[96,91,80,93],[96,92,80,94,"pipe"],[96,96,80,98],[96,97,80,99],[96,98,80,100],[96,99,80,101],[96,101,80,103,"rxjs_1"],[96,107,80,109],[96,108,80,110,"switchMap"],[96,117,80,119],[96,119,80,122,"childKey"],[96,127,80,130],[96,131,80,135,"childKey"],[96,139,80,143],[96,142,81,10,"_contributions"],[96,156,81,24],[96,157,81,25,"api"],[96,160,81,28],[96,162,81,30,"paraId"],[96,168,81,36],[96,170,81,38,"childKey"],[96,178,81,46],[96,179,81,47],[96,182,82,10],[96,183,82,11],[96,184,82,12],[96,186,82,14,"rxjs_1"],[96,192,82,20],[96,193,82,21,"of"],[96,195,82,23],[96,197,82,25],[97,6,82,27,"blockHash"],[97,15,82,36],[97,17,82,38],[97,20,82,41],[98,6,82,43,"contributorsHex"],[98,21,82,58],[98,23,82,60],[99,4,82,63],[99,5,82,64],[99,6,82,65],[99,7,82,66],[99,8,82,67],[99,9,82,68],[100,2,83,0],[101,0,83,1],[101,3]],"functionMap":{"names":["<global>","_getUpdates","<anonymous>","_eventTriggerAll","events.filter$argument_0","_getKeysPaged","_getAll","keys.map$argument_0","_contributions","keys.forEach$argument_0","added.forEach$argument_0","removed.forEach$argument_0","contributions"],"mappings":"AAA;ACQ;gECG;KDQ;CDC;AGC;gEDC;oCEC;kCFE;KCI;CHC;AKC;8CHE,oFG,mBH;KGM;oBHC,4CG;CLC;AMC;oEJC;oDIE,mBJ,mBK,gBL,CI;CNC;AQC;4BNI;qBOE;SPE;sBQC;SRE;wBSC;STE;KMK;CRC;AYW;4CVC;mEUE;CZC"},"hasCjsExports":true},"type":"js/module"}]} |