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":[],"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, \"runtime\", {\n enumerable: true,\n get: function () {\n return runtime;\n }\n });\n const runtime = {\n SessionKeys: [{\n methods: {\n decode_session_keys: {\n description: 'Decode the given public session keys.',\n params: [{\n name: 'encoded',\n type: 'Bytes'\n }],\n type: 'Option<Vec<(Bytes, KeyTypeId)>>'\n },\n generate_session_keys: {\n description: 'Generate a set of session keys with optionally using the given seed.',\n params: [{\n name: 'seed',\n type: 'Option<Bytes>'\n }],\n type: 'Bytes'\n }\n },\n version: 1\n }]\n };\n});","lineCount":36,"map":[[7,2,1,0,"Object"],[7,8,1,0],[7,9,1,0,"defineProperty"],[7,23,1,0],[7,24,1,0,"exports"],[7,31,1,0],[8,4,1,0,"enumerable"],[8,14,1,0],[9,4,1,0,"get"],[9,7,1,0],[9,18,1,0,"get"],[9,19,1,0],[10,6,1,0],[10,13,1,0,"runtime"],[10,20,1,0],[11,4,1,0],[12,2,1,0],[13,2,1,7],[13,8,1,13,"runtime"],[13,15,1,20],[13,18,1,23],[14,4,2,4,"SessionKeys"],[14,15,2,15],[14,17,2,17],[14,18,3,8],[15,6,4,12,"methods"],[15,13,4,19],[15,15,4,21],[16,8,5,16,"decode_session_keys"],[16,27,5,35],[16,29,5,37],[17,10,6,20,"description"],[17,21,6,31],[17,23,6,33],[17,62,6,72],[18,10,7,20,"params"],[18,16,7,26],[18,18,7,28],[18,19,8,24],[19,12,9,28,"name"],[19,16,9,32],[19,18,9,34],[19,27,9,43],[20,12,10,28,"type"],[20,16,10,32],[20,18,10,34],[21,10,11,24],[21,11,11,25],[21,12,12,21],[22,10,13,20,"type"],[22,14,13,24],[22,16,13,26],[23,8,14,16],[23,9,14,17],[24,8,15,16,"generate_session_keys"],[24,29,15,37],[24,31,15,39],[25,10,16,20,"description"],[25,21,16,31],[25,23,16,33],[25,93,16,103],[26,10,17,20,"params"],[26,16,17,26],[26,18,17,28],[26,19,18,24],[27,12,19,28,"name"],[27,16,19,32],[27,18,19,34],[27,24,19,40],[28,12,20,28,"type"],[28,16,20,32],[28,18,20,34],[29,10,21,24],[29,11,21,25],[29,12,22,21],[30,10,23,20,"type"],[30,14,23,24],[30,16,23,26],[31,8,24,16],[32,6,25,12],[32,7,25,13],[33,6,26,12,"version"],[33,13,26,19],[33,15,26,21],[34,4,27,8],[34,5,27,9],[35,2,29,0],[35,3,29,1],[36,0,29,2],[36,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":false},"type":"js/module"}]}
|
||||
+1
File diff suppressed because one or more lines are too long
+1
@@ -0,0 +1 @@
|
||||
{"dependencies":[{"name":"../hex/toU8a.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":43,"index":43}}],"key":"+4cLSDrTfGaFuXGIJ+ri9ymsHCg=","exportNames":["*"],"imports":1}},{"name":"./toHex.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":44},"end":{"line":2,"column":41,"index":85}}],"key":"puuv6C2iWJZ20ysI34XiPJE4VbU=","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.numberToU8a = numberToU8a;\n var _hexToU8aJs = require(_dependencyMap[0], \"../hex/toU8a.js\");\n var _toHexJs = require(_dependencyMap[1], \"./toHex.js\");\n /**\n * @name numberToU8a\n * @summary Creates a Uint8Array object from a number.\n * @description\n * `null`/`undefined`/`NaN` inputs returns an empty `Uint8Array` result. `number` input values return the actual bytes value converted to a `Uint8Array`. With `bitLength`, it converts the value to the equivalent size.\n * @example\n * <BR>\n *\n * ```javascript\n * import { numberToU8a } from '@polkadot/util';\n *\n * numberToU8a(0x1234); // => [0x12, 0x34]\n * ```\n */\n function numberToU8a(value, bitLength = -1) {\n return (0, _hexToU8aJs.hexToU8a)((0, _toHexJs.numberToHex)(value, bitLength));\n }\n});","lineCount":27,"map":[[7,2,17,0,"exports"],[7,9,17,0],[7,10,17,0,"numberToU8a"],[7,21,17,0],[7,24,17,0,"numberToU8a"],[7,35,17,0],[8,2,1,0],[8,6,1,0,"_hexToU8aJs"],[8,17,1,0],[8,20,1,0,"require"],[8,27,1,0],[8,28,1,0,"_dependencyMap"],[8,42,1,0],[9,2,2,0],[9,6,2,0,"_toHexJs"],[9,14,2,0],[9,17,2,0,"require"],[9,24,2,0],[9,25,2,0,"_dependencyMap"],[9,39,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,0,14,0],[22,0,15,0],[23,0,16,0],[24,2,17,7],[24,11,17,16,"numberToU8a"],[24,22,17,27,"numberToU8a"],[24,23,17,28,"value"],[24,28,17,33],[24,30,17,35,"bitLength"],[24,39,17,44],[24,42,17,47],[24,43,17,48],[24,44,17,49],[24,46,17,51],[25,4,18,4],[25,11,18,11],[25,15,18,11,"hexToU8a"],[25,26,18,19],[25,27,18,19,"hexToU8a"],[25,35,18,19],[25,37,18,20],[25,41,18,20,"numberToHex"],[25,49,18,31],[25,50,18,31,"numberToHex"],[25,61,18,31],[25,63,18,32,"value"],[25,68,18,37],[25,70,18,39,"bitLength"],[25,79,18,48],[25,80,18,49],[25,81,18,50],[26,2,19,0],[27,0,19,1],[27,3]],"functionMap":{"names":["<global>","numberToU8a"],"mappings":"AAA;OCgB;CDE"},"hasCjsExports":false},"type":"js/module"}]}
|
||||
Reference in New Issue
Block a user