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":[],"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.default = {\n rpc: {},\n types: {\n Multisig: {\n when: 'Timepoint',\n deposit: 'Balance',\n depositor: 'AccountId',\n approvals: 'Vec<AccountId>'\n },\n Timepoint: {\n height: 'BlockNumber',\n index: 'u32'\n }\n }\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,"default"],[7,17,3,15],[7,20,3,18],[8,4,4,4,"rpc"],[8,7,4,7],[8,9,4,9],[8,10,4,10],[8,11,4,11],[9,4,5,4,"types"],[9,9,5,9],[9,11,5,11],[10,6,6,8,"Multisig"],[10,14,6,16],[10,16,6,18],[11,8,7,12,"when"],[11,12,7,16],[11,14,7,18],[11,25,7,29],[12,8,8,12,"deposit"],[12,15,8,19],[12,17,8,21],[12,26,8,30],[13,8,9,12,"depositor"],[13,17,9,21],[13,19,9,23],[13,30,9,34],[14,8,10,12,"approvals"],[14,17,10,21],[14,19,10,23],[15,6,11,8],[15,7,11,9],[16,6,12,8,"Timepoint"],[16,15,12,17],[16,17,12,19],[17,8,13,12,"height"],[17,14,13,18],[17,16,13,20],[17,29,13,33],[18,8,14,12,"index"],[18,13,14,17],[18,15,14,19],[19,6,15,8],[20,4,16,4],[21,2,17,0],[21,3,17,1],[22,0,17,2],[22,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"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.arrayChunk = arrayChunk;\n /**\n * @name arrayChunk\n * @summary Split T[] into T[][] based on the defind size\n * @description\n * Returns a set ao arrays based on the chunksize\n * @example\n * <BR>\n *\n * ```javascript\n * import { arrayChunk } from '@polkadot/util';\n *\n * arrayChunk([1, 2, 3, 4, 5]); // [[1, 2], [3, 4], [5]]\n * ```\n */\n function arrayChunk(array, chunkSize) {\n const outputSize = Math.ceil(array.length / chunkSize);\n // shortcut for the single-split case\n if (outputSize === 1) {\n return [array];\n }\n const output = Array(outputSize);\n for (let i = 0; i < outputSize; i++) {\n const offset = i * chunkSize;\n output[i] = array.slice(offset, offset + chunkSize);\n }\n return output;\n }\n});","lineCount":35,"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,"arrayChunk"],[7,20,3,18],[7,23,3,21,"arrayChunk"],[7,33,3,31],[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,"arrayChunk"],[22,21,18,19,"arrayChunk"],[22,22,18,20,"array"],[22,27,18,25],[22,29,18,27,"chunkSize"],[22,38,18,36],[22,40,18,38],[23,4,19,4],[23,10,19,10,"outputSize"],[23,20,19,20],[23,23,19,23,"Math"],[23,27,19,27],[23,28,19,28,"ceil"],[23,32,19,32],[23,33,19,33,"array"],[23,38,19,38],[23,39,19,39,"length"],[23,45,19,45],[23,48,19,48,"chunkSize"],[23,57,19,57],[23,58,19,58],[24,4,20,4],[25,4,21,4],[25,8,21,8,"outputSize"],[25,18,21,18],[25,23,21,23],[25,24,21,24],[25,26,21,26],[26,6,22,8],[26,13,22,15],[26,14,22,16,"array"],[26,19,22,21],[26,20,22,22],[27,4,23,4],[28,4,24,4],[28,10,24,10,"output"],[28,16,24,16],[28,19,24,19,"Array"],[28,24,24,24],[28,25,24,25,"outputSize"],[28,35,24,35],[28,36,24,36],[29,4,25,4],[29,9,25,9],[29,13,25,13,"i"],[29,14,25,14],[29,17,25,17],[29,18,25,18],[29,20,25,20,"i"],[29,21,25,21],[29,24,25,24,"outputSize"],[29,34,25,34],[29,36,25,36,"i"],[29,37,25,37],[29,39,25,39],[29,41,25,41],[30,6,26,8],[30,12,26,14,"offset"],[30,18,26,20],[30,21,26,23,"i"],[30,22,26,24],[30,25,26,27,"chunkSize"],[30,34,26,36],[31,6,27,8,"output"],[31,12,27,14],[31,13,27,15,"i"],[31,14,27,16],[31,15,27,17],[31,18,27,20,"array"],[31,23,27,25],[31,24,27,26,"slice"],[31,29,27,31],[31,30,27,32,"offset"],[31,36,27,38],[31,38,27,40,"offset"],[31,44,27,46],[31,47,27,49,"chunkSize"],[31,56,27,58],[31,57,27,59],[32,4,28,4],[33,4,29,4],[33,11,29,11,"output"],[33,17,29,17],[34,2,30,0],[35,0,30,1],[35,3]],"functionMap":{"names":["<global>","arrayChunk"],"mappings":"AAA;ACiB;CDY"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"./createIconSet","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":14},"end":{"line":2,"column":44,"index":58}}],"key":"PQt9ucTb+ABlKWjDhj7L4XHxOIA=","exportNames":["*"],"imports":1}},{"name":"./vendor/react-native-vector-icons/Fonts/Octicons.ttf","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":59},"end":{"line":3,"column":73,"index":132}}],"key":"EnM/zhOkiLci4IUY8RwGOK8VHT4=","exportNames":["*"],"imports":1}},{"name":"./vendor/react-native-vector-icons/glyphmaps/Octicons.json","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":133},"end":{"line":4,"column":82,"index":215}}],"key":"a+YpTnLObZCrnbTrgtDNqgmh0/I=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use client\";\n \"use strict\";\n\n Object.defineProperty(exports, '__esModule', {\n value: true\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 _default;\n }\n });\n var _createIconSet = require(_dependencyMap[0], \"./createIconSet\");\n var createIconSet = _interopDefault(_createIconSet);\n var _vendorReactNativeVectorIconsFontsOcticonsTtf = require(_dependencyMap[1], \"./vendor/react-native-vector-icons/Fonts/Octicons.ttf\");\n var font = _interopDefault(_vendorReactNativeVectorIconsFontsOcticonsTtf);\n var _vendorReactNativeVectorIconsGlyphmapsOcticonsJson = require(_dependencyMap[2], \"./vendor/react-native-vector-icons/glyphmaps/Octicons.json\");\n var glyphMap = _interopDefault(_vendorReactNativeVectorIconsGlyphmapsOcticonsJson);\n var _default = (0, createIconSet.default)(glyphMap.default, 'octicons', font.default);\n});","lineCount":26,"map":[[2,2,1,0],[2,14,1,12],[3,2,1,13],[5,2,1,13,"Object"],[5,8,1,13],[5,9,1,13,"defineProperty"],[5,23,1,13],[5,24,1,13,"exports"],[5,31,1,13],[6,4,1,13,"value"],[6,9,1,13],[7,2,1,13],[8,2,1,13],[8,11,1,13,"_interopDefault"],[8,27,1,13,"e"],[8,28,1,13],[9,4,1,13],[9,11,1,13,"e"],[9,12,1,13],[9,16,1,13,"e"],[9,17,1,13],[9,18,1,13,"__esModule"],[9,28,1,13],[9,31,1,13,"e"],[9,32,1,13],[10,6,1,13,"default"],[10,13,1,13],[10,15,1,13,"e"],[11,4,1,13],[12,2,1,13],[13,2,5,0,"Object"],[13,8,5,0],[13,9,5,0,"defineProperty"],[13,23,5,0],[13,24,5,0,"exports"],[13,31,5,0],[14,4,5,0,"enumerable"],[14,14,5,0],[15,4,5,0,"get"],[15,7,5,0],[15,18,5,0,"get"],[15,19,5,0],[16,6,5,0],[16,13,5,0,"_default"],[16,21,5,0],[17,4,5,0],[18,2,5,0],[19,2,2,0],[19,6,2,0,"_createIconSet"],[19,20,2,0],[19,23,2,0,"require"],[19,30,2,0],[19,31,2,0,"_dependencyMap"],[19,45,2,0],[20,2,2,0],[20,6,2,0,"createIconSet"],[20,19,2,0],[20,22,2,0,"_interopDefault"],[20,37,2,0],[20,38,2,0,"_createIconSet"],[20,52,2,0],[21,2,3,0],[21,6,3,0,"_vendorReactNativeVectorIconsFontsOcticonsTtf"],[21,51,3,0],[21,54,3,0,"require"],[21,61,3,0],[21,62,3,0,"_dependencyMap"],[21,76,3,0],[22,2,3,0],[22,6,3,0,"font"],[22,10,3,0],[22,13,3,0,"_interopDefault"],[22,28,3,0],[22,29,3,0,"_vendorReactNativeVectorIconsFontsOcticonsTtf"],[22,74,3,0],[23,2,4,0],[23,6,4,0,"_vendorReactNativeVectorIconsGlyphmapsOcticonsJson"],[23,56,4,0],[23,59,4,0,"require"],[23,66,4,0],[23,67,4,0,"_dependencyMap"],[23,81,4,0],[24,2,4,0],[24,6,4,0,"glyphMap"],[24,14,4,0],[24,17,4,0,"_interopDefault"],[24,32,4,0],[24,33,4,0,"_vendorReactNativeVectorIconsGlyphmapsOcticonsJson"],[24,83,4,0],[25,2,5,0],[25,6,5,0,"_default"],[25,14,5,0],[25,17,5,15],[25,21,5,15,"createIconSet"],[25,34,5,28],[25,35,5,28,"default"],[25,42,5,28],[25,44,5,29,"glyphMap"],[25,52,5,37],[25,53,5,37,"default"],[25,60,5,37],[25,62,5,39],[25,72,5,49],[25,74,5,51,"font"],[25,78,5,55],[25,79,5,55,"default"],[25,86,5,55],[25,87,5,56],[26,0,5,57],[26,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":false},"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
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"rxjs","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":15,"index":113},"end":{"line":4,"column":30,"index":128}}],"key":"atDzfUGaJNRNtwyVumomzH/5ygw=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":15,"index":145},"end":{"line":5,"column":40,"index":170}}],"key":"u0mzEw2nilnHoUWtEdZl0JKHutA=","exportNames":["*"],"imports":1}},{"name":"./drr.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":17,"index":189},"end":{"line":6,"column":36,"index":208}}],"key":"RJIkLfUM9OQlmo1PwR9tS45OvJo=","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.memo = memo;\n const rxjs_1 = require(_dependencyMap[0], \"rxjs\");\n const util_1 = require(_dependencyMap[1], \"@polkadot/util\");\n const drr_js_1 = require(_dependencyMap[2], \"./drr.js\");\n /** @internal */\n function memo(instanceId, inner) {\n const options = {\n getInstanceId: () => instanceId\n };\n const cached = (0, util_1.memoize)((...params) => new rxjs_1.Observable(observer => {\n const subscription = inner(...params).subscribe(observer);\n return () => {\n cached.unmemoize(...params);\n subscription.unsubscribe();\n };\n }).pipe((0, drr_js_1.drr)()), options);\n return cached;\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,"memo"],[7,14,3,12],[7,17,3,15,"memo"],[7,21,3,19],[8,2,4,0],[8,8,4,6,"rxjs_1"],[8,14,4,12],[8,17,4,15,"require"],[8,24,4,22],[8,25,4,22,"_dependencyMap"],[8,39,4,22],[8,50,4,29],[8,51,4,30],[9,2,5,0],[9,8,5,6,"util_1"],[9,14,5,12],[9,17,5,15,"require"],[9,24,5,22],[9,25,5,22,"_dependencyMap"],[9,39,5,22],[9,60,5,39],[9,61,5,40],[10,2,6,0],[10,8,6,6,"drr_js_1"],[10,16,6,14],[10,19,6,17,"require"],[10,26,6,24],[10,27,6,24,"_dependencyMap"],[10,41,6,24],[10,56,6,35],[10,57,6,36],[11,2,7,0],[12,2,8,0],[12,11,8,9,"memo"],[12,15,8,13,"memo"],[12,16,8,14,"instanceId"],[12,26,8,24],[12,28,8,26,"inner"],[12,33,8,31],[12,35,8,33],[13,4,9,4],[13,10,9,10,"options"],[13,17,9,17],[13,20,9,20],[14,6,9,22,"getInstanceId"],[14,19,9,35],[14,21,9,37,"getInstanceId"],[14,22,9,37],[14,27,9,43,"instanceId"],[15,4,9,54],[15,5,9,55],[16,4,10,4],[16,10,10,10,"cached"],[16,16,10,16],[16,19,10,19],[16,20,10,20],[16,21,10,21],[16,23,10,23,"util_1"],[16,29,10,29],[16,30,10,30,"memoize"],[16,37,10,37],[16,39,10,39],[16,40,10,40],[16,43,10,43,"params"],[16,49,10,49],[16,54,10,54],[16,58,10,58,"rxjs_1"],[16,64,10,64],[16,65,10,65,"Observable"],[16,75,10,75],[16,76,10,77,"observer"],[16,84,10,85],[16,88,10,90],[17,6,11,8],[17,12,11,14,"subscription"],[17,24,11,26],[17,27,11,29,"inner"],[17,32,11,34],[17,33,11,35],[17,36,11,38,"params"],[17,42,11,44],[17,43,11,45],[17,44,11,46,"subscribe"],[17,53,11,55],[17,54,11,56,"observer"],[17,62,11,64],[17,63,11,65],[18,6,12,8],[18,13,12,15],[18,19,12,21],[19,8,13,12,"cached"],[19,14,13,18],[19,15,13,19,"unmemoize"],[19,24,13,28],[19,25,13,29],[19,28,13,32,"params"],[19,34,13,38],[19,35,13,39],[20,8,14,12,"subscription"],[20,20,14,24],[20,21,14,25,"unsubscribe"],[20,32,14,36],[20,33,14,37],[20,34,14,38],[21,6,15,8],[21,7,15,9],[22,4,16,4],[22,5,16,5],[22,6,16,6],[22,7,16,7,"pipe"],[22,11,16,11],[22,12,16,12],[22,13,16,13],[22,14,16,14],[22,16,16,16,"drr_js_1"],[22,24,16,24],[22,25,16,25,"drr"],[22,28,16,28],[22,30,16,30],[22,31,16,31],[22,32,16,32],[22,34,16,34,"options"],[22,41,16,41],[22,42,16,42],[23,4,17,4],[23,11,17,11,"cached"],[23,17,17,17],[24,2,18,0],[25,0,18,1],[25,3]],"functionMap":{"names":["<global>","memo","options.getInstanceId","<anonymous>","rxjs_1.Observable$argument_0"],"mappings":"AAA;ACO;qCCC,gBD;uCEC,qCC;eDE;SCG;KDC,2BF;CDE"},"hasCjsExports":true},"type":"js/module"}]}
File diff suppressed because one or more lines are too long