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":131},"end":{"line":4,"column":40,"index":154}}],"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.hexHasPrefix = hexHasPrefix;\n const hex_js_1 = require(_dependencyMap[0], \"../is/hex.js\");\n /**\n * @name hexHasPrefix\n * @summary Tests for the existence of a `0x` prefix.\n * @description\n * Checks for a valid hex input value and if the start matched `0x`\n * @example\n * <BR>\n *\n * ```javascript\n * import { hexHasPrefix } from '@polkadot/util';\n *\n * console.log('has prefix', hexHasPrefix('0x1234')); // => true\n * ```\n */\n function hexHasPrefix(value) {\n return !!value && (0, hex_js_1.isHex)(value, -1);\n }\n});","lineCount":26,"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,"hexHasPrefix"],[7,22,3,20],[7,25,3,23,"hexHasPrefix"],[7,37,3,35],[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,"hexHasPrefix"],[23,23,19,21,"hexHasPrefix"],[23,24,19,22,"value"],[23,29,19,27],[23,31,19,29],[24,4,20,4],[24,11,20,11],[24,12,20,12],[24,13,20,13,"value"],[24,18,20,18],[24,22,20,22],[24,23,20,23],[24,24,20,24],[24,26,20,26,"hex_js_1"],[24,34,20,34],[24,35,20,35,"isHex"],[24,40,20,40],[24,42,20,42,"value"],[24,47,20,47],[24,49,20,49],[24,50,20,50],[24,51,20,51],[24,52,20,52],[25,2,21,0],[26,0,21,1],[26,3]],"functionMap":{"names":["<global>","hexHasPrefix"],"mappings":"AAA;ACkB;CDE"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
@@ -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.isNull = isNull;\n /**\n * @name isNull\n * @summary Tests for a `null` values.\n * @description\n * Checks to see if the input value is `null`.\n * @example\n * <BR>\n *\n * ```javascript\n * import { isNull } from '@polkadot/util';\n *\n * console.log('isNull', isNull(null)); // => true\n * ```\n */\n function isNull(value) {\n return value === null;\n }\n});","lineCount":25,"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,"isNull"],[7,16,3,14],[7,19,3,17,"isNull"],[7,25,3,23],[8,2,4,0],[9,0,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,2,18,0],[22,11,18,9,"isNull"],[22,17,18,15,"isNull"],[22,18,18,16,"value"],[22,23,18,21],[22,25,18,23],[23,4,19,4],[23,11,19,11,"value"],[23,16,19,16],[23,21,19,21],[23,25,19,25],[24,2,20,0],[25,0,20,1],[25,3]],"functionMap":{"names":["<global>","isNull"],"mappings":"AAA;ACiB;CDE"},"hasCjsExports":true},"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.AllHashers = void 0;\n /* eslint-disable sort-keys */\n exports.AllHashers = {\n Blake2_128: null,\n // eslint-disable-line camelcase\n Blake2_256: null,\n // eslint-disable-line camelcase\n Blake2_128Concat: null,\n // eslint-disable-line camelcase\n Twox128: null,\n Twox256: null,\n Twox64Concat: null,\n // new in v11\n Identity: null\n };\n});","lineCount":22,"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,"AllHashers"],[7,20,3,18],[7,23,3,21],[7,28,3,26],[7,29,3,27],[8,2,4,0],[9,2,5,0,"exports"],[9,9,5,7],[9,10,5,8,"AllHashers"],[9,20,5,18],[9,23,5,21],[10,4,6,4,"Blake2_128"],[10,14,6,14],[10,16,6,16],[10,20,6,20],[11,4,6,22],[12,4,7,4,"Blake2_256"],[12,14,7,14],[12,16,7,16],[12,20,7,20],[13,4,7,22],[14,4,8,4,"Blake2_128Concat"],[14,20,8,20],[14,22,8,22],[14,26,8,26],[15,4,8,28],[16,4,9,4,"Twox128"],[16,11,9,11],[16,13,9,13],[16,17,9,17],[17,4,10,4,"Twox256"],[17,11,10,11],[17,13,10,13],[17,17,10,17],[18,4,11,4,"Twox64Concat"],[18,16,11,16],[18,18,11,18],[18,22,11,22],[19,4,12,4],[20,4,13,4,"Identity"],[20,12,13,12],[20,14,13,14],[21,2,14,0],[21,3,14,1],[22,0,14,2],[22,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"react","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":31,"index":31}}],"key":"RtGiGa+/H7VrI7GDQDLhO1UbpU8=","exportNames":["*"],"imports":1}},{"name":"./TransitionProgressContext","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":32},"end":{"line":2,"column":68,"index":100}}],"key":"YgFkpQMOm7qkv4gM/LY2PvjMxwM=","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 function _interopDefault(e) {\n return e && e.__esModule ? e : {\n default: e\n };\n }\n Object.defineProperty(exports, \"default\", {\n enumerable: true,\n get: function () {\n return useTransitionProgress;\n }\n });\n var _react = require(_dependencyMap[0], \"react\");\n var React = _interopNamespace(_react);\n var _TransitionProgressContext = require(_dependencyMap[1], \"./TransitionProgressContext\");\n var TransitionProgressContext = _interopDefault(_TransitionProgressContext);\n function useTransitionProgress() {\n const progress = React.useContext(TransitionProgressContext.default);\n if (progress === undefined) {\n throw new Error(\"Couldn't find values for transition progress. Are you inside a screen in Native Stack?\");\n }\n return progress;\n }\n});","lineCount":44,"map":[[27,2,3,15,"Object"],[27,8,3,15],[27,9,3,15,"defineProperty"],[27,23,3,15],[27,24,3,15,"exports"],[27,31,3,15],[28,4,3,15,"enumerable"],[28,14,3,15],[29,4,3,15,"get"],[29,7,3,15],[29,18,3,15,"get"],[29,19,3,15],[30,6,3,15],[30,13,3,15,"useTransitionProgress"],[30,34,3,15],[31,4,3,15],[32,2,3,15],[33,2,1,0],[33,6,1,0,"_react"],[33,12,1,0],[33,15,1,0,"require"],[33,22,1,0],[33,23,1,0,"_dependencyMap"],[33,37,1,0],[34,2,1,0],[34,6,1,0,"React"],[34,11,1,0],[34,14,1,0,"_interopNamespace"],[34,31,1,0],[34,32,1,0,"_react"],[34,38,1,0],[35,2,2,0],[35,6,2,0,"_TransitionProgressContext"],[35,32,2,0],[35,35,2,0,"require"],[35,42,2,0],[35,43,2,0,"_dependencyMap"],[35,57,2,0],[36,2,2,0],[36,6,2,0,"TransitionProgressContext"],[36,31,2,0],[36,34,2,0,"_interopDefault"],[36,49,2,0],[36,50,2,0,"_TransitionProgressContext"],[36,76,2,0],[37,2,3,15],[37,11,3,24,"useTransitionProgress"],[37,32,3,45,"useTransitionProgress"],[37,33,3,45],[37,35,3,48],[38,4,4,2],[38,10,4,8,"progress"],[38,18,4,16],[38,21,4,19,"React"],[38,26,4,24],[38,27,4,25,"useContext"],[38,37,4,35],[38,38,4,36,"TransitionProgressContext"],[38,63,4,61],[38,64,4,61,"default"],[38,71,4,61],[38,72,4,62],[39,4,5,2],[39,8,5,6,"progress"],[39,16,5,14],[39,21,5,19,"undefined"],[39,30,5,28],[39,32,5,30],[40,6,6,4],[40,12,6,10],[40,16,6,14,"Error"],[40,21,6,19],[40,22,6,20],[40,110,6,108],[40,111,6,109],[41,4,7,2],[42,4,8,2],[42,11,8,9,"progress"],[42,19,8,17],[43,2,9,0],[44,0,9,1],[44,3]],"functionMap":{"names":["<global>","useTransitionProgress"],"mappings":"AAA;eCE;CDM"},"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.formatDecimal = formatDecimal;\n const NUMBER_REGEX = new RegExp('(\\\\d+?)(?=(\\\\d{3})+(?!\\\\d)|$)', 'g');\n /**\n * @name formatDecimal\n * @description Formats a number into string format with thousand separators\n */\n function formatDecimal(value, separator = ',') {\n // We can do this by adjusting the regx, however for the sake of clarity\n // we rather strip and re-add the negative sign in the output\n const isNegative = value[0].startsWith('-');\n const matched = isNegative ? value.substring(1).match(NUMBER_REGEX) : value.match(NUMBER_REGEX);\n return matched ? `${isNegative ? '-' : ''}${matched.join(separator)}` : value;\n }\n});","lineCount":20,"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,"formatDecimal"],[7,23,3,21],[7,26,3,24,"formatDecimal"],[7,39,3,37],[8,2,4,0],[8,8,4,6,"NUMBER_REGEX"],[8,20,4,18],[8,23,4,21],[8,27,4,25,"RegExp"],[8,33,4,31],[8,34,4,32],[8,65,4,63],[8,67,4,65],[8,70,4,68],[8,71,4,69],[9,2,5,0],[10,0,6,0],[11,0,7,0],[12,0,8,0],[13,2,9,0],[13,11,9,9,"formatDecimal"],[13,24,9,22,"formatDecimal"],[13,25,9,23,"value"],[13,30,9,28],[13,32,9,30,"separator"],[13,41,9,39],[13,44,9,42],[13,47,9,45],[13,49,9,47],[14,4,10,4],[15,4,11,4],[16,4,12,4],[16,10,12,10,"isNegative"],[16,20,12,20],[16,23,12,23,"value"],[16,28,12,28],[16,29,12,29],[16,30,12,30],[16,31,12,31],[16,32,12,32,"startsWith"],[16,42,12,42],[16,43,12,43],[16,46,12,46],[16,47,12,47],[17,4,13,4],[17,10,13,10,"matched"],[17,17,13,17],[17,20,13,20,"isNegative"],[17,30,13,30],[17,33,14,10,"value"],[17,38,14,15],[17,39,14,16,"substring"],[17,48,14,25],[17,49,14,26],[17,50,14,27],[17,51,14,28],[17,52,14,29,"match"],[17,57,14,34],[17,58,14,35,"NUMBER_REGEX"],[17,70,14,47],[17,71,14,48],[17,74,15,10,"value"],[17,79,15,15],[17,80,15,16,"match"],[17,85,15,21],[17,86,15,22,"NUMBER_REGEX"],[17,98,15,34],[17,99,15,35],[18,4,16,4],[18,11,16,11,"matched"],[18,18,16,18],[18,21,17,10],[18,24,17,13,"isNegative"],[18,34,17,23],[18,37,17,26],[18,40,17,29],[18,43,17,32],[18,45,17,34],[18,48,17,37,"matched"],[18,55,17,44],[18,56,17,45,"join"],[18,60,17,49],[18,61,17,50,"separator"],[18,70,17,59],[18,71,17,60],[18,73,17,62],[18,76,18,10,"value"],[18,81,18,15],[19,2,19,0],[20,0,19,1],[20,3]],"functionMap":{"names":["<global>","formatDecimal"],"mappings":"AAA;ACQ;CDU"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
@@ -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.runtime = void 0;\n exports.runtime = {\n AuraApi: [{\n methods: {\n authorities: {\n description: 'Return the current set of authorities.',\n params: [],\n type: 'Vec<AuthorityId>'\n },\n slot_duration: {\n description: 'Returns the slot duration for Aura.',\n params: [],\n type: 'SlotDuration'\n }\n },\n version: 1\n }]\n };\n});","lineCount":25,"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,"runtime"],[7,17,3,15],[7,20,3,18],[7,25,3,23],[7,26,3,24],[8,2,4,0,"exports"],[8,9,4,7],[8,10,4,8,"runtime"],[8,17,4,15],[8,20,4,18],[9,4,5,4,"AuraApi"],[9,11,5,11],[9,13,5,13],[9,14,6,8],[10,6,7,12,"methods"],[10,13,7,19],[10,15,7,21],[11,8,8,16,"authorities"],[11,19,8,27],[11,21,8,29],[12,10,9,20,"description"],[12,21,9,31],[12,23,9,33],[12,63,9,73],[13,10,10,20,"params"],[13,16,10,26],[13,18,10,28],[13,20,10,30],[14,10,11,20,"type"],[14,14,11,24],[14,16,11,26],[15,8,12,16],[15,9,12,17],[16,8,13,16,"slot_duration"],[16,21,13,29],[16,23,13,31],[17,10,14,20,"description"],[17,21,14,31],[17,23,14,33],[17,60,14,70],[18,10,15,20,"params"],[18,16,15,26],[18,18,15,28],[18,20,15,30],[19,10,16,20,"type"],[19,14,16,24],[19,16,16,26],[20,8,17,16],[21,6,18,12],[21,7,18,13],[22,6,19,12,"version"],[22,13,19,19],[22,15,19,21],[23,4,20,8],[23,5,20,9],[24,2,22,0],[24,3,22,1],[25,0,22,2],[25,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":true},"type":"js/module"}]}