mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 03:01:04 +00:00
1 line
17 KiB
Plaintext
1 line
17 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/classCallCheck","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"yg7e6laZwmpbIvId5jovq9ugXp8=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/createClass","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"Z6pzkVZ2fvxBLkFTgVVOy4UDj30=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/callSuper","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"378KbBHdmndC3iMXZ2Ix8oB3LeE=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/superPropGet","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"b4Lel0pEiTM8mvZZX/d05uR+OmU=","exportNames":["*"],"imports":1}},{"name":"@babel/runtime/helpers/inherits","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"y0uNg4LxF1CLscQChxzgo5dfjvA=","exportNames":["*"],"imports":1}},{"name":"@polkadot/types-codec","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":22,"index":163},"end":{"line":4,"column":54,"index":195}}],"key":"fW1yxuTjZe66ggmM4ihNuGjKSV0=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":15,"index":212},"end":{"line":5,"column":40,"index":237}}],"key":"u0mzEw2nilnHoUWtEdZl0JKHutA=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util-crypto","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":22,"index":261},"end":{"line":6,"column":54,"index":293}}],"key":"ZJJnwX+B+oj5JQmnkWFMF+4Lj2M=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var _classCallCheck = require(_dependencyMap[0], \"@babel/runtime/helpers/classCallCheck\").default;\n var _createClass = require(_dependencyMap[1], \"@babel/runtime/helpers/createClass\").default;\n var _callSuper = require(_dependencyMap[2], \"@babel/runtime/helpers/callSuper\").default;\n var _superPropGet = require(_dependencyMap[3], \"@babel/runtime/helpers/superPropGet\").default;\n var _inherits = require(_dependencyMap[4], \"@babel/runtime/helpers/inherits\").default;\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.GenericAccountId33 = exports.GenericAccountId = void 0;\n var types_codec_1 = require(_dependencyMap[5], \"@polkadot/types-codec\");\n var util_1 = require(_dependencyMap[6], \"@polkadot/util\");\n var util_crypto_1 = require(_dependencyMap[7], \"@polkadot/util-crypto\");\n /** @internal */\n function decodeAccountId(value) {\n if ((0, util_1.isU8a)(value) || Array.isArray(value)) {\n return (0, util_1.u8aToU8a)(value);\n } else if (!value) {\n return new Uint8Array();\n } else if ((0, util_1.isHex)(value)) {\n return (0, util_1.hexToU8a)(value);\n } else if ((0, util_1.isString)(value)) {\n return (0, util_crypto_1.decodeAddress)(value.toString());\n }\n throw new Error(`Unknown type passed to AccountId constructor, found typeof ${typeof value}`);\n }\n var BaseAccountId = /*#__PURE__*/function (_types_codec_1$U8aFix) {\n function BaseAccountId(registry) {\n var allowedBits = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 256 | 264;\n var value = arguments.length > 2 ? arguments[2] : undefined;\n _classCallCheck(this, BaseAccountId);\n var decoded = decodeAccountId(value);\n var decodedBits = decoded.length * 8;\n // Part of stream containing >= 32 bytes or a all empty (defaults)\n if (decodedBits < allowedBits && decoded.some(b => b)) {\n throw new Error(`Invalid AccountId provided, expected ${allowedBits >> 3} bytes, found ${decoded.length}`);\n }\n return _callSuper(this, BaseAccountId, [registry, decoded, allowedBits]);\n }\n /**\n * @description Compares the value of the input to see if there is a match\n */\n _inherits(BaseAccountId, _types_codec_1$U8aFix);\n return _createClass(BaseAccountId, [{\n key: \"eq\",\n value: function eq(other) {\n return _superPropGet(BaseAccountId, \"eq\", this, 3)([decodeAccountId(other)]);\n }\n /**\n * @description Converts the Object to to a human-friendly JSON, with additional fields, expansion and formatting of information\n */\n }, {\n key: \"toHuman\",\n value: function toHuman() {\n return this.toJSON();\n }\n /**\n * @description Converts the Object to JSON, typically used for RPC transfers\n */\n }, {\n key: \"toJSON\",\n value: function toJSON() {\n return this.toString();\n }\n /**\n * @description Converts the value in a best-fit primitive form\n */\n }, {\n key: \"toPrimitive\",\n value: function toPrimitive() {\n return this.toJSON();\n }\n /**\n * @description Returns the string representation of the value\n */\n }, {\n key: \"toString\",\n value: function toString() {\n return (0, util_crypto_1.encodeAddress)(this, this.registry.chainSS58);\n }\n /**\n * @description Returns the base runtime type name for this instance\n */\n }, {\n key: \"toRawType\",\n value: function toRawType() {\n return 'AccountId';\n }\n }]);\n }(types_codec_1.U8aFixed);\n /**\n * @name GenericAccountId\n * @description\n * A wrapper around an AccountId/PublicKey representation. Since we are dealing with\n * underlying PublicKeys (32 bytes in length), we extend from U8aFixed which is\n * just a Uint8Array wrapper with a fixed length.\n * If constructed with an empty value ([], \"\", undefined) it will result in\n * the zero account 0x000...000.\n */\n var GenericAccountId = /*#__PURE__*/function (_BaseAccountId) {\n function GenericAccountId(registry, value) {\n _classCallCheck(this, GenericAccountId);\n return _callSuper(this, GenericAccountId, [registry, 256, value]);\n }\n _inherits(GenericAccountId, _BaseAccountId);\n return _createClass(GenericAccountId);\n }(BaseAccountId);\n exports.GenericAccountId = GenericAccountId;\n var GenericAccountId33 = /*#__PURE__*/function (_BaseAccountId2) {\n function GenericAccountId33(registry, value) {\n _classCallCheck(this, GenericAccountId33);\n return _callSuper(this, GenericAccountId33, [registry, 264, value]);\n }\n _inherits(GenericAccountId33, _BaseAccountId2);\n return _createClass(GenericAccountId33);\n }(BaseAccountId);\n exports.GenericAccountId33 = GenericAccountId33;\n});","lineCount":120,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13],[4,6,1,13,"_classCallCheck"],[4,21,1,13],[4,24,1,13,"require"],[4,31,1,13],[4,32,1,13,"_dependencyMap"],[4,46,1,13],[4,92,1,13,"default"],[4,99,1,13],[5,2,1,13],[5,6,1,13,"_createClass"],[5,18,1,13],[5,21,1,13,"require"],[5,28,1,13],[5,29,1,13,"_dependencyMap"],[5,43,1,13],[5,86,1,13,"default"],[5,93,1,13],[6,2,1,13],[6,6,1,13,"_callSuper"],[6,16,1,13],[6,19,1,13,"require"],[6,26,1,13],[6,27,1,13,"_dependencyMap"],[6,41,1,13],[6,82,1,13,"default"],[6,89,1,13],[7,2,1,13],[7,6,1,13,"_superPropGet"],[7,19,1,13],[7,22,1,13,"require"],[7,29,1,13],[7,30,1,13,"_dependencyMap"],[7,44,1,13],[7,88,1,13,"default"],[7,95,1,13],[8,2,1,13],[8,6,1,13,"_inherits"],[8,15,1,13],[8,18,1,13,"require"],[8,25,1,13],[8,26,1,13,"_dependencyMap"],[8,40,1,13],[8,80,1,13,"default"],[8,87,1,13],[9,2,2,0,"Object"],[9,8,2,6],[9,9,2,7,"defineProperty"],[9,23,2,21],[9,24,2,22,"exports"],[9,31,2,29],[9,33,2,31],[9,45,2,43],[9,47,2,45],[10,4,2,47,"value"],[10,9,2,52],[10,11,2,54],[11,2,2,59],[11,3,2,60],[11,4,2,61],[12,2,3,0,"exports"],[12,9,3,7],[12,10,3,8,"GenericAccountId33"],[12,28,3,26],[12,31,3,29,"exports"],[12,38,3,36],[12,39,3,37,"GenericAccountId"],[12,55,3,53],[12,58,3,56],[12,63,3,61],[12,64,3,62],[13,2,4,0],[13,6,4,6,"types_codec_1"],[13,19,4,19],[13,22,4,22,"require"],[13,29,4,29],[13,30,4,29,"_dependencyMap"],[13,44,4,29],[13,72,4,53],[13,73,4,54],[14,2,5,0],[14,6,5,6,"util_1"],[14,12,5,12],[14,15,5,15,"require"],[14,22,5,22],[14,23,5,22,"_dependencyMap"],[14,37,5,22],[14,58,5,39],[14,59,5,40],[15,2,6,0],[15,6,6,6,"util_crypto_1"],[15,19,6,19],[15,22,6,22,"require"],[15,29,6,29],[15,30,6,29,"_dependencyMap"],[15,44,6,29],[15,72,6,53],[15,73,6,54],[16,2,7,0],[17,2,8,0],[17,11,8,9,"decodeAccountId"],[17,26,8,24,"decodeAccountId"],[17,27,8,25,"value"],[17,32,8,30],[17,34,8,32],[18,4,9,4],[18,8,9,8],[18,9,9,9],[18,10,9,10],[18,12,9,12,"util_1"],[18,18,9,18],[18,19,9,19,"isU8a"],[18,24,9,24],[18,26,9,26,"value"],[18,31,9,31],[18,32,9,32],[18,36,9,36,"Array"],[18,41,9,41],[18,42,9,42,"isArray"],[18,49,9,49],[18,50,9,50,"value"],[18,55,9,55],[18,56,9,56],[18,58,9,58],[19,6,10,8],[19,13,10,15],[19,14,10,16],[19,15,10,17],[19,17,10,19,"util_1"],[19,23,10,25],[19,24,10,26,"u8aToU8a"],[19,32,10,34],[19,34,10,36,"value"],[19,39,10,41],[19,40,10,42],[20,4,11,4],[20,5,11,5],[20,11,12,9],[20,15,12,13],[20,16,12,14,"value"],[20,21,12,19],[20,23,12,21],[21,6,13,8],[21,13,13,15],[21,17,13,19,"Uint8Array"],[21,27,13,29],[21,28,13,30],[21,29,13,31],[22,4,14,4],[22,5,14,5],[22,11,15,9],[22,15,15,13],[22,16,15,14],[22,17,15,15],[22,19,15,17,"util_1"],[22,25,15,23],[22,26,15,24,"isHex"],[22,31,15,29],[22,33,15,31,"value"],[22,38,15,36],[22,39,15,37],[22,41,15,39],[23,6,16,8],[23,13,16,15],[23,14,16,16],[23,15,16,17],[23,17,16,19,"util_1"],[23,23,16,25],[23,24,16,26,"hexToU8a"],[23,32,16,34],[23,34,16,36,"value"],[23,39,16,41],[23,40,16,42],[24,4,17,4],[24,5,17,5],[24,11,18,9],[24,15,18,13],[24,16,18,14],[24,17,18,15],[24,19,18,17,"util_1"],[24,25,18,23],[24,26,18,24,"isString"],[24,34,18,32],[24,36,18,34,"value"],[24,41,18,39],[24,42,18,40],[24,44,18,42],[25,6,19,8],[25,13,19,15],[25,14,19,16],[25,15,19,17],[25,17,19,19,"util_crypto_1"],[25,30,19,32],[25,31,19,33,"decodeAddress"],[25,44,19,46],[25,46,19,48,"value"],[25,51,19,53],[25,52,19,54,"toString"],[25,60,19,62],[25,61,19,63],[25,62,19,64],[25,63,19,65],[26,4,20,4],[27,4,21,4],[27,10,21,10],[27,14,21,14,"Error"],[27,19,21,19],[27,20,21,20],[27,82,21,82],[27,89,21,89,"value"],[27,94,21,94],[27,96,21,96],[27,97,21,97],[28,2,22,0],[29,2,22,1],[29,6,23,6,"BaseAccountId"],[29,19,23,19],[29,45,23,19,"_types_codec_1$U8aFix"],[29,66,23,19],[30,4,24,4],[30,13,24,4,"BaseAccountId"],[30,27,24,16,"registry"],[30,35,24,24],[30,37,24,58],[31,6,24,58],[31,10,24,26,"allowedBits"],[31,21,24,37],[31,24,24,37,"arguments"],[31,33,24,37],[31,34,24,37,"length"],[31,40,24,37],[31,48,24,37,"arguments"],[31,57,24,37],[31,65,24,37,"undefined"],[31,74,24,37],[31,77,24,37,"arguments"],[31,86,24,37],[31,92,24,40],[31,95,24,43],[31,98,24,46],[31,101,24,49],[32,6,24,49],[32,10,24,51,"value"],[32,15,24,56],[32,18,24,56,"arguments"],[32,27,24,56],[32,28,24,56,"length"],[32,34,24,56],[32,41,24,56,"arguments"],[32,50,24,56],[32,56,24,56,"undefined"],[32,65,24,56],[33,6,24,56,"_classCallCheck"],[33,21,24,56],[33,28,24,56,"BaseAccountId"],[33,41,24,56],[34,6,25,8],[34,10,25,14,"decoded"],[34,17,25,21],[34,20,25,24,"decodeAccountId"],[34,35,25,39],[34,36,25,40,"value"],[34,41,25,45],[34,42,25,46],[35,6,26,8],[35,10,26,14,"decodedBits"],[35,21,26,25],[35,24,26,28,"decoded"],[35,31,26,35],[35,32,26,36,"length"],[35,38,26,42],[35,41,26,45],[35,42,26,46],[36,6,27,8],[37,6,28,8],[37,10,28,12,"decodedBits"],[37,21,28,23],[37,24,28,26,"allowedBits"],[37,35,28,37],[37,39,28,41,"decoded"],[37,46,28,48],[37,47,28,49,"some"],[37,51,28,53],[37,52,28,55,"b"],[37,53,28,56],[37,57,28,61,"b"],[37,58,28,62],[37,59,28,63],[37,61,28,65],[38,8,29,12],[38,14,29,18],[38,18,29,22,"Error"],[38,23,29,27],[38,24,29,28],[38,64,29,68,"allowedBits"],[38,75,29,79],[38,79,29,83],[38,80,29,84],[38,97,29,101,"decoded"],[38,104,29,108],[38,105,29,109,"length"],[38,111,29,115],[38,113,29,117],[38,114,29,118],[39,6,30,8],[40,6,30,9],[40,13,30,9,"_callSuper"],[40,23,30,9],[40,30,30,9,"BaseAccountId"],[40,43,30,9],[40,46,31,14,"registry"],[40,54,31,22],[40,56,31,24,"decoded"],[40,63,31,31],[40,65,31,33,"allowedBits"],[40,76,31,44],[41,4,32,4],[42,4,33,4],[43,0,34,0],[44,0,35,0],[45,4,33,4,"_inherits"],[45,13,33,4],[45,14,33,4,"BaseAccountId"],[45,27,33,4],[45,29,33,4,"_types_codec_1$U8aFix"],[45,50,33,4],[46,4,33,4],[46,11,33,4,"_createClass"],[46,23,33,4],[46,24,33,4,"BaseAccountId"],[46,37,33,4],[47,6,33,4,"key"],[47,9,33,4],[48,6,33,4,"value"],[48,11,33,4],[48,13,36,4],[48,22,36,4,"eq"],[48,24,36,6,"eq"],[48,25,36,7,"other"],[48,30,36,12],[48,32,36,14],[49,8,37,8],[49,15,37,8,"_superPropGet"],[49,28,37,8],[49,29,37,8,"BaseAccountId"],[49,42,37,8],[49,60,37,24,"decodeAccountId"],[49,75,37,39],[49,76,37,40,"other"],[49,81,37,45],[49,82,37,46],[50,6,38,4],[51,6,39,4],[52,0,40,0],[53,0,41,0],[54,4,39,4],[55,6,39,4,"key"],[55,9,39,4],[56,6,39,4,"value"],[56,11,39,4],[56,13,42,4],[56,22,42,4,"toHuman"],[56,29,42,11,"toHuman"],[56,30,42,11],[56,32,42,14],[57,8,43,8],[57,15,43,15],[57,19,43,19],[57,20,43,20,"toJSON"],[57,26,43,26],[57,27,43,27],[57,28,43,28],[58,6,44,4],[59,6,45,4],[60,0,46,0],[61,0,47,0],[62,4,45,4],[63,6,45,4,"key"],[63,9,45,4],[64,6,45,4,"value"],[64,11,45,4],[64,13,48,4],[64,22,48,4,"toJSON"],[64,28,48,10,"toJSON"],[64,29,48,10],[64,31,48,13],[65,8,49,8],[65,15,49,15],[65,19,49,19],[65,20,49,20,"toString"],[65,28,49,28],[65,29,49,29],[65,30,49,30],[66,6,50,4],[67,6,51,4],[68,0,52,0],[69,0,53,0],[70,4,51,4],[71,6,51,4,"key"],[71,9,51,4],[72,6,51,4,"value"],[72,11,51,4],[72,13,54,4],[72,22,54,4,"toPrimitive"],[72,33,54,15,"toPrimitive"],[72,34,54,15],[72,36,54,18],[73,8,55,8],[73,15,55,15],[73,19,55,19],[73,20,55,20,"toJSON"],[73,26,55,26],[73,27,55,27],[73,28,55,28],[74,6,56,4],[75,6,57,4],[76,0,58,0],[77,0,59,0],[78,4,57,4],[79,6,57,4,"key"],[79,9,57,4],[80,6,57,4,"value"],[80,11,57,4],[80,13,60,4],[80,22,60,4,"toString"],[80,30,60,12,"toString"],[80,31,60,12],[80,33,60,15],[81,8,61,8],[81,15,61,15],[81,16,61,16],[81,17,61,17],[81,19,61,19,"util_crypto_1"],[81,32,61,32],[81,33,61,33,"encodeAddress"],[81,46,61,46],[81,48,61,48],[81,52,61,52],[81,54,61,54],[81,58,61,58],[81,59,61,59,"registry"],[81,67,61,67],[81,68,61,68,"chainSS58"],[81,77,61,77],[81,78,61,78],[82,6,62,4],[83,6,63,4],[84,0,64,0],[85,0,65,0],[86,4,63,4],[87,6,63,4,"key"],[87,9,63,4],[88,6,63,4,"value"],[88,11,63,4],[88,13,66,4],[88,22,66,4,"toRawType"],[88,31,66,13,"toRawType"],[88,32,66,13],[88,34,66,16],[89,8,67,8],[89,15,67,15],[89,26,67,26],[90,6,68,4],[91,4,68,5],[92,2,68,5],[92,4,23,28,"types_codec_1"],[92,17,23,41],[92,18,23,42,"U8aFixed"],[92,26,23,50],[93,2,70,0],[94,0,71,0],[95,0,72,0],[96,0,73,0],[97,0,74,0],[98,0,75,0],[99,0,76,0],[100,0,77,0],[101,0,78,0],[102,2,70,0],[102,6,79,6,"GenericAccountId"],[102,22,79,22],[102,48,79,22,"_BaseAccountId"],[102,62,79,22],[103,4,80,4],[103,13,80,4,"GenericAccountId"],[103,30,80,16,"registry"],[103,38,80,24],[103,40,80,26,"value"],[103,45,80,31],[103,47,80,33],[104,6,80,33,"_classCallCheck"],[104,21,80,33],[104,28,80,33,"GenericAccountId"],[104,44,80,33],[105,6,80,33],[105,13,80,33,"_callSuper"],[105,23,80,33],[105,30,80,33,"GenericAccountId"],[105,46,80,33],[105,49,81,14,"registry"],[105,57,81,22],[105,59,81,24],[105,62,81,27],[105,64,81,29,"value"],[105,69,81,34],[106,4,82,4],[107,4,82,5,"_inherits"],[107,13,82,5],[107,14,82,5,"GenericAccountId"],[107,30,82,5],[107,32,82,5,"_BaseAccountId"],[107,46,82,5],[108,4,82,5],[108,11,82,5,"_createClass"],[108,23,82,5],[108,24,82,5,"GenericAccountId"],[108,40,82,5],[109,2,82,5],[109,4,79,31,"BaseAccountId"],[109,17,79,44],[110,2,84,0,"exports"],[110,9,84,7],[110,10,84,8,"GenericAccountId"],[110,26,84,24],[110,29,84,27,"GenericAccountId"],[110,45,84,43],[111,2,84,44],[111,6,85,6,"GenericAccountId33"],[111,24,85,24],[111,50,85,24,"_BaseAccountId2"],[111,65,85,24],[112,4,86,4],[112,13,86,4,"GenericAccountId33"],[112,32,86,16,"registry"],[112,40,86,24],[112,42,86,26,"value"],[112,47,86,31],[112,49,86,33],[113,6,86,33,"_classCallCheck"],[113,21,86,33],[113,28,86,33,"GenericAccountId33"],[113,46,86,33],[114,6,86,33],[114,13,86,33,"_callSuper"],[114,23,86,33],[114,30,86,33,"GenericAccountId33"],[114,48,86,33],[114,51,87,14,"registry"],[114,59,87,22],[114,61,87,24],[114,64,87,27],[114,66,87,29,"value"],[114,71,87,34],[115,4,88,4],[116,4,88,5,"_inherits"],[116,13,88,5],[116,14,88,5,"GenericAccountId33"],[116,32,88,5],[116,34,88,5,"_BaseAccountId2"],[116,49,88,5],[117,4,88,5],[117,11,88,5,"_createClass"],[117,23,88,5],[117,24,88,5,"GenericAccountId33"],[117,42,88,5],[118,2,88,5],[118,4,85,33,"BaseAccountId"],[118,17,85,46],[119,2,90,0,"exports"],[119,9,90,7],[119,10,90,8,"GenericAccountId33"],[119,28,90,26],[119,31,90,29,"GenericAccountId33"],[119,49,90,47],[120,0,90,48],[120,3]],"functionMap":{"names":["<global>","decodeAccountId","BaseAccountId","BaseAccountId#constructor","decoded.some$argument_0","BaseAccountId#eq","BaseAccountId#toHuman","BaseAccountId#toJSON","BaseAccountId#toPrimitive","BaseAccountId#toString","BaseAccountId#toRawType","GenericAccountId","GenericAccountId#constructor","GenericAccountId33","GenericAccountId33#constructor"],"mappings":"AAA;ACO;CDc;AEC;ICC;sDCI,QD;KDI;IGI;KHE;III;KJE;IKI;KLE;IMI;KNE;IOI;KPE;IQI;KRE;CFC;AWU;ICC;KDE;CXC;AaE;ICC;KDE;CbC"},"hasCjsExports":true},"type":"js/module"}]} |