mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 04:11:02 +00:00
auto-commit for 419f22ef-909a-4d7d-ab8a-e053a891ce1f
This commit is contained in:
+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":[],"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.u8aFixLength = u8aFixLength;\n /**\n * @name u8aFixLength\n * @summary Shifts a Uint8Array to a specific bitLength\n * @description\n * Returns a uint8Array with the specified number of bits contained in the return value. (If bitLength is -1, length checking is not done). Values with more bits are trimmed to the specified length.\n * @example\n * <BR>\n *\n * ```javascript\n * import { u8aFixLength } from '@polkadot/util';\n *\n * u8aFixLength('0x12') // => 0x12\n * u8aFixLength('0x12', 16) // => 0x0012\n * u8aFixLength('0x1234', 8) // => 0x12\n * ```\n */\n function u8aFixLength(value, bitLength = -1, atStart = false) {\n const byteLength = Math.ceil(bitLength / 8);\n if (bitLength === -1 || value.length === byteLength) {\n return value;\n } else if (value.length > byteLength) {\n return value.subarray(0, byteLength);\n }\n const result = new Uint8Array(byteLength);\n result.set(value, atStart ? 0 : byteLength - value.length);\n return result;\n }\n});","lineCount":35,"map":[[7,2,17,0,"exports"],[7,9,17,0],[7,10,17,0,"u8aFixLength"],[7,22,17,0],[7,25,17,0,"u8aFixLength"],[7,37,17,0],[8,2,1,0],[9,0,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,"u8aFixLength"],[24,23,17,28,"u8aFixLength"],[24,24,17,29,"value"],[24,29,17,34],[24,31,17,36,"bitLength"],[24,40,17,45],[24,43,17,48],[24,44,17,49],[24,45,17,50],[24,47,17,52,"atStart"],[24,54,17,59],[24,57,17,62],[24,62,17,67],[24,64,17,69],[25,4,18,4],[25,10,18,10,"byteLength"],[25,20,18,20],[25,23,18,23,"Math"],[25,27,18,27],[25,28,18,28,"ceil"],[25,32,18,32],[25,33,18,33,"bitLength"],[25,42,18,42],[25,45,18,45],[25,46,18,46],[25,47,18,47],[26,4,19,4],[26,8,19,8,"bitLength"],[26,17,19,17],[26,22,19,22],[26,23,19,23],[26,24,19,24],[26,28,19,28,"value"],[26,33,19,33],[26,34,19,34,"length"],[26,40,19,40],[26,45,19,45,"byteLength"],[26,55,19,55],[26,57,19,57],[27,6,20,8],[27,13,20,15,"value"],[27,18,20,20],[28,4,21,4],[28,5,21,5],[28,11,22,9],[28,15,22,13,"value"],[28,20,22,18],[28,21,22,19,"length"],[28,27,22,25],[28,30,22,28,"byteLength"],[28,40,22,38],[28,42,22,40],[29,6,23,8],[29,13,23,15,"value"],[29,18,23,20],[29,19,23,21,"subarray"],[29,27,23,29],[29,28,23,30],[29,29,23,31],[29,31,23,33,"byteLength"],[29,41,23,43],[29,42,23,44],[30,4,24,4],[31,4,25,4],[31,10,25,10,"result"],[31,16,25,16],[31,19,25,19],[31,23,25,23,"Uint8Array"],[31,33,25,33],[31,34,25,34,"byteLength"],[31,44,25,44],[31,45,25,45],[32,4,26,4,"result"],[32,10,26,10],[32,11,26,11,"set"],[32,14,26,14],[32,15,26,15,"value"],[32,20,26,20],[32,22,26,22,"atStart"],[32,29,26,29],[32,32,26,32],[32,33,26,33],[32,36,26,37,"byteLength"],[32,46,26,47],[32,49,26,50,"value"],[32,54,26,55],[32,55,26,56,"length"],[32,61,26,63],[32,62,26,64],[33,4,27,4],[33,11,27,11,"result"],[33,17,27,17],[34,2,28,0],[35,0,28,1],[35,3]],"functionMap":{"names":["<global>","u8aFixLength"],"mappings":"AAA;OCgB;CDW"},"hasCjsExports":false},"type":"js/module"}]}
|
||||
+1
File diff suppressed because one or more lines are too long
+1
@@ -0,0 +1 @@
|
||||
{"dependencies":[{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":81,"index":81}}],"key":"ISHU1ovvPMrCldqRjtd1JhW9dyo=","exportNames":["*"],"imports":1}},{"name":"../blake2/asU8a.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":82},"end":{"line":2,"column":49,"index":131}}],"key":"HnNMKKBRIayEACsqI9OZSkOYCOw=","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.ed25519DeriveHard = ed25519DeriveHard;\n var _polkadotUtil = require(_dependencyMap[0], \"@polkadot/util\");\n var _blake2AsU8aJs = require(_dependencyMap[1], \"../blake2/asU8a.js\");\n const HDKD = (0, _polkadotUtil.compactAddLength)((0, _polkadotUtil.stringToU8a)('Ed25519HDKD'));\n function ed25519DeriveHard(seed, chainCode) {\n if (!(0, _polkadotUtil.isU8a)(chainCode) || chainCode.length !== 32) {\n throw new Error('Invalid chainCode passed to derive');\n }\n return (0, _blake2AsU8aJs.blake2AsU8a)((0, _polkadotUtil.u8aConcat)(HDKD, seed, chainCode));\n }\n});","lineCount":17,"map":[[7,2,4,0,"exports"],[7,9,4,0],[7,10,4,0,"ed25519DeriveHard"],[7,27,4,0],[7,30,4,0,"ed25519DeriveHard"],[7,47,4,0],[8,2,1,0],[8,6,1,0,"_polkadotUtil"],[8,19,1,0],[8,22,1,0,"require"],[8,29,1,0],[8,30,1,0,"_dependencyMap"],[8,44,1,0],[9,2,2,0],[9,6,2,0,"_blake2AsU8aJs"],[9,20,2,0],[9,23,2,0,"require"],[9,30,2,0],[9,31,2,0,"_dependencyMap"],[9,45,2,0],[10,2,3,0],[10,8,3,6,"HDKD"],[10,12,3,10],[10,15,3,13],[10,19,3,13,"compactAddLength"],[10,32,3,29],[10,33,3,29,"compactAddLength"],[10,49,3,29],[10,51,3,30],[10,55,3,30,"stringToU8a"],[10,68,3,41],[10,69,3,41,"stringToU8a"],[10,80,3,41],[10,82,3,42],[10,95,3,55],[10,96,3,56],[10,97,3,57],[11,2,4,7],[11,11,4,16,"ed25519DeriveHard"],[11,28,4,33,"ed25519DeriveHard"],[11,29,4,34,"seed"],[11,33,4,38],[11,35,4,40,"chainCode"],[11,44,4,49],[11,46,4,51],[12,4,5,4],[12,8,5,8],[12,9,5,9],[12,13,5,9,"isU8a"],[12,26,5,14],[12,27,5,14,"isU8a"],[12,32,5,14],[12,34,5,15,"chainCode"],[12,43,5,24],[12,44,5,25],[12,48,5,29,"chainCode"],[12,57,5,38],[12,58,5,39,"length"],[12,64,5,45],[12,69,5,50],[12,71,5,52],[12,73,5,54],[13,6,6,8],[13,12,6,14],[13,16,6,18,"Error"],[13,21,6,23],[13,22,6,24],[13,58,6,60],[13,59,6,61],[14,4,7,4],[15,4,8,4],[15,11,8,11],[15,15,8,11,"blake2AsU8a"],[15,29,8,22],[15,30,8,22,"blake2AsU8a"],[15,41,8,22],[15,43,8,23],[15,47,8,23,"u8aConcat"],[15,60,8,32],[15,61,8,32,"u8aConcat"],[15,70,8,32],[15,72,8,33,"HDKD"],[15,76,8,37],[15,78,8,39,"seed"],[15,82,8,43],[15,84,8,45,"chainCode"],[15,93,8,54],[15,94,8,55],[15,95,8,56],[16,2,9,0],[17,0,9,1],[17,3]],"functionMap":{"names":["<global>","ed25519DeriveHard"],"mappings":"AAA;OCG;CDK"},"hasCjsExports":false},"type":"js/module"}]}
|
||||
+1
File diff suppressed because one or more lines are too long
+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}}],"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 Object.defineProperty(exports, \"NavigationRouteContext\", {\n enumerable: true,\n get: function () {\n return NavigationRouteContext;\n }\n });\n var _react = require(_dependencyMap[0], \"react\");\n var React = _interopNamespace(_react);\n /**\n * Context which holds the route prop for a screen.\n */\n const NavigationRouteContext = /*#__PURE__*/React.createContext(undefined);\n});","lineCount":34,"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,8,0,"Object"],[22,8,8,0],[22,9,8,0,"defineProperty"],[22,23,8,0],[22,24,8,0,"exports"],[22,31,8,0],[23,4,8,0,"enumerable"],[23,14,8,0],[24,4,8,0,"get"],[24,7,8,0],[24,18,8,0,"get"],[24,19,8,0],[25,6,8,0],[25,13,8,0,"NavigationRouteContext"],[25,35,8,0],[26,4,8,0],[27,2,8,0],[28,2,3,0],[28,6,3,0,"_react"],[28,12,3,0],[28,15,3,0,"require"],[28,22,3,0],[28,23,3,0,"_dependencyMap"],[28,37,3,0],[29,2,3,0],[29,6,3,0,"React"],[29,11,3,0],[29,14,3,0,"_interopNamespace"],[29,31,3,0],[29,32,3,0,"_react"],[29,38,3,0],[30,2,5,0],[31,0,6,0],[32,0,7,0],[33,2,8,7],[33,8,8,13,"NavigationRouteContext"],[33,30,8,35],[33,33,8,38],[33,46,8,51,"React"],[33,51,8,56],[33,52,8,57,"createContext"],[33,65,8,70],[33,66,8,71,"undefined"],[33,75,8,80],[33,76,8,81],[34,0,8,82],[34,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":false},"type":"js/module"}]}
|
||||
Reference in New Issue
Block a user