auto-commit for 49610908-ca1e-46b7-8671-ad75c85b7aa2

This commit is contained in:
emergent-agent-e1
2025-11-08 11:08:44 +00:00
parent 0373b73c4f
commit 32d0877be4
340 changed files with 340 additions and 0 deletions
@@ -0,0 +1 @@
{"dependencies":[{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":52,"index":52}}],"key":"ISHU1ovvPMrCldqRjtd1JhW9dyo=","exportNames":["*"],"imports":1}},{"name":"../bn.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":53},"end":{"line":2,"column":41,"index":94}}],"key":"XiEl6l/fr4LlRM707ehJh41iiMk=","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.scryptToU8a = scryptToU8a;\n var _polkadotUtil = require(_dependencyMap[0], \"@polkadot/util\");\n var _bnJs = require(_dependencyMap[1], \"../bn.js\");\n function scryptToU8a(salt, {\n N,\n p,\n r\n }) {\n return (0, _polkadotUtil.u8aConcat)(salt, (0, _polkadotUtil.bnToU8a)(N, _bnJs.BN_LE_32_OPTS), (0, _polkadotUtil.bnToU8a)(p, _bnJs.BN_LE_32_OPTS), (0, _polkadotUtil.bnToU8a)(r, _bnJs.BN_LE_32_OPTS));\n }\n});","lineCount":17,"map":[[7,2,3,0,"exports"],[7,9,3,0],[7,10,3,0,"scryptToU8a"],[7,21,3,0],[7,24,3,0,"scryptToU8a"],[7,35,3,0],[8,2,1,0],[8,6,1,0,"_polkadotUtil"],[8,19,1,0],[8,22,1,0,"require"],[8,29,1,0],[8,30,1,0,"_dependencyMap"],[8,44,1,0],[9,2,2,0],[9,6,2,0,"_bnJs"],[9,11,2,0],[9,14,2,0,"require"],[9,21,2,0],[9,22,2,0,"_dependencyMap"],[9,36,2,0],[10,2,3,7],[10,11,3,16,"scryptToU8a"],[10,22,3,27,"scryptToU8a"],[10,23,3,28,"salt"],[10,27,3,32],[10,29,3,34],[11,4,3,36,"N"],[11,5,3,37],[12,4,3,39,"p"],[12,5,3,40],[13,4,3,42,"r"],[14,2,3,44],[14,3,3,45],[14,5,3,47],[15,4,4,4],[15,11,4,11],[15,15,4,11,"u8aConcat"],[15,28,4,20],[15,29,4,20,"u8aConcat"],[15,38,4,20],[15,40,4,21,"salt"],[15,44,4,25],[15,46,4,27],[15,50,4,27,"bnToU8a"],[15,63,4,34],[15,64,4,34,"bnToU8a"],[15,71,4,34],[15,73,4,35,"N"],[15,74,4,36],[15,76,4,38,"BN_LE_32_OPTS"],[15,81,4,51],[15,82,4,51,"BN_LE_32_OPTS"],[15,95,4,51],[15,96,4,52],[15,98,4,54],[15,102,4,54,"bnToU8a"],[15,115,4,61],[15,116,4,61,"bnToU8a"],[15,123,4,61],[15,125,4,62,"p"],[15,126,4,63],[15,128,4,65,"BN_LE_32_OPTS"],[15,133,4,78],[15,134,4,78,"BN_LE_32_OPTS"],[15,147,4,78],[15,148,4,79],[15,150,4,81],[15,154,4,81,"bnToU8a"],[15,167,4,88],[15,168,4,88,"bnToU8a"],[15,175,4,88],[15,177,4,89,"r"],[15,178,4,90],[15,180,4,92,"BN_LE_32_OPTS"],[15,185,4,105],[15,186,4,105,"BN_LE_32_OPTS"],[15,199,4,105],[15,200,4,106],[15,201,4,107],[16,2,5,0],[17,0,5,1],[17,3]],"functionMap":{"names":["<global>","scryptToU8a"],"mappings":"AAA;OCE;CDE"},"hasCjsExports":false},"type":"js/module"}]}
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
{"dependencies":[{"name":"./is/bigInt.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":42,"index":42}}],"key":"A5hN5Fui+sKPBdZLLY3S3zekGC0=","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.stringify = stringify;\n var _isBigIntJs = require(_dependencyMap[0], \"./is/bigInt.js\");\n /** @internal */\n function replacer(_, v) {\n return (0, _isBigIntJs.isBigInt)(v) ? v.toString() : v;\n }\n /**\n * @name stringify\n * @summary Performs a JSON.stringify, with BigInt handling\n * @description A wrapper for JSON.stringify that handles BigInt values transparently, converting them to string. No differences from the native JSON.stringify function otherwise.\n */\n function stringify(value, space) {\n return JSON.stringify(value, replacer, space);\n }\n});","lineCount":21,"map":[[7,2,13,0,"exports"],[7,9,13,0],[7,10,13,0,"stringify"],[7,19,13,0],[7,22,13,0,"stringify"],[7,31,13,0],[8,2,1,0],[8,6,1,0,"_isBigIntJs"],[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],[10,2,3,0],[10,11,3,9,"replacer"],[10,19,3,17,"replacer"],[10,20,3,18,"_"],[10,21,3,19],[10,23,3,21,"v"],[10,24,3,22],[10,26,3,24],[11,4,4,4],[11,11,4,11],[11,15,4,11,"isBigInt"],[11,26,4,19],[11,27,4,19,"isBigInt"],[11,35,4,19],[11,37,4,20,"v"],[11,38,4,21],[11,39,4,22],[11,42,5,10,"v"],[11,43,5,11],[11,44,5,12,"toString"],[11,52,5,20],[11,53,5,21],[11,54,5,22],[11,57,6,10,"v"],[11,58,6,11],[12,2,7,0],[13,2,8,0],[14,0,9,0],[15,0,10,0],[16,0,11,0],[17,0,12,0],[18,2,13,7],[18,11,13,16,"stringify"],[18,20,13,25,"stringify"],[18,21,13,26,"value"],[18,26,13,31],[18,28,13,33,"space"],[18,33,13,38],[18,35,13,40],[19,4,14,4],[19,11,14,11,"JSON"],[19,15,14,15],[19,16,14,16,"stringify"],[19,25,14,25],[19,26,14,26,"value"],[19,31,14,31],[19,33,14,33,"replacer"],[19,41,14,41],[19,43,14,43,"space"],[19,48,14,48],[19,49,14,49],[20,2,15,0],[21,0,15,1],[21,3]],"functionMap":{"names":["<global>","replacer","stringify"],"mappings":"AAA;ACE;CDI;OEM;CFE"},"hasCjsExports":false},"type":"js/module"}]}