mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 22:41:02 +00:00
auto-commit for 419f22ef-909a-4d7d-ab8a-e053a891ce1f
This commit is contained in:
+1
@@ -0,0 +1 @@
|
||||
{"dependencies":[{"name":"@noble/curves/ed25519","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":48,"index":48}}],"key":"+P+ft9Fcjyc2Z4P5nIyqq31wipA=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":49},"end":{"line":2,"column":53,"index":102}}],"key":"ISHU1ovvPMrCldqRjtd1JhW9dyo=","exportNames":["*"],"imports":1}},{"name":"@polkadot/wasm-crypto","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":103},"end":{"line":3,"column":73,"index":176}}],"key":"2/wMT/y5UfnEdVow79e3G5+65jw=","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.ed25519Sign = ed25519Sign;\n var _nobleCurvesEd = require(_dependencyMap[0], \"@noble/curves/ed25519\");\n var _polkadotUtil = require(_dependencyMap[1], \"@polkadot/util\");\n var _polkadotWasmCrypto = require(_dependencyMap[2], \"@polkadot/wasm-crypto\");\n /**\n * @name ed25519Sign\n * @summary Signs a message using the supplied secretKey\n * @description\n * Returns message signature of `message`, using the `secretKey`.\n * @example\n * <BR>\n *\n * ```javascript\n * import { ed25519Sign } from '@polkadot/util-crypto';\n *\n * ed25519Sign([...], [...]); // => [...]\n * ```\n */\n function ed25519Sign(message, {\n publicKey,\n secretKey\n }, onlyJs) {\n if (!secretKey) {\n throw new Error('Expected a valid secretKey');\n } else if (!publicKey) {\n throw new Error('Expected a valid publicKey');\n }\n const messageU8a = (0, _polkadotUtil.u8aToU8a)(message);\n const privateU8a = secretKey.subarray(0, 32);\n return !_polkadotUtil.hasBigInt || !onlyJs && (0, _polkadotWasmCrypto.isReady)() ? (0, _polkadotWasmCrypto.ed25519Sign)(publicKey, privateU8a, messageU8a) : _nobleCurvesEd.ed25519.sign(messageU8a, privateU8a);\n }\n});","lineCount":38,"map":[[7,2,18,0,"exports"],[7,9,18,0],[7,10,18,0,"ed25519Sign"],[7,21,18,0],[7,24,18,0,"ed25519Sign"],[7,35,18,0],[8,2,1,0],[8,6,1,0,"_nobleCurvesEd"],[8,20,1,0],[8,23,1,0,"require"],[8,30,1,0],[8,31,1,0,"_dependencyMap"],[8,45,1,0],[9,2,2,0],[9,6,2,0,"_polkadotUtil"],[9,19,2,0],[9,22,2,0,"require"],[9,29,2,0],[9,30,2,0,"_dependencyMap"],[9,44,2,0],[10,2,3,0],[10,6,3,0,"_polkadotWasmCrypto"],[10,25,3,0],[10,28,3,0,"require"],[10,35,3,0],[10,36,3,0,"_dependencyMap"],[10,50,3,0],[11,2,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,0,17,0],[25,2,18,7],[25,11,18,16,"ed25519Sign"],[25,22,18,27,"ed25519Sign"],[25,23,18,28,"message"],[25,30,18,35],[25,32,18,37],[26,4,18,39,"publicKey"],[26,13,18,48],[27,4,18,50,"secretKey"],[28,2,18,60],[28,3,18,61],[28,5,18,63,"onlyJs"],[28,11,18,69],[28,13,18,71],[29,4,19,4],[29,8,19,8],[29,9,19,9,"secretKey"],[29,18,19,18],[29,20,19,20],[30,6,20,8],[30,12,20,14],[30,16,20,18,"Error"],[30,21,20,23],[30,22,20,24],[30,50,20,52],[30,51,20,53],[31,4,21,4],[31,5,21,5],[31,11,22,9],[31,15,22,13],[31,16,22,14,"publicKey"],[31,25,22,23],[31,27,22,25],[32,6,23,8],[32,12,23,14],[32,16,23,18,"Error"],[32,21,23,23],[32,22,23,24],[32,50,23,52],[32,51,23,53],[33,4,24,4],[34,4,25,4],[34,10,25,10,"messageU8a"],[34,20,25,20],[34,23,25,23],[34,27,25,23,"u8aToU8a"],[34,40,25,31],[34,41,25,31,"u8aToU8a"],[34,49,25,31],[34,51,25,32,"message"],[34,58,25,39],[34,59,25,40],[35,4,26,4],[35,10,26,10,"privateU8a"],[35,20,26,20],[35,23,26,23,"secretKey"],[35,32,26,32],[35,33,26,33,"subarray"],[35,41,26,41],[35,42,26,42],[35,43,26,43],[35,45,26,45],[35,47,26,47],[35,48,26,48],[36,4,27,4],[36,11,27,11],[36,12,27,12,"hasBigInt"],[36,25,27,21],[36,26,27,21,"hasBigInt"],[36,35,27,21],[36,39,27,26],[36,40,27,27,"onlyJs"],[36,46,27,33],[36,50,27,37],[36,54,27,37,"isReady"],[36,73,27,44],[36,74,27,44,"isReady"],[36,81,27,44],[36,83,27,45],[36,84,27,47],[36,87,28,10],[36,91,28,10,"wasmSign"],[36,110,28,18],[36,111,28,18,"ed25519Sign"],[36,122,28,18],[36,124,28,19,"publicKey"],[36,133,28,28],[36,135,28,30,"privateU8a"],[36,145,28,40],[36,147,28,42,"messageU8a"],[36,157,28,52],[36,158,28,53],[36,161,29,10,"ed25519"],[36,175,29,17],[36,176,29,17,"ed25519"],[36,183,29,17],[36,184,29,18,"sign"],[36,188,29,22],[36,189,29,23,"messageU8a"],[36,199,29,33],[36,201,29,35,"privateU8a"],[36,211,29,45],[36,212,29,46],[37,2,30,0],[38,0,30,1],[38,3]],"functionMap":{"names":["<global>","ed25519Sign"],"mappings":"AAA;OCiB;CDY"},"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":33,"index":33}}],"key":"PnOMrhZAPWoeW3ygrvUJ7ff768Y=","exportNames":["*"],"imports":1}},{"name":"../util/index.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":34},"end":{"line":2,"column":40,"index":74}}],"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.subscribeNewBlocks = subscribeNewBlocks;\n var _rxjs = require(_dependencyMap[0], \"rxjs\");\n var _utilIndexJs = require(_dependencyMap[1], \"../util/index.js\");\n /**\n * @name subscribeNewBlocks\n * @returns The latest block & events for that block\n * @example\n * ```javascript\n * const unsub = await api.derive.chain.subscribeNewBlocks((newBlock) => {\n * console.log(`Block Hash: ${newBlock.hash}`);\n * });\n * ```\n */\n function subscribeNewBlocks(instanceId, api) {\n return (0, _utilIndexJs.memo)(instanceId, () => api.derive.chain.subscribeNewHeads().pipe((0, _rxjs.switchMap)(header => api.derive.chain.getBlock(header.createdAtHash || header.hash))));\n }\n});","lineCount":23,"map":[[7,2,13,0,"exports"],[7,9,13,0],[7,10,13,0,"subscribeNewBlocks"],[7,28,13,0],[7,31,13,0,"subscribeNewBlocks"],[7,49,13,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,2,13,7],[20,11,13,16,"subscribeNewBlocks"],[20,29,13,34,"subscribeNewBlocks"],[20,30,13,35,"instanceId"],[20,40,13,45],[20,42,13,47,"api"],[20,45,13,50],[20,47,13,52],[21,4,14,4],[21,11,14,11],[21,15,14,11,"memo"],[21,27,14,15],[21,28,14,15,"memo"],[21,32,14,15],[21,34,14,16,"instanceId"],[21,44,14,26],[21,46,14,28],[21,52,14,34,"api"],[21,55,14,37],[21,56,14,38,"derive"],[21,62,14,44],[21,63,14,45,"chain"],[21,68,14,50],[21,69,14,51,"subscribeNewHeads"],[21,86,14,68],[21,87,14,69],[21,88,14,70],[21,89,14,71,"pipe"],[21,93,14,75],[21,94,14,76],[21,98,14,76,"switchMap"],[21,103,14,85],[21,104,14,85,"switchMap"],[21,113,14,85],[21,115,14,87,"header"],[21,121,14,93],[21,125,14,98,"api"],[21,128,14,101],[21,129,14,102,"derive"],[21,135,14,108],[21,136,14,109,"chain"],[21,141,14,114],[21,142,14,115,"getBlock"],[21,150,14,123],[21,151,14,124,"header"],[21,157,14,130],[21,158,14,131,"createdAtHash"],[21,171,14,144],[21,175,14,148,"header"],[21,181,14,154],[21,182,14,155,"hash"],[21,186,14,159],[21,187,14,160],[21,188,14,161],[21,189,14,162],[21,190,14,163],[22,2,15,0],[23,0,15,1],[23,3]],"functionMap":{"names":["<global>","subscribeNewBlocks","memo$argument_1","switchMap$argument_0"],"mappings":"AAA;OCY;4BCC,0DC,0ED,ED;CDC"},"hasCjsExports":false},"type":"js/module"}]}
|
||||
+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, \"packageInfo\", {\n enumerable: true,\n get: function () {\n return packageInfo;\n }\n });\n const packageInfo = {\n name: '@polkadot/types-create',\n path: import.meta && import.meta.url ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto',\n type: 'esm',\n version: '16.4.9'\n };\n});","lineCount":19,"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,"packageInfo"],[10,24,1,0],[11,4,1,0],[12,2,1,0],[13,2,1,7],[13,8,1,13,"packageInfo"],[13,19,1,24],[13,22,1,27],[14,4,1,29,"name"],[14,8,1,33],[14,10,1,35],[14,34,1,59],[15,4,1,61,"path"],[15,8,1,65],[15,10,1,68,"import"],[15,16,1,74],[15,17,1,75,"meta"],[15,21,1,79],[15,25,1,83,"import"],[15,31,1,89],[15,32,1,90,"meta"],[15,36,1,94],[15,37,1,95,"url"],[15,40,1,98],[15,43,1,102],[15,47,1,106,"URL"],[15,50,1,109],[15,51,1,110,"import"],[15,57,1,116],[15,58,1,117,"meta"],[15,62,1,121],[15,63,1,122,"url"],[15,66,1,125],[15,67,1,126],[15,68,1,127,"pathname"],[15,76,1,135],[15,77,1,136,"substring"],[15,86,1,145],[15,87,1,146],[15,88,1,147],[15,90,1,149],[15,94,1,153,"URL"],[15,97,1,156],[15,98,1,157,"import"],[15,104,1,163],[15,105,1,164,"meta"],[15,109,1,168],[15,110,1,169,"url"],[15,113,1,172],[15,114,1,173],[15,115,1,174,"pathname"],[15,123,1,182],[15,124,1,183,"lastIndexOf"],[15,135,1,194],[15,136,1,195],[15,139,1,198],[15,140,1,199],[15,143,1,202],[15,144,1,203],[15,145,1,204],[15,148,1,207],[15,154,1,213],[16,4,1,215,"type"],[16,8,1,219],[16,10,1,221],[16,15,1,226],[17,4,1,228,"version"],[17,11,1,235],[17,13,1,237],[18,2,1,246],[18,3,1,247],[19,0,1,248],[19,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"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
Reference in New Issue
Block a user