auto-commit for 9f0f8e53-0005-474a-b8c0-62af81dd2fd1

This commit is contained in:
emergent-agent-e1
2025-10-24 02:50:33 +00:00
parent cac3637e68
commit a80510af07
1119 changed files with 1119 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.runtime = void 0;\n exports.runtime = {\n // https://github.com/open-web3-stack/open-runtime-module-library/blob/b57f88b39cd547e2fb51727d8bb9bcc64fddf8b5/oracle/rpc/runtime-api/src/lib.rs#L12-L21\n OracleApi: [{\n methods: {\n get_all_values: {\n description: 'Retrieves all values',\n params: [{\n name: 'providerId',\n // This is a Codec type\n type: 'Raw'\n }],\n // This won't actually work as expected - since we have\n // no information about the actual Raw sizes, we cannot\n // handle it in this format (it would need an override\n // for the specific Codec). So return the Raw value.\n // type: 'Vec<(Raw, Option<Raw>)>'\n type: 'Raw'\n },\n get_value: {\n description: 'Retrieves a single value',\n params: [{\n name: 'providerId',\n // This is a Codec type\n type: 'Raw'\n }, {\n name: 'key',\n // This is a Codec type\n type: 'Raw'\n }],\n // This is an Option<Codec> type\n type: 'Option<Raw>'\n }\n },\n version: 1\n }]\n };\n});","lineCount":44,"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],[10,4,6,4,"OracleApi"],[10,13,6,13],[10,15,6,15],[10,16,7,8],[11,6,8,12,"methods"],[11,13,8,19],[11,15,8,21],[12,8,9,16,"get_all_values"],[12,22,9,30],[12,24,9,32],[13,10,10,20,"description"],[13,21,10,31],[13,23,10,33],[13,45,10,55],[14,10,11,20,"params"],[14,16,11,26],[14,18,11,28],[14,19,12,24],[15,12,13,28,"name"],[15,16,13,32],[15,18,13,34],[15,30,13,46],[16,12,14,28],[17,12,15,28,"type"],[17,16,15,32],[17,18,15,34],[18,10,16,24],[18,11,16,25],[18,12,17,21],[19,10,18,20],[20,10,19,20],[21,10,20,20],[22,10,21,20],[23,10,22,20],[24,10,23,20,"type"],[24,14,23,24],[24,16,23,26],[25,8,24,16],[25,9,24,17],[26,8,25,16,"get_value"],[26,17,25,25],[26,19,25,27],[27,10,26,20,"description"],[27,21,26,31],[27,23,26,33],[27,49,26,59],[28,10,27,20,"params"],[28,16,27,26],[28,18,27,28],[28,19,28,24],[29,12,29,28,"name"],[29,16,29,32],[29,18,29,34],[29,30,29,46],[30,12,30,28],[31,12,31,28,"type"],[31,16,31,32],[31,18,31,34],[32,10,32,24],[32,11,32,25],[32,13,33,24],[33,12,34,28,"name"],[33,16,34,32],[33,18,34,34],[33,23,34,39],[34,12,35,28],[35,12,36,28,"type"],[35,16,36,32],[35,18,36,34],[36,10,37,24],[36,11,37,25],[36,12,38,21],[37,10,39,20],[38,10,40,20,"type"],[38,14,40,24],[38,16,40,26],[39,8,41,16],[40,6,42,12],[40,7,42,13],[41,6,43,12,"version"],[41,13,43,19],[41,15,43,21],[42,4,44,8],[42,5,44,9],[43,2,46,0],[43,3,46,1],[44,0,46,2],[44,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.floatToU8a = floatToU8a;\n /**\n * @name floatToU8a\n * @description Converts a float into a U8a representation (While we don't use BE in SCALE\n * we still allow for either representation, although, as elsewhere, isLe is default)\n */\n function floatToU8a(value = 0.0, {\n bitLength = 32,\n isLe = true\n } = {}) {\n if (bitLength !== 32 && bitLength !== 64) {\n throw new Error('Invalid bitLength provided, expected 32 or 64');\n }\n const result = new Uint8Array(bitLength / 8);\n const dv = new DataView(result.buffer, result.byteOffset);\n if (bitLength === 32) {\n dv.setFloat32(0, Number(value), isLe);\n } else {\n dv.setFloat64(0, Number(value), isLe);\n }\n return result;\n }\n});","lineCount":29,"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,"floatToU8a"],[7,20,3,18],[7,23,3,21,"floatToU8a"],[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,2,9,0],[13,11,9,9,"floatToU8a"],[13,21,9,19,"floatToU8a"],[13,22,9,20,"value"],[13,27,9,25],[13,30,9,28],[13,33,9,31],[13,35,9,33],[14,4,9,35,"bitLength"],[14,13,9,44],[14,16,9,47],[14,18,9,49],[15,4,9,51,"isLe"],[15,8,9,55],[15,11,9,58],[16,2,9,63],[16,3,9,64],[16,6,9,67],[16,7,9,68],[16,8,9,69],[16,10,9,71],[17,4,10,4],[17,8,10,8,"bitLength"],[17,17,10,17],[17,22,10,22],[17,24,10,24],[17,28,10,28,"bitLength"],[17,37,10,37],[17,42,10,42],[17,44,10,44],[17,46,10,46],[18,6,11,8],[18,12,11,14],[18,16,11,18,"Error"],[18,21,11,23],[18,22,11,24],[18,69,11,71],[18,70,11,72],[19,4,12,4],[20,4,13,4],[20,10,13,10,"result"],[20,16,13,16],[20,19,13,19],[20,23,13,23,"Uint8Array"],[20,33,13,33],[20,34,13,34,"bitLength"],[20,43,13,43],[20,46,13,46],[20,47,13,47],[20,48,13,48],[21,4,14,4],[21,10,14,10,"dv"],[21,12,14,12],[21,15,14,15],[21,19,14,19,"DataView"],[21,27,14,27],[21,28,14,28,"result"],[21,34,14,34],[21,35,14,35,"buffer"],[21,41,14,41],[21,43,14,43,"result"],[21,49,14,49],[21,50,14,50,"byteOffset"],[21,60,14,60],[21,61,14,61],[22,4,15,4],[22,8,15,8,"bitLength"],[22,17,15,17],[22,22,15,22],[22,24,15,24],[22,26,15,26],[23,6,16,8,"dv"],[23,8,16,10],[23,9,16,11,"setFloat32"],[23,19,16,21],[23,20,16,22],[23,21,16,23],[23,23,16,25,"Number"],[23,29,16,31],[23,30,16,32,"value"],[23,35,16,37],[23,36,16,38],[23,38,16,40,"isLe"],[23,42,16,44],[23,43,16,45],[24,4,17,4],[24,5,17,5],[24,11,18,9],[25,6,19,8,"dv"],[25,8,19,10],[25,9,19,11,"setFloat64"],[25,19,19,21],[25,20,19,22],[25,21,19,23],[25,23,19,25,"Number"],[25,29,19,31],[25,30,19,32,"value"],[25,35,19,37],[25,36,19,38],[25,38,19,40,"isLe"],[25,42,19,44],[25,43,19,45],[26,4,20,4],[27,4,21,4],[27,11,21,11,"result"],[27,17,21,17],[28,2,22,0],[29,0,22,1],[29,3]],"functionMap":{"names":["<global>","floatToU8a"],"mappings":"AAA;ACQ;CDa"},"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.packageInfo = void 0;\n exports.packageInfo = {\n name: '@polkadot/keyring',\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,29,4,49],[10,4,4,51,"path"],[10,8,4,55],[10,10,4,57],[10,17,4,64,"__dirname"],[10,26,4,73],[10,31,4,78],[10,39,4,86],[10,42,4,89,"__dirname"],[10,51,4,98],[10,54,4,101],[10,60,4,107],[11,4,4,109,"type"],[11,8,4,113],[11,10,4,115],[11,15,4,120],[12,4,4,122,"version"],[12,11,4,129],[12,13,4,131],[13,2,4,140],[13,3,4,141],[14,0,4,142],[14,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":true},"type":"js/module"}]}
@@ -0,0 +1 @@
{"dependencies":[{"name":"../Notification","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":21,"index":130},"end":{"line":4,"column":47,"index":156}}],"key":"sA6757MnF2XkZye2L8uEpNoQJ/M=","exportNames":["*"],"imports":1}},{"name":"../util/lift","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":13,"index":171},"end":{"line":5,"column":36,"index":194}}],"key":"QCxE0PdfaUm4cT9qPVYaaaoo46A=","exportNames":["*"],"imports":1}},{"name":"./OperatorSubscriber","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":27,"index":223},"end":{"line":6,"column":58,"index":254}}],"key":"5a4JxA+rxI0MIxewBKZddpWmHrQ=","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.dematerialize = void 0;\n var Notification_1 = require(_dependencyMap[0], \"../Notification\");\n var lift_1 = require(_dependencyMap[1], \"../util/lift\");\n var OperatorSubscriber_1 = require(_dependencyMap[2], \"./OperatorSubscriber\");\n function dematerialize() {\n return lift_1.operate(function (source, subscriber) {\n source.subscribe(OperatorSubscriber_1.createOperatorSubscriber(subscriber, function (notification) {\n return Notification_1.observeNotification(notification, subscriber);\n }));\n });\n }\n exports.dematerialize = dematerialize;\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,"dematerialize"],[7,23,3,21],[7,26,3,24],[7,31,3,29],[7,32,3,30],[8,2,4,0],[8,6,4,4,"Notification_1"],[8,20,4,18],[8,23,4,21,"require"],[8,30,4,28],[8,31,4,28,"_dependencyMap"],[8,45,4,28],[8,67,4,46],[8,68,4,47],[9,2,5,0],[9,6,5,4,"lift_1"],[9,12,5,10],[9,15,5,13,"require"],[9,22,5,20],[9,23,5,20,"_dependencyMap"],[9,37,5,20],[9,56,5,35],[9,57,5,36],[10,2,6,0],[10,6,6,4,"OperatorSubscriber_1"],[10,26,6,24],[10,29,6,27,"require"],[10,36,6,34],[10,37,6,34,"_dependencyMap"],[10,51,6,34],[10,78,6,57],[10,79,6,58],[11,2,7,0],[11,11,7,9,"dematerialize"],[11,24,7,22,"dematerialize"],[11,25,7,22],[11,27,7,25],[12,4,8,4],[12,11,8,11,"lift_1"],[12,17,8,17],[12,18,8,18,"operate"],[12,25,8,25],[12,26,8,26],[12,36,8,36,"source"],[12,42,8,42],[12,44,8,44,"subscriber"],[12,54,8,54],[12,56,8,56],[13,6,9,8,"source"],[13,12,9,14],[13,13,9,15,"subscribe"],[13,22,9,24],[13,23,9,25,"OperatorSubscriber_1"],[13,43,9,45],[13,44,9,46,"createOperatorSubscriber"],[13,68,9,70],[13,69,9,71,"subscriber"],[13,79,9,81],[13,81,9,83],[13,91,9,93,"notification"],[13,103,9,105],[13,105,9,107],[14,8,9,109],[14,15,9,116,"Notification_1"],[14,29,9,130],[14,30,9,131,"observeNotification"],[14,49,9,150],[14,50,9,151,"notification"],[14,62,9,163],[14,64,9,165,"subscriber"],[14,74,9,175],[14,75,9,176],[15,6,9,178],[15,7,9,179],[15,8,9,180],[15,9,9,181],[16,4,10,4],[16,5,10,5],[16,6,10,6],[17,2,11,0],[18,2,12,0,"exports"],[18,9,12,7],[18,10,12,8,"dematerialize"],[18,23,12,21],[18,26,12,24,"dematerialize"],[18,39,12,37],[19,0,12,38],[19,3]],"functionMap":{"names":["<global>","dematerialize","lift_1.operate$argument_0","OperatorSubscriber_1.createOperatorSubscriber$argument_1"],"mappings":"AAA;ACM;0BCC;mFCC,gGD;KDC;CDC"},"hasCjsExports":true},"type":"js/module"}]}