mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 04:11:02 +00:00
auto-commit for 155cdee4-7b20-4acf-ad4d-053760ff258d
This commit is contained in:
+1
File diff suppressed because one or more lines are too long
+1
@@ -0,0 +1 @@
|
||||
{"dependencies":[{"name":"./class.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":37,"index":37}}],"key":"nDWPIJjsQzx+SONQ0T/o5CLrR+Y=","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.isChildClass = isChildClass;\n var _classJs = require(_dependencyMap[0], \"./class.js\");\n /**\n * @name isChildClass\n * @summary Tests if the child extends the parent Class\n * @description\n * Checks to see if the child Class extends the parent Class\n * @example\n * <BR>\n *\n * ```javascript\n * import { isChildClass } from '@polkadot/util';\n *\n * console.log('isChildClass', isChildClass(BN, BN); // => true\n * console.log('isChildClass', isChildClass(BN, Uint8Array); // => false\n * ```\n */\n function isChildClass(Parent, Child) {\n // https://stackoverflow.com/questions/30993434/check-if-a-constructor-inherits-another-in-es6/30993664\n return (0, _classJs.isClass)(Child) && (0, _classJs.isClass)(Parent)\n // eslint-disable-next-line no-prototype-builtins\n ? Parent === Child || Parent.isPrototypeOf(Child) : false;\n }\n});","lineCount":30,"map":[[7,2,17,0,"exports"],[7,9,17,0],[7,10,17,0,"isChildClass"],[7,22,17,0],[7,25,17,0,"isChildClass"],[7,37,17,0],[8,2,1,0],[8,6,1,0,"_classJs"],[8,14,1,0],[8,17,1,0,"require"],[8,24,1,0],[8,25,1,0,"_dependencyMap"],[8,39,1,0],[9,2,2,0],[10,0,3,0],[11,0,4,0],[12,0,5,0],[13,0,6,0],[14,0,7,0],[15,0,8,0],[16,0,9,0],[17,0,10,0],[18,0,11,0],[19,0,12,0],[20,0,13,0],[21,0,14,0],[22,0,15,0],[23,0,16,0],[24,2,17,7],[24,11,17,16,"isChildClass"],[24,23,17,28,"isChildClass"],[24,24,17,29,"Parent"],[24,30,17,35],[24,32,17,37,"Child"],[24,37,17,42],[24,39,17,44],[25,4,18,4],[26,4,19,4],[26,11,19,11],[26,15,19,11,"isClass"],[26,23,19,18],[26,24,19,18,"isClass"],[26,31,19,18],[26,33,19,19,"Child"],[26,38,19,24],[26,39,19,25],[26,43,19,29],[26,47,19,29,"isClass"],[26,55,19,36],[26,56,19,36,"isClass"],[26,63,19,36],[26,65,19,37,"Parent"],[26,71,19,43],[27,4,20,8],[28,4,20,8],[28,6,21,10,"Parent"],[28,12,21,16],[28,17,21,21,"Child"],[28,22,21,26],[28,26,21,30,"Parent"],[28,32,21,36],[28,33,21,37,"isPrototypeOf"],[28,46,21,50],[28,47,21,51,"Child"],[28,52,21,56],[28,53,21,57],[28,56,22,10],[28,61,22,15],[29,2,23,0],[30,0,23,1],[30,3]],"functionMap":{"names":["<global>","isChildClass"],"mappings":"AAA;OCgB;CDM"},"hasCjsExports":false},"type":"js/module"}]}
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"dependencies":[{"name":"rxjs","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":41,"index":41}}],"key":"PnOMrhZAPWoeW3ygrvUJ7ff768Y=","exportNames":["*"],"imports":1}},{"name":"../util/index.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":42},"end":{"line":2,"column":40,"index":82}}],"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 exports.votingBalances = votingBalances;\n var _rxjs = require(_dependencyMap[0], \"rxjs\");\n var _utilIndexJs = require(_dependencyMap[1], \"../util/index.js\");\n /**\n * @name votingBalances\n * @description Retrieves the balance information for multiple accounts, typically used in governance-related contexts to check voting power.\n * @param {(AccountId | AccountIndex | Address | string)[]} addresses An array of account identifiers.\n * @example\n * ```javascript\n * const addresses = [\"5D4b...Zf1\", \"5HGj...yrV\"];\n * const balances = await api.derive.balances.votingBalances(addresses);\n * console.log(\"Voting Balances:\", balances);\n * ```\n */\n function votingBalances(instanceId, api) {\n return (0, _utilIndexJs.memo)(instanceId, addresses => !addresses?.length ? (0, _rxjs.of)([]) : (0, _rxjs.combineLatest)(addresses.map(accountId => api.derive.balances.account(accountId))));\n }\n});","lineCount":24,"map":[[7,2,14,0,"exports"],[7,9,14,0],[7,10,14,0,"votingBalances"],[7,24,14,0],[7,27,14,0,"votingBalances"],[7,41,14,0],[8,2,1,0],[8,6,1,0,"_rxjs"],[8,11,1,0],[8,14,1,0,"require"],[8,21,1,0],[8,22,1,0,"_dependencyMap"],[8,36,1,0],[9,2,2,0],[9,6,2,0,"_utilIndexJs"],[9,18,2,0],[9,21,2,0,"require"],[9,28,2,0],[9,29,2,0,"_dependencyMap"],[9,43,2,0],[10,2,3,0],[11,0,4,0],[12,0,5,0],[13,0,6,0],[14,0,7,0],[15,0,8,0],[16,0,9,0],[17,0,10,0],[18,0,11,0],[19,0,12,0],[20,0,13,0],[21,2,14,7],[21,11,14,16,"votingBalances"],[21,25,14,30,"votingBalances"],[21,26,14,31,"instanceId"],[21,36,14,41],[21,38,14,43,"api"],[21,41,14,46],[21,43,14,48],[22,4,15,4],[22,11,15,11],[22,15,15,11,"memo"],[22,27,15,15],[22,28,15,15,"memo"],[22,32,15,15],[22,34,15,16,"instanceId"],[22,44,15,26],[22,46,15,29,"addresses"],[22,55,15,38],[22,59,15,43],[22,60,15,44,"addresses"],[22,69,15,53],[22,71,15,55,"length"],[22,77,15,61],[22,80,16,10],[22,84,16,10,"of"],[22,89,16,12],[22,90,16,12,"of"],[22,92,16,12],[22,94,16,13],[22,96,16,15],[22,97,16,16],[22,100,17,10],[22,104,17,10,"combineLatest"],[22,109,17,23],[22,110,17,23,"combineLatest"],[22,123,17,23],[22,125,17,24,"addresses"],[22,134,17,33],[22,135,17,34,"map"],[22,138,17,37],[22,139,17,39,"accountId"],[22,148,17,48],[22,152,17,53,"api"],[22,155,17,56],[22,156,17,57,"derive"],[22,162,17,63],[22,163,17,64,"balances"],[22,171,17,72],[22,172,17,73,"account"],[22,179,17,80],[22,180,17,81,"accountId"],[22,189,17,90],[22,190,17,91],[22,191,17,92],[22,192,17,93],[22,193,17,94],[23,2,18,0],[24,0,18,1],[24,3]],"functionMap":{"names":["<global>","votingBalances","memo$argument_1","addresses.map$argument_0"],"mappings":"AAA;OCa;4BCC;sCCE,qDD,ED;CDC"},"hasCjsExports":false},"type":"js/module"}]}
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"dependencies":[{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":15},"end":{"line":3,"column":31,"index":46}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"],"imports":1}},{"name":"./PreventRemoveContext.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":47},"end":{"line":4,"column":65,"index":112}}],"key":"gocprUc09OHt9JxWdj0Uy4jHmps=","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 function _interopNamespace(e) {\n if (e && e.__esModule) return e;\n var n = {};\n if (e) Object.keys(e).forEach(function (k) {\n var d = Object.getOwnPropertyDescriptor(e, k);\n Object.defineProperty(n, k, d.get ? d : {\n enumerable: true,\n get: function () {\n return e[k];\n }\n });\n });\n n.default = e;\n return n;\n }\n exports.usePreventRemoveContext = usePreventRemoveContext;\n var _react = require(_dependencyMap[0], \"react\");\n var React = _interopNamespace(_react);\n var _PreventRemoveContextJs = require(_dependencyMap[1], \"./PreventRemoveContext.js\");\n function usePreventRemoveContext() {\n const value = React.useContext(_PreventRemoveContextJs.PreventRemoveContext);\n if (value == null) {\n throw new Error(\"Couldn't find the prevent remove context. Is your component inside NavigationContent?\");\n }\n return value;\n }\n});","lineCount":33,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13,"Object"],[4,8,1,13],[4,9,1,13,"defineProperty"],[4,23,1,13],[4,24,1,13,"exports"],[4,31,1,13],[5,4,1,13,"value"],[5,9,1,13],[6,2,1,13],[7,2,1,13],[7,11,1,13,"_interopNamespace"],[7,29,1,13,"e"],[7,30,1,13],[8,4,1,13],[8,8,1,13,"e"],[8,9,1,13],[8,13,1,13,"e"],[8,14,1,13],[8,15,1,13,"__esModule"],[8,25,1,13],[8,34,1,13,"e"],[8,35,1,13],[9,4,1,13],[9,8,1,13,"n"],[9,9,1,13],[10,4,1,13],[10,8,1,13,"e"],[10,9,1,13],[10,11,1,13,"Object"],[10,17,1,13],[10,18,1,13,"keys"],[10,22,1,13],[10,23,1,13,"e"],[10,24,1,13],[10,26,1,13,"forEach"],[10,33,1,13],[10,44,1,13,"k"],[10,45,1,13],[11,6,1,13],[11,10,1,13,"d"],[11,11,1,13],[11,14,1,13,"Object"],[11,20,1,13],[11,21,1,13,"getOwnPropertyDescriptor"],[11,45,1,13],[11,46,1,13,"e"],[11,47,1,13],[11,49,1,13,"k"],[11,50,1,13],[12,6,1,13,"Object"],[12,12,1,13],[12,13,1,13,"defineProperty"],[12,27,1,13],[12,28,1,13,"n"],[12,29,1,13],[12,31,1,13,"k"],[12,32,1,13],[12,34,1,13,"d"],[12,35,1,13],[12,36,1,13,"get"],[12,39,1,13],[12,42,1,13,"d"],[12,43,1,13],[13,8,1,13,"enumerable"],[13,18,1,13],[14,8,1,13,"get"],[14,11,1,13],[14,22,1,13,"get"],[14,23,1,13],[15,10,1,13],[15,17,1,13,"e"],[15,18,1,13],[15,19,1,13,"k"],[15,20,1,13],[16,8,1,13],[17,6,1,13],[18,4,1,13],[19,4,1,13,"n"],[19,5,1,13],[19,6,1,13,"default"],[19,13,1,13],[19,16,1,13,"e"],[19,17,1,13],[20,4,1,13],[20,11,1,13,"n"],[20,12,1,13],[21,2,1,13],[22,2,5,0,"exports"],[22,9,5,0],[22,10,5,0,"usePreventRemoveContext"],[22,33,5,0],[22,36,5,0,"usePreventRemoveContext"],[22,59,5,0],[23,2,3,0],[23,6,3,0,"_react"],[23,12,3,0],[23,15,3,0,"require"],[23,22,3,0],[23,23,3,0,"_dependencyMap"],[23,37,3,0],[24,2,3,0],[24,6,3,0,"React"],[24,11,3,0],[24,14,3,0,"_interopNamespace"],[24,31,3,0],[24,32,3,0,"_react"],[24,38,3,0],[25,2,4,0],[25,6,4,0,"_PreventRemoveContextJs"],[25,29,4,0],[25,32,4,0,"require"],[25,39,4,0],[25,40,4,0,"_dependencyMap"],[25,54,4,0],[26,2,5,7],[26,11,5,16,"usePreventRemoveContext"],[26,34,5,39,"usePreventRemoveContext"],[26,35,5,39],[26,37,5,42],[27,4,6,2],[27,10,6,8,"value"],[27,15,6,13],[27,18,6,16,"React"],[27,23,6,21],[27,24,6,22,"useContext"],[27,34,6,32],[27,35,6,33,"PreventRemoveContext"],[27,58,6,53],[27,59,6,53,"PreventRemoveContext"],[27,79,6,53],[27,80,6,54],[28,4,7,2],[28,8,7,6,"value"],[28,13,7,11],[28,17,7,15],[28,21,7,19],[28,23,7,21],[29,6,8,4],[29,12,8,10],[29,16,8,14,"Error"],[29,21,8,19],[29,22,8,20],[29,109,8,107],[29,110,8,108],[30,4,9,2],[31,4,10,2],[31,11,10,9,"value"],[31,16,10,14],[32,2,11,0],[33,0,11,1],[33,3]],"functionMap":{"names":["<global>","usePreventRemoveContext"],"mappings":"AAA;OCI;CDM"},"hasCjsExports":false},"type":"js/module"}]}
|
||||
+1
File diff suppressed because one or more lines are too long
+1
File diff suppressed because one or more lines are too long
+1
@@ -0,0 +1 @@
|
||||
{"dependencies":[{"name":"tslib","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":34,"index":34}}],"key":"8R25577gwLd3n1hFG9VYnRLV9eE=","exportNames":["*"],"imports":1}},{"name":"../Subscription","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":35},"end":{"line":2,"column":47,"index":82}}],"key":"vTbFs/H3GAmbje8AWPORaP4vWKE=","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, \"Action\", {\n enumerable: true,\n get: function () {\n return Action;\n }\n });\n var _tslib = require(_dependencyMap[0], \"tslib\");\n var _Subscription = require(_dependencyMap[1], \"../Subscription\");\n var Action = function (_super) {\n (0, _tslib.__extends)(Action, _super);\n function Action(scheduler, work) {\n return _super.call(this) || this;\n }\n Action.prototype.schedule = function (state, delay) {\n if (delay === void 0) {\n delay = 0;\n }\n return this;\n };\n return Action;\n }(_Subscription.Subscription);\n});","lineCount":28,"map":[[7,2,14,0,"Object"],[7,8,14,0],[7,9,14,0,"defineProperty"],[7,23,14,0],[7,24,14,0,"exports"],[7,31,14,0],[8,4,14,0,"enumerable"],[8,14,14,0],[9,4,14,0,"get"],[9,7,14,0],[9,18,14,0,"get"],[9,19,14,0],[10,6,14,0],[10,13,14,9,"Action"],[10,19,14,15],[11,4,14,15],[12,2,14,15],[13,2,1,0],[13,6,1,0,"_tslib"],[13,12,1,0],[13,15,1,0,"require"],[13,22,1,0],[13,23,1,0,"_dependencyMap"],[13,37,1,0],[14,2,2,0],[14,6,2,0,"_Subscription"],[14,19,2,0],[14,22,2,0,"require"],[14,29,2,0],[14,30,2,0,"_dependencyMap"],[14,44,2,0],[15,2,3,0],[15,6,3,4,"Action"],[15,12,3,10],[15,15,3,14],[15,25,3,24,"_super"],[15,31,3,30],[15,33,3,32],[16,4,4,4],[16,8,4,4,"__extends"],[16,14,4,13],[16,15,4,13,"__extends"],[16,24,4,13],[16,26,4,14,"Action"],[16,32,4,20],[16,34,4,22,"_super"],[16,40,4,28],[16,41,4,29],[17,4,5,4],[17,13,5,13,"Action"],[17,19,5,19,"Action"],[17,20,5,20,"scheduler"],[17,29,5,29],[17,31,5,31,"work"],[17,35,5,35],[17,37,5,37],[18,6,6,8],[18,13,6,15,"_super"],[18,19,6,21],[18,20,6,22,"call"],[18,24,6,26],[18,25,6,27],[18,29,6,31],[18,30,6,32],[18,34,6,36],[18,38,6,40],[19,4,7,4],[20,4,8,4,"Action"],[20,10,8,10],[20,11,8,11,"prototype"],[20,20,8,20],[20,21,8,21,"schedule"],[20,29,8,29],[20,32,8,32],[20,42,8,42,"state"],[20,47,8,47],[20,49,8,49,"delay"],[20,54,8,54],[20,56,8,56],[21,6,9,8],[21,10,9,12,"delay"],[21,15,9,17],[21,20,9,22],[21,25,9,27],[21,26,9,28],[21,28,9,30],[22,8,9,32,"delay"],[22,13,9,37],[22,16,9,40],[22,17,9,41],[23,6,9,43],[24,6,10,8],[24,13,10,15],[24,17,10,19],[25,4,11,4],[25,5,11,5],[26,4,12,4],[26,11,12,11,"Action"],[26,17,12,17],[27,2,13,0],[27,3,13,1],[27,4,13,2,"Subscription"],[27,17,13,14],[27,18,13,14,"Subscription"],[27,30,13,14],[27,31,13,16],[28,0,13,17],[28,3]],"functionMap":{"names":["<global>","<anonymous>","Action","prototype.schedule"],"mappings":"AAA;cCE;ICE;KDE;gCEC;KFG;CDE"},"hasCjsExports":false},"type":"js/module"}]}
|
||||
+1
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user