mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 14:31:02 +00:00
1 line
18 KiB
Plaintext
1 line
18 KiB
Plaintext
{"dependencies":[{"name":"@polkadot/types-codec","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":22,"index":134},"end":{"line":4,"column":54,"index":166}}],"key":"fW1yxuTjZe66ggmM4ihNuGjKSV0=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":15,"index":183},"end":{"line":5,"column":40,"index":208}}],"key":"u0mzEw2nilnHoUWtEdZl0JKHutA=","exportNames":["*"],"imports":1}},{"name":"../constants.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":23,"index":233},"end":{"line":6,"column":49,"index":259}}],"key":"o8tP4LNoHC5fuOXdC7/eBrJRbQA=","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.GeneralExtrinsic = void 0;\n const types_codec_1 = require(_dependencyMap[0], \"@polkadot/types-codec\");\n const util_1 = require(_dependencyMap[1], \"@polkadot/util\");\n const constants_js_1 = require(_dependencyMap[2], \"../constants.js\");\n function decodeU8a(u8a) {\n if (!u8a.length) {\n return new Uint8Array();\n }\n const [offset, length] = (0, util_1.compactFromU8a)(u8a);\n const total = offset + length.toNumber();\n if (total > u8a.length) {\n throw new Error(`Extrinsic: length less than remainder, expected at least ${total}, found ${u8a.length}`);\n }\n const data = u8a.subarray(offset, total);\n // 69 denotes 0b01000101 which is the version and preamble for this Extrinsic\n if (data[0] !== 69) {\n throw new Error(`Extrinsic: incorrect version for General Transactions, expected 5, found ${data[0] & constants_js_1.UNMASK_VERSION}`);\n }\n return data.subarray(1);\n }\n class GeneralExtrinsic extends types_codec_1.Struct {\n #version;\n #preamble;\n constructor(registry, value, opt) {\n const extTypes = registry.getSignedExtensionTypes();\n super(registry, (0, util_1.objectSpread)({\n transactionExtensionVersion: 'u8'\n }, extTypes, {\n method: 'Call'\n }), GeneralExtrinsic.decodeExtrinsic(registry, value));\n this.#version = opt?.version || 0b00000101;\n this.#preamble = 0b01000000;\n }\n static decodeExtrinsic(registry, value) {\n if (!value) {\n return constants_js_1.EMPTY_U8A;\n } else if (value instanceof GeneralExtrinsic) {\n return value;\n } else if ((0, util_1.isU8a)(value) || Array.isArray(value) || (0, util_1.isHex)(value)) {\n return decodeU8a((0, util_1.u8aToU8a)(value));\n } else if ((0, util_1.isObject)(value)) {\n const {\n payload,\n transactionExtensionVersion\n } = value;\n return (0, util_1.objectSpread)(payload || {}, {\n transactionExtensionVersion: transactionExtensionVersion || registry.getTransactionExtensionVersion()\n });\n }\n return {};\n }\n /**\n * @description The length of the value when encoded as a Uint8Array\n */\n get encodedLength() {\n return super.encodedLength;\n }\n /**\n * @description The [[ExtrinsicEra]]\n */\n get era() {\n return this.getT('era');\n }\n /**\n * @description The [[Index]]\n */\n get nonce() {\n return this.getT('nonce');\n }\n /**\n * @description The tip [[Balance]]\n */\n get tip() {\n return this.getT('tip');\n }\n /**\n * @description The (optional) asset id for this signature for chains that support transaction fees in assets\n */\n get assetId() {\n return this.getT('assetId');\n }\n /**\n * @description The mode used for the CheckMetadataHash TransactionExtension\n */\n get mode() {\n return this.getT('mode');\n }\n /**\n * @description The (optional) [[Hash]] for the metadata proof\n */\n get metadataHash() {\n return this.getT('metadataHash');\n }\n /**\n * @description The version of the TransactionExtensions used in this extrinsic\n */\n get transactionExtensionVersion() {\n return this.getT('transactionExtensionVersion');\n }\n /**\n * @description The [[Call]] this extrinsic wraps\n */\n get method() {\n return this.getT('method');\n }\n /**\n * @description The extrinsic's version\n */\n get version() {\n return this.#version;\n }\n /**\n * @description The [[Preamble]] for the extrinsic\n */\n get preamble() {\n return this.#preamble;\n }\n toHex(isBare) {\n return (0, util_1.u8aToHex)(this.toU8a(isBare));\n }\n toU8a(isBare) {\n return isBare ? this.encode() : (0, util_1.compactAddLength)(this.encode());\n }\n toRawType() {\n return 'GeneralExt';\n }\n /**\n *\n * @description Returns an encoded GeneralExtrinsic\n */\n encode() {\n return (0, util_1.u8aConcat)(new Uint8Array([this.version | this.preamble]), super.toU8a());\n }\n signFake() {\n throw new Error('Extrinsic: Type GeneralExtrinsic does not have signFake implemented');\n }\n addSignature() {\n throw new Error('Extrinsic: Type GeneralExtrinsic does not have addSignature implemented');\n }\n sign() {\n throw new Error('Extrinsic: Type GeneralExtrinsic does not have sign implemented');\n }\n signature() {\n throw new Error('Extrinsic: Type GeneralExtrinsic does not have the signature getter');\n }\n }\n exports.GeneralExtrinsic = GeneralExtrinsic;\n});","lineCount":154,"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,"GeneralExtrinsic"],[7,26,3,24],[7,29,3,27],[7,34,3,32],[7,35,3,33],[8,2,4,0],[8,8,4,6,"types_codec_1"],[8,21,4,19],[8,24,4,22,"require"],[8,31,4,29],[8,32,4,29,"_dependencyMap"],[8,46,4,29],[8,74,4,53],[8,75,4,54],[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,"constants_js_1"],[10,22,6,20],[10,25,6,23,"require"],[10,32,6,30],[10,33,6,30,"_dependencyMap"],[10,47,6,30],[10,69,6,48],[10,70,6,49],[11,2,7,0],[11,11,7,9,"decodeU8a"],[11,20,7,18,"decodeU8a"],[11,21,7,19,"u8a"],[11,24,7,22],[11,26,7,24],[12,4,8,4],[12,8,8,8],[12,9,8,9,"u8a"],[12,12,8,12],[12,13,8,13,"length"],[12,19,8,19],[12,21,8,21],[13,6,9,8],[13,13,9,15],[13,17,9,19,"Uint8Array"],[13,27,9,29],[13,28,9,30],[13,29,9,31],[14,4,10,4],[15,4,11,4],[15,10,11,10],[15,11,11,11,"offset"],[15,17,11,17],[15,19,11,19,"length"],[15,25,11,25],[15,26,11,26],[15,29,11,29],[15,30,11,30],[15,31,11,31],[15,33,11,33,"util_1"],[15,39,11,39],[15,40,11,40,"compactFromU8a"],[15,54,11,54],[15,56,11,56,"u8a"],[15,59,11,59],[15,60,11,60],[16,4,12,4],[16,10,12,10,"total"],[16,15,12,15],[16,18,12,18,"offset"],[16,24,12,24],[16,27,12,27,"length"],[16,33,12,33],[16,34,12,34,"toNumber"],[16,42,12,42],[16,43,12,43],[16,44,12,44],[17,4,13,4],[17,8,13,8,"total"],[17,13,13,13],[17,16,13,16,"u8a"],[17,19,13,19],[17,20,13,20,"length"],[17,26,13,26],[17,28,13,28],[18,6,14,8],[18,12,14,14],[18,16,14,18,"Error"],[18,21,14,23],[18,22,14,24],[18,82,14,84,"total"],[18,87,14,89],[18,98,14,100,"u8a"],[18,101,14,103],[18,102,14,104,"length"],[18,108,14,110],[18,110,14,112],[18,111,14,113],[19,4,15,4],[20,4,16,4],[20,10,16,10,"data"],[20,14,16,14],[20,17,16,17,"u8a"],[20,20,16,20],[20,21,16,21,"subarray"],[20,29,16,29],[20,30,16,30,"offset"],[20,36,16,36],[20,38,16,38,"total"],[20,43,16,43],[20,44,16,44],[21,4,17,4],[22,4,18,4],[22,8,18,8,"data"],[22,12,18,12],[22,13,18,13],[22,14,18,14],[22,15,18,15],[22,20,18,20],[22,22,18,22],[22,24,18,24],[23,6,19,8],[23,12,19,14],[23,16,19,18,"Error"],[23,21,19,23],[23,22,19,24],[23,98,19,100,"data"],[23,102,19,104],[23,103,19,105],[23,104,19,106],[23,105,19,107],[23,108,19,110,"constants_js_1"],[23,122,19,124],[23,123,19,125,"UNMASK_VERSION"],[23,137,19,139],[23,139,19,141],[23,140,19,142],[24,4,20,4],[25,4,21,4],[25,11,21,11,"data"],[25,15,21,15],[25,16,21,16,"subarray"],[25,24,21,24],[25,25,21,25],[25,26,21,26],[25,27,21,27],[26,2,22,0],[27,2,23,0],[27,8,23,6,"GeneralExtrinsic"],[27,24,23,22],[27,33,23,31,"types_codec_1"],[27,46,23,44],[27,47,23,45,"Struct"],[27,53,23,51],[27,54,23,52],[28,4,24,4],[28,5,24,5,"version"],[28,12,24,12],[29,4,25,4],[29,5,25,5,"preamble"],[29,13,25,13],[30,4,26,4,"constructor"],[30,15,26,15,"constructor"],[30,16,26,16,"registry"],[30,24,26,24],[30,26,26,26,"value"],[30,31,26,31],[30,33,26,33,"opt"],[30,36,26,36],[30,38,26,38],[31,6,27,8],[31,12,27,14,"extTypes"],[31,20,27,22],[31,23,27,25,"registry"],[31,31,27,33],[31,32,27,34,"getSignedExtensionTypes"],[31,55,27,57],[31,56,27,58],[31,57,27,59],[32,6,28,8],[32,11,28,13],[32,12,28,14,"registry"],[32,20,28,22],[32,22,28,24],[32,23,28,25],[32,24,28,26],[32,26,28,28,"util_1"],[32,32,28,34],[32,33,28,35,"objectSpread"],[32,45,28,47],[32,47,28,49],[33,8,29,12,"transactionExtensionVersion"],[33,35,29,39],[33,37,29,41],[34,6,30,8],[34,7,30,9],[34,9,30,11,"extTypes"],[34,17,30,19],[34,19,30,21],[35,8,31,12,"method"],[35,14,31,18],[35,16,31,20],[36,6,32,8],[36,7,32,9],[36,8,32,10],[36,10,32,12,"GeneralExtrinsic"],[36,26,32,28],[36,27,32,29,"decodeExtrinsic"],[36,42,32,44],[36,43,32,45,"registry"],[36,51,32,53],[36,53,32,55,"value"],[36,58,32,60],[36,59,32,61],[36,60,32,62],[37,6,33,8],[37,10,33,12],[37,11,33,13],[37,12,33,14,"version"],[37,19,33,21],[37,22,33,24,"opt"],[37,25,33,27],[37,27,33,29,"version"],[37,34,33,36],[37,38,33,40],[37,48,33,50],[38,6,34,8],[38,10,34,12],[38,11,34,13],[38,12,34,14,"preamble"],[38,20,34,22],[38,23,34,25],[38,33,34,35],[39,4,35,4],[40,4,36,4],[40,11,36,11,"decodeExtrinsic"],[40,26,36,26,"decodeExtrinsic"],[40,27,36,27,"registry"],[40,35,36,35],[40,37,36,37,"value"],[40,42,36,42],[40,44,36,44],[41,6,37,8],[41,10,37,12],[41,11,37,13,"value"],[41,16,37,18],[41,18,37,20],[42,8,38,12],[42,15,38,19,"constants_js_1"],[42,29,38,33],[42,30,38,34,"EMPTY_U8A"],[42,39,38,43],[43,6,39,8],[43,7,39,9],[43,13,40,13],[43,17,40,17,"value"],[43,22,40,22],[43,34,40,34,"GeneralExtrinsic"],[43,50,40,50],[43,52,40,52],[44,8,41,12],[44,15,41,19,"value"],[44,20,41,24],[45,6,42,8],[45,7,42,9],[45,13,43,13],[45,17,43,17],[45,18,43,18],[45,19,43,19],[45,21,43,21,"util_1"],[45,27,43,27],[45,28,43,28,"isU8a"],[45,33,43,33],[45,35,43,35,"value"],[45,40,43,40],[45,41,43,41],[45,45,43,45,"Array"],[45,50,43,50],[45,51,43,51,"isArray"],[45,58,43,58],[45,59,43,59,"value"],[45,64,43,64],[45,65,43,65],[45,69,43,69],[45,70,43,70],[45,71,43,71],[45,73,43,73,"util_1"],[45,79,43,79],[45,80,43,80,"isHex"],[45,85,43,85],[45,87,43,87,"value"],[45,92,43,92],[45,93,43,93],[45,95,43,95],[46,8,44,12],[46,15,44,19,"decodeU8a"],[46,24,44,28],[46,25,44,29],[46,26,44,30],[46,27,44,31],[46,29,44,33,"util_1"],[46,35,44,39],[46,36,44,40,"u8aToU8a"],[46,44,44,48],[46,46,44,50,"value"],[46,51,44,55],[46,52,44,56],[46,53,44,57],[47,6,45,8],[47,7,45,9],[47,13,46,13],[47,17,46,17],[47,18,46,18],[47,19,46,19],[47,21,46,21,"util_1"],[47,27,46,27],[47,28,46,28,"isObject"],[47,36,46,36],[47,38,46,38,"value"],[47,43,46,43],[47,44,46,44],[47,46,46,46],[48,8,47,12],[48,14,47,18],[49,10,47,20,"payload"],[49,17,47,27],[50,10,47,29,"transactionExtensionVersion"],[51,8,47,57],[51,9,47,58],[51,12,47,61,"value"],[51,17,47,66],[52,8,48,12],[52,15,48,19],[52,16,48,20],[52,17,48,21],[52,19,48,23,"util_1"],[52,25,48,29],[52,26,48,30,"objectSpread"],[52,38,48,42],[52,40,48,44,"payload"],[52,47,48,51],[52,51,48,55],[52,52,48,56],[52,53,48,57],[52,55,48,59],[53,10,49,16,"transactionExtensionVersion"],[53,37,49,43],[53,39,49,45,"transactionExtensionVersion"],[53,66,49,72],[53,70,49,76,"registry"],[53,78,49,84],[53,79,49,85,"getTransactionExtensionVersion"],[53,109,49,115],[53,110,49,116],[54,8,50,12],[54,9,50,13],[54,10,50,14],[55,6,51,8],[56,6,52,8],[56,13,52,15],[56,14,52,16],[56,15,52,17],[57,4,53,4],[58,4,54,4],[59,0,55,0],[60,0,56,0],[61,4,57,4],[61,8,57,8,"encodedLength"],[61,21,57,21,"encodedLength"],[61,22,57,21],[61,24,57,24],[62,6,58,8],[62,13,58,15],[62,18,58,20],[62,19,58,21,"encodedLength"],[62,32,58,34],[63,4,59,4],[64,4,60,4],[65,0,61,0],[66,0,62,0],[67,4,63,4],[67,8,63,8,"era"],[67,11,63,11,"era"],[67,12,63,11],[67,14,63,14],[68,6,64,8],[68,13,64,15],[68,17,64,19],[68,18,64,20,"getT"],[68,22,64,24],[68,23,64,25],[68,28,64,30],[68,29,64,31],[69,4,65,4],[70,4,66,4],[71,0,67,0],[72,0,68,0],[73,4,69,4],[73,8,69,8,"nonce"],[73,13,69,13,"nonce"],[73,14,69,13],[73,16,69,16],[74,6,70,8],[74,13,70,15],[74,17,70,19],[74,18,70,20,"getT"],[74,22,70,24],[74,23,70,25],[74,30,70,32],[74,31,70,33],[75,4,71,4],[76,4,72,4],[77,0,73,0],[78,0,74,0],[79,4,75,4],[79,8,75,8,"tip"],[79,11,75,11,"tip"],[79,12,75,11],[79,14,75,14],[80,6,76,8],[80,13,76,15],[80,17,76,19],[80,18,76,20,"getT"],[80,22,76,24],[80,23,76,25],[80,28,76,30],[80,29,76,31],[81,4,77,4],[82,4,78,4],[83,0,79,0],[84,0,80,0],[85,4,81,4],[85,8,81,8,"assetId"],[85,15,81,15,"assetId"],[85,16,81,15],[85,18,81,18],[86,6,82,8],[86,13,82,15],[86,17,82,19],[86,18,82,20,"getT"],[86,22,82,24],[86,23,82,25],[86,32,82,34],[86,33,82,35],[87,4,83,4],[88,4,84,4],[89,0,85,0],[90,0,86,0],[91,4,87,4],[91,8,87,8,"mode"],[91,12,87,12,"mode"],[91,13,87,12],[91,15,87,15],[92,6,88,8],[92,13,88,15],[92,17,88,19],[92,18,88,20,"getT"],[92,22,88,24],[92,23,88,25],[92,29,88,31],[92,30,88,32],[93,4,89,4],[94,4,90,4],[95,0,91,0],[96,0,92,0],[97,4,93,4],[97,8,93,8,"metadataHash"],[97,20,93,20,"metadataHash"],[97,21,93,20],[97,23,93,23],[98,6,94,8],[98,13,94,15],[98,17,94,19],[98,18,94,20,"getT"],[98,22,94,24],[98,23,94,25],[98,37,94,39],[98,38,94,40],[99,4,95,4],[100,4,96,4],[101,0,97,0],[102,0,98,0],[103,4,99,4],[103,8,99,8,"transactionExtensionVersion"],[103,35,99,35,"transactionExtensionVersion"],[103,36,99,35],[103,38,99,38],[104,6,100,8],[104,13,100,15],[104,17,100,19],[104,18,100,20,"getT"],[104,22,100,24],[104,23,100,25],[104,52,100,54],[104,53,100,55],[105,4,101,4],[106,4,102,4],[107,0,103,0],[108,0,104,0],[109,4,105,4],[109,8,105,8,"method"],[109,14,105,14,"method"],[109,15,105,14],[109,17,105,17],[110,6,106,8],[110,13,106,15],[110,17,106,19],[110,18,106,20,"getT"],[110,22,106,24],[110,23,106,25],[110,31,106,33],[110,32,106,34],[111,4,107,4],[112,4,108,4],[113,0,109,0],[114,0,110,0],[115,4,111,4],[115,8,111,8,"version"],[115,15,111,15,"version"],[115,16,111,15],[115,18,111,18],[116,6,112,8],[116,13,112,15],[116,17,112,19],[116,18,112,20],[116,19,112,21,"version"],[116,26,112,28],[117,4,113,4],[118,4,114,4],[119,0,115,0],[120,0,116,0],[121,4,117,4],[121,8,117,8,"preamble"],[121,16,117,16,"preamble"],[121,17,117,16],[121,19,117,19],[122,6,118,8],[122,13,118,15],[122,17,118,19],[122,18,118,20],[122,19,118,21,"preamble"],[122,27,118,29],[123,4,119,4],[124,4,120,4,"toHex"],[124,9,120,9,"toHex"],[124,10,120,10,"isBare"],[124,16,120,16],[124,18,120,18],[125,6,121,8],[125,13,121,15],[125,14,121,16],[125,15,121,17],[125,17,121,19,"util_1"],[125,23,121,25],[125,24,121,26,"u8aToHex"],[125,32,121,34],[125,34,121,36],[125,38,121,40],[125,39,121,41,"toU8a"],[125,44,121,46],[125,45,121,47,"isBare"],[125,51,121,53],[125,52,121,54],[125,53,121,55],[126,4,122,4],[127,4,123,4,"toU8a"],[127,9,123,9,"toU8a"],[127,10,123,10,"isBare"],[127,16,123,16],[127,18,123,18],[128,6,124,8],[128,13,124,15,"isBare"],[128,19,124,21],[128,22,125,14],[128,26,125,18],[128,27,125,19,"encode"],[128,33,125,25],[128,34,125,26],[128,35,125,27],[128,38,126,14],[128,39,126,15],[128,40,126,16],[128,42,126,18,"util_1"],[128,48,126,24],[128,49,126,25,"compactAddLength"],[128,65,126,41],[128,67,126,43],[128,71,126,47],[128,72,126,48,"encode"],[128,78,126,54],[128,79,126,55],[128,80,126,56],[128,81,126,57],[129,4,127,4],[130,4,128,4,"toRawType"],[130,13,128,13,"toRawType"],[130,14,128,13],[130,16,128,16],[131,6,129,8],[131,13,129,15],[131,25,129,27],[132,4,130,4],[133,4,131,4],[134,0,132,0],[135,0,133,0],[136,0,134,0],[137,4,135,4,"encode"],[137,10,135,10,"encode"],[137,11,135,10],[137,13,135,13],[138,6,136,8],[138,13,136,15],[138,14,136,16],[138,15,136,17],[138,17,136,19,"util_1"],[138,23,136,25],[138,24,136,26,"u8aConcat"],[138,33,136,35],[138,35,136,37],[138,39,136,41,"Uint8Array"],[138,49,136,51],[138,50,136,52],[138,51,136,53],[138,55,136,57],[138,56,136,58,"version"],[138,63,136,65],[138,66,136,68],[138,70,136,72],[138,71,136,73,"preamble"],[138,79,136,81],[138,80,136,82],[138,81,136,83],[138,83,136,85],[138,88,136,90],[138,89,136,91,"toU8a"],[138,94,136,96],[138,95,136,97],[138,96,136,98],[138,97,136,99],[139,4,137,4],[140,4,138,4,"signFake"],[140,12,138,12,"signFake"],[140,13,138,12],[140,15,138,15],[141,6,139,8],[141,12,139,14],[141,16,139,18,"Error"],[141,21,139,23],[141,22,139,24],[141,91,139,93],[141,92,139,94],[142,4,140,4],[143,4,141,4,"addSignature"],[143,16,141,16,"addSignature"],[143,17,141,16],[143,19,141,19],[144,6,142,8],[144,12,142,14],[144,16,142,18,"Error"],[144,21,142,23],[144,22,142,24],[144,95,142,97],[144,96,142,98],[145,4,143,4],[146,4,144,4,"sign"],[146,8,144,8,"sign"],[146,9,144,8],[146,11,144,11],[147,6,145,8],[147,12,145,14],[147,16,145,18,"Error"],[147,21,145,23],[147,22,145,24],[147,87,145,89],[147,88,145,90],[148,4,146,4],[149,4,147,4,"signature"],[149,13,147,13,"signature"],[149,14,147,13],[149,16,147,16],[150,6,148,8],[150,12,148,14],[150,16,148,18,"Error"],[150,21,148,23],[150,22,148,24],[150,91,148,93],[150,92,148,94],[151,4,149,4],[152,2,150,0],[153,2,151,0,"exports"],[153,9,151,7],[153,10,151,8,"GeneralExtrinsic"],[153,26,151,24],[153,29,151,27,"GeneralExtrinsic"],[153,45,151,43],[154,0,151,44],[154,3]],"functionMap":{"names":["<global>","decodeU8a","GeneralExtrinsic","constructor","decodeExtrinsic","get__encodedLength","get__era","get__nonce","get__tip","get__assetId","get__mode","get__metadataHash","get__transactionExtensionVersion","get__method","get__version","get__preamble","toHex","toU8a","toRawType","encode","signFake","addSignature","sign","signature"],"mappings":"AAA;ACM;CDe;AEC;ICG;KDS;IEC;KFiB;IGI;KHE;III;KJE;IKI;KLE;IMI;KNE;IOI;KPE;IQI;KRE;ISI;KTE;IUI;KVE;IWI;KXE;IYI;KZE;IaI;KbE;IcC;KdE;IeC;KfI;IgBC;KhBE;IiBK;KjBE;IkBC;KlBE;ImBC;KnBE;IoBC;KpBE;IqBC;KrBE;CFC"},"hasCjsExports":true},"type":"js/module"}]} |