auto-commit for 3a02b3dd-cebb-4882-bfc5-dbb637e71a6d

This commit is contained in:
emergent-agent-e1
2025-11-08 10:27:44 +00:00
parent 0a8c0df2e1
commit 7ae3a6d0ec
1906 changed files with 1906 additions and 0 deletions
@@ -0,0 +1 @@
{"dependencies":[{"name":"../is/hex.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":17,"index":135},"end":{"line":4,"column":40,"index":158}}],"key":"r5O71s8renrGaZ4UUjfk0oVB7TM=","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.hexStripPrefix = hexStripPrefix;\n const hex_js_1 = require(_dependencyMap[0], \"../is/hex.js\");\n /**\n * @name hexStripPrefix\n * @summary Strips any leading `0x` prefix.\n * @description\n * Tests for the existence of a `0x` prefix, and returns the value without the prefix. Un-prefixed values are returned as-is.\n * @example\n * <BR>\n *\n * ```javascript\n * import { hexStripPrefix } from '@polkadot/util';\n *\n * console.log('stripped', hexStripPrefix('0x1234')); // => 1234\n * ```\n */\n function hexStripPrefix(value) {\n if (!value || value === '0x') {\n return '';\n } else if (hex_js_1.REGEX_HEX_PREFIXED.test(value)) {\n return value.substring(2);\n } else if (hex_js_1.REGEX_HEX_NOPREFIX.test(value)) {\n return value;\n }\n throw new Error(`Expected hex value to convert, found '${value}'`);\n }\n});","lineCount":33,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"hexStripPrefix"],[7,24,3,22],[7,27,3,25,"hexStripPrefix"],[7,41,3,39],[8,2,4,0],[8,8,4,6,"hex_js_1"],[8,16,4,14],[8,19,4,17,"require"],[8,26,4,24],[8,27,4,24,"_dependencyMap"],[8,41,4,24],[8,60,4,39],[8,61,4,40],[9,2,5,0],[10,0,6,0],[11,0,7,0],[12,0,8,0],[13,0,9,0],[14,0,10,0],[15,0,11,0],[16,0,12,0],[17,0,13,0],[18,0,14,0],[19,0,15,0],[20,0,16,0],[21,0,17,0],[22,0,18,0],[23,2,19,0],[23,11,19,9,"hexStripPrefix"],[23,25,19,23,"hexStripPrefix"],[23,26,19,24,"value"],[23,31,19,29],[23,33,19,31],[24,4,20,4],[24,8,20,8],[24,9,20,9,"value"],[24,14,20,14],[24,18,20,18,"value"],[24,23,20,23],[24,28,20,28],[24,32,20,32],[24,34,20,34],[25,6,21,8],[25,13,21,15],[25,15,21,17],[26,4,22,4],[26,5,22,5],[26,11,23,9],[26,15,23,13,"hex_js_1"],[26,23,23,21],[26,24,23,22,"REGEX_HEX_PREFIXED"],[26,42,23,40],[26,43,23,41,"test"],[26,47,23,45],[26,48,23,46,"value"],[26,53,23,51],[26,54,23,52],[26,56,23,54],[27,6,24,8],[27,13,24,15,"value"],[27,18,24,20],[27,19,24,21,"substring"],[27,28,24,30],[27,29,24,31],[27,30,24,32],[27,31,24,33],[28,4,25,4],[28,5,25,5],[28,11,26,9],[28,15,26,13,"hex_js_1"],[28,23,26,21],[28,24,26,22,"REGEX_HEX_NOPREFIX"],[28,42,26,40],[28,43,26,41,"test"],[28,47,26,45],[28,48,26,46,"value"],[28,53,26,51],[28,54,26,52],[28,56,26,54],[29,6,27,8],[29,13,27,15,"value"],[29,18,27,20],[30,4,28,4],[31,4,29,4],[31,10,29,10],[31,14,29,14,"Error"],[31,19,29,19],[31,20,29,20],[31,61,29,61,"value"],[31,66,29,66],[31,69,29,69],[31,70,29,70],[32,2,30,0],[33,0,30,1],[33,3]],"functionMap":{"names":["<global>","hexStripPrefix"],"mappings":"AAA;ACkB;CDW"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"../base/UInt.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":18,"index":118},"end":{"line":4,"column":44,"index":144}}],"key":"rdla5PpsmahLG4iwTj9Hi/INa+U=","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.u128 = void 0;\n const UInt_js_1 = require(_dependencyMap[0], \"../base/UInt.js\");\n /**\n * @name u128\n * @description\n * A 128-bit unsigned integer\n */\n class u128 extends UInt_js_1.UInt.with(128) {\n // NOTE without this, we cannot properly determine extensions\n __UIntType = 'u128';\n }\n exports.u128 = u128;\n});","lineCount":19,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"u128"],[7,14,3,12],[7,17,3,15],[7,22,3,20],[7,23,3,21],[8,2,4,0],[8,8,4,6,"UInt_js_1"],[8,17,4,15],[8,20,4,18,"require"],[8,27,4,25],[8,28,4,25,"_dependencyMap"],[8,42,4,25],[8,64,4,43],[8,65,4,44],[9,2,5,0],[10,0,6,0],[11,0,7,0],[12,0,8,0],[13,0,9,0],[14,2,10,0],[14,8,10,6,"u128"],[14,12,10,10],[14,21,10,19,"UInt_js_1"],[14,30,10,28],[14,31,10,29,"UInt"],[14,35,10,33],[14,36,10,34,"with"],[14,40,10,38],[14,41,10,39],[14,44,10,42],[14,45,10,43],[14,46,10,44],[15,4,11,4],[16,4,12,4,"__UIntType"],[16,14,12,14],[16,17,12,17],[16,23,12,23],[17,2,13,0],[18,2,14,0,"exports"],[18,9,14,7],[18,10,14,8,"u128"],[18,14,14,12],[18,17,14,15,"u128"],[18,21,14,19],[19,0,14,20],[19,3]],"functionMap":{"names":["<global>","u128"],"mappings":"AAA;ACS;CDG"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./jsonrpc.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":3,"column":0,"index":77},"end":{"line":3,"column":23,"index":100}}],"key":"c9x2IaDvLX2GwFUK+Ps0Sn7QEr0=","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 require(_dependencyMap[0], \"./jsonrpc.js\");\n});","lineCount":8,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"require"],[7,9,3,7],[7,10,3,7,"_dependencyMap"],[7,24,3,7],[7,43,3,22],[7,44,3,23],[8,0,3,24],[8,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":false},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./buildUrlForBundle","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":7,"column":0,"index":173},"end":{"line":7,"column":56,"index":229}}],"key":"1NjLLI7lHLx7L+G4PSbRsIv0MOs=","exportNames":["*"],"imports":1}},{"name":"./fetchThenEval","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":8,"column":0,"index":230},"end":{"line":8,"column":53,"index":283}}],"key":"CkpSmm7Z9XNGaSYMpIQ5HZ169IA=","exportNames":["*"],"imports":1}},{"name":"./hmr","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":22,"column":24,"index":813},"end":{"line":22,"column":40,"index":829}}],"key":"nQnMBw8ZQUTyFsJ7uLcf/6WXx1E=","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.loadBundleAsync = loadBundleAsync;\n var _buildUrlForBundle = require(_dependencyMap[0], \"./buildUrlForBundle\");\n var _fetchThenEval = require(_dependencyMap[1], \"./fetchThenEval\");\n /**\n * Copyright © 2022 650 Industries.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n /**\n * Load a bundle for a URL using fetch + eval on native and script tag injection on web.\n *\n * @param bundlePath Given a statement like `import('./Bacon')` `bundlePath` would be `Bacon.bundle?params=from-metro`.\n */\n async function loadBundleAsync(bundlePath) {\n const requestUrl = (0, _buildUrlForBundle.buildUrlForBundle)(bundlePath);\n if (process.env.NODE_ENV === 'production') {\n return (0, _fetchThenEval.fetchThenEvalAsync)(requestUrl);\n } else {\n return (0, _fetchThenEval.fetchThenEvalAsync)(requestUrl).then(() => {\n const HMRClient = require(_dependencyMap[2], \"./hmr\").default;\n HMRClient.registerBundle(requestUrl);\n });\n }\n }\n});","lineCount":33,"map":[[7,2,15,0,"exports"],[7,9,15,0],[7,10,15,0,"loadBundleAsync"],[7,25,15,0],[7,28,15,0,"loadBundleAsync"],[7,43,15,0],[8,2,7,0],[8,6,7,0,"_buildUrlForBundle"],[8,24,7,0],[8,27,7,0,"require"],[8,34,7,0],[8,35,7,0,"_dependencyMap"],[8,49,7,0],[9,2,8,0],[9,6,8,0,"_fetchThenEval"],[9,20,8,0],[9,23,8,0,"require"],[9,30,8,0],[9,31,8,0,"_dependencyMap"],[9,45,8,0],[10,2,1,0],[11,0,2,0],[12,0,3,0],[13,0,4,0],[14,0,5,0],[15,0,6,0],[17,2,10,0],[18,0,11,0],[19,0,12,0],[20,0,13,0],[21,0,14,0],[22,2,15,7],[22,17,15,22,"loadBundleAsync"],[22,32,15,37,"loadBundleAsync"],[22,33,15,38,"bundlePath"],[22,43,15,56],[22,45,15,73],[23,4,16,2],[23,10,16,8,"requestUrl"],[23,20,16,18],[23,23,16,21],[23,27,16,21,"buildUrlForBundle"],[23,45,16,38],[23,46,16,38,"buildUrlForBundle"],[23,63,16,38],[23,65,16,39,"bundlePath"],[23,75,16,49],[23,76,16,50],[24,4,18,2],[24,8,18,6,"process"],[24,15,18,13],[24,16,18,14,"env"],[24,19,18,17],[24,20,18,18,"NODE_ENV"],[24,28,18,26],[24,33,18,31],[24,45,18,43],[24,47,18,45],[25,6,19,4],[25,13,19,11],[25,17,19,11,"fetchThenEvalAsync"],[25,31,19,29],[25,32,19,29,"fetchThenEvalAsync"],[25,50,19,29],[25,52,19,30,"requestUrl"],[25,62,19,40],[25,63,19,41],[26,4,20,2],[26,5,20,3],[26,11,20,9],[27,6,21,4],[27,13,21,11],[27,17,21,11,"fetchThenEvalAsync"],[27,31,21,29],[27,32,21,29,"fetchThenEvalAsync"],[27,50,21,29],[27,52,21,30,"requestUrl"],[27,62,21,40],[27,63,21,41],[27,64,21,42,"then"],[27,68,21,46],[27,69,21,47],[27,75,21,53],[28,8,22,6],[28,14,22,12,"HMRClient"],[28,23,22,21],[28,26,22,24,"require"],[28,33,22,31],[28,34,22,31,"_dependencyMap"],[28,48,22,31],[28,60,22,39],[28,61,22,40],[28,62,22,41,"default"],[28,69,22,82],[29,8,23,6,"HMRClient"],[29,17,23,15],[29,18,23,16,"registerBundle"],[29,32,23,30],[29,33,23,31,"requestUrl"],[29,43,23,41],[29,44,23,42],[30,6,24,4],[30,7,24,5],[30,8,24,6],[31,4,25,2],[32,2,26,0],[33,0,26,1],[33,3]],"functionMap":{"names":["<global>","loadBundleAsync","fetchThenEvalAsync.then$argument_0"],"mappings":"AAA;OCc;+CCM;KDG;CDE"},"hasCjsExports":false},"type":"js/module"}]}
@@ -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.packageInfo = void 0;\n exports.packageInfo = {\n name: '@polkadot/x-bigint',\n path: typeof __dirname === 'string' ? __dirname : 'auto',\n type: 'cjs',\n version: '13.5.7'\n };\n});","lineCount":14,"map":[[2,2,1,0],[2,14,1,12],[4,2,2,0,"Object"],[4,8,2,6],[4,9,2,7,"defineProperty"],[4,23,2,21],[4,24,2,22,"exports"],[4,31,2,29],[4,33,2,31],[4,45,2,43],[4,47,2,45],[5,4,2,47,"value"],[5,9,2,52],[5,11,2,54],[6,2,2,59],[6,3,2,60],[6,4,2,61],[7,2,3,0,"exports"],[7,9,3,7],[7,10,3,8,"packageInfo"],[7,21,3,19],[7,24,3,22],[7,29,3,27],[7,30,3,28],[8,2,4,0,"exports"],[8,9,4,7],[8,10,4,8,"packageInfo"],[8,21,4,19],[8,24,4,22],[9,4,4,24,"name"],[9,8,4,28],[9,10,4,30],[9,30,4,50],[10,4,4,52,"path"],[10,8,4,56],[10,10,4,58],[10,17,4,65,"__dirname"],[10,26,4,74],[10,31,4,79],[10,39,4,87],[10,42,4,90,"__dirname"],[10,51,4,99],[10,54,4,102],[10,60,4,108],[11,4,4,110,"type"],[11,8,4,114],[11,10,4,116],[11,15,4,121],[12,4,4,123,"version"],[12,11,4,130],[12,13,4,132],[13,2,4,141],[13,3,4,142],[14,0,4,143],[14,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long