mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 07:41:01 +00:00
1 line
21 KiB
Plaintext
1 line
21 KiB
Plaintext
{"dependencies":[{"name":"@polkadot/types-codec","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":55,"index":55}}],"key":"4J9mGJyxcRzjwnWeFPHBw1ClKiw=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":56},"end":{"line":2,"column":72,"index":128}}],"key":"ISHU1ovvPMrCldqRjtd1JhW9dyo=","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 Object.defineProperty(exports, \"GenericSignerPayload\", {\n enumerable: true,\n get: function () {\n return GenericSignerPayload;\n }\n });\n var _polkadotTypesCodec = require(_dependencyMap[0], \"@polkadot/types-codec\");\n var _polkadotUtil = require(_dependencyMap[1], \"@polkadot/util\");\n const knownTypes = {\n address: 'Address',\n assetId: 'Option<TAssetConversion>',\n blockHash: 'Hash',\n blockNumber: 'BlockNumber',\n era: 'ExtrinsicEra',\n genesisHash: 'Hash',\n metadataHash: 'Option<[u8;32]>',\n method: 'Call',\n mode: 'u8',\n nonce: 'Compact<Index>',\n runtimeVersion: 'RuntimeVersion',\n signedExtensions: 'Vec<Text>',\n tip: 'Compact<Balance>',\n version: 'u8'\n };\n /**\n * @name GenericSignerPayload\n * @description\n * A generic signer payload that can be used for serialization between API and signer\n */\n class GenericSignerPayload extends _polkadotTypesCodec.Struct {\n #extraTypes;\n constructor(registry, value) {\n const extensionTypes = (0, _polkadotUtil.objectSpread)({}, registry.getSignedExtensionTypes(), registry.getSignedExtensionExtra());\n super(registry, (0, _polkadotUtil.objectSpread)({}, extensionTypes, knownTypes, {\n withSignedTransaction: 'bool'\n }), value);\n this.#extraTypes = {};\n const getter = key => this.get(key);\n // add all extras that are not in the base types\n for (const [key, type] of Object.entries(extensionTypes)) {\n if (!knownTypes[key]) {\n this.#extraTypes[key] = type;\n }\n (0, _polkadotUtil.objectProperty)(this, key, getter);\n }\n }\n get address() {\n return this.getT('address');\n }\n get blockHash() {\n return this.getT('blockHash');\n }\n get blockNumber() {\n return this.getT('blockNumber');\n }\n get era() {\n return this.getT('era');\n }\n get genesisHash() {\n return this.getT('genesisHash');\n }\n get method() {\n return this.getT('method');\n }\n get nonce() {\n return this.getT('nonce');\n }\n get runtimeVersion() {\n return this.getT('runtimeVersion');\n }\n get signedExtensions() {\n return this.getT('signedExtensions');\n }\n get tip() {\n return this.getT('tip');\n }\n get assetId() {\n return this.getT('assetId');\n }\n get version() {\n return this.getT('version');\n }\n get mode() {\n return this.getT('mode');\n }\n get metadataHash() {\n return this.getT('metadataHash');\n }\n get withSignedTransaction() {\n const val = this.getT('withSignedTransaction');\n return val.isTrue;\n }\n /**\n * @description Creates an representation of the structure as an ISignerPayload JSON\n */\n toPayload() {\n const result = {};\n const keys = Object.keys(this.#extraTypes);\n // add any explicit overrides we may have\n for (let i = 0, count = keys.length; i < count; i++) {\n const key = keys[i];\n const value = this.getT(key);\n // Don't include Option.isNone\n if (!(value instanceof _polkadotTypesCodec.Option) || value.isSome) {\n // NOTE In the spread below we convert (mostly) to Hex to align\n // with the typings. In the case of \"unknown\" fields, we use the\n // primitive toJSON conversion (which is serializable). Technically\n // we can include isNone in here as well (\"null\" is allowed), however\n // for empty fields we just skip it completely (historical compat)\n result[key] = value.toJSON();\n }\n }\n return (0, _polkadotUtil.objectSpread)(result, {\n // the known defaults as managed explicitly and has different\n // formatting in cases, e.g. we mostly expose a hex format here\n address: this.address.toString(),\n assetId: this.assetId && this.assetId.isSome ? this.assetId.toHex() : null,\n blockHash: this.blockHash.toHex(),\n blockNumber: this.blockNumber.toHex(),\n era: this.era.toHex(),\n genesisHash: this.genesisHash.toHex(),\n metadataHash: this.metadataHash.isSome ? this.metadataHash.toHex() : null,\n method: this.method.toHex(),\n mode: this.mode.toNumber(),\n nonce: this.nonce.toHex(),\n signedExtensions: this.signedExtensions.map(e => e.toString()),\n specVersion: this.runtimeVersion.specVersion.toHex(),\n tip: this.tip.toHex(),\n transactionVersion: this.runtimeVersion.transactionVersion.toHex(),\n version: this.version.toNumber(),\n withSignedTransaction: this.withSignedTransaction\n });\n }\n /**\n * @description Creates a representation of the payload in raw Exrinsic form\n */\n toRaw() {\n const payload = this.toPayload();\n const data = (0, _polkadotUtil.u8aToHex)(this.registry.createTypeUnsafe('ExtrinsicPayload', [payload, {\n version: payload.version\n }])\n // NOTE Explicitly pass the bare flag so the method is encoded un-prefixed (non-decodable, for signing only)\n .toU8a({\n method: true\n }));\n return {\n address: payload.address,\n data,\n type: 'payload'\n };\n }\n }\n});","lineCount":159,"map":[[7,2,24,0,"Object"],[7,8,24,0],[7,9,24,0,"defineProperty"],[7,23,24,0],[7,24,24,0,"exports"],[7,31,24,0],[8,4,24,0,"enumerable"],[8,14,24,0],[9,4,24,0,"get"],[9,7,24,0],[9,18,24,0,"get"],[9,19,24,0],[10,6,24,0],[10,13,24,0,"GenericSignerPayload"],[10,33,24,0],[11,4,24,0],[12,2,24,0],[13,2,1,0],[13,6,1,0,"_polkadotTypesCodec"],[13,25,1,0],[13,28,1,0,"require"],[13,35,1,0],[13,36,1,0,"_dependencyMap"],[13,50,1,0],[14,2,2,0],[14,6,2,0,"_polkadotUtil"],[14,19,2,0],[14,22,2,0,"require"],[14,29,2,0],[14,30,2,0,"_dependencyMap"],[14,44,2,0],[15,2,3,0],[15,8,3,6,"knownTypes"],[15,18,3,16],[15,21,3,19],[16,4,4,4,"address"],[16,11,4,11],[16,13,4,13],[16,22,4,22],[17,4,5,4,"assetId"],[17,11,5,11],[17,13,5,13],[17,39,5,39],[18,4,6,4,"blockHash"],[18,13,6,13],[18,15,6,15],[18,21,6,21],[19,4,7,4,"blockNumber"],[19,15,7,15],[19,17,7,17],[19,30,7,30],[20,4,8,4,"era"],[20,7,8,7],[20,9,8,9],[20,23,8,23],[21,4,9,4,"genesisHash"],[21,15,9,15],[21,17,9,17],[21,23,9,23],[22,4,10,4,"metadataHash"],[22,16,10,16],[22,18,10,18],[22,35,10,35],[23,4,11,4,"method"],[23,10,11,10],[23,12,11,12],[23,18,11,18],[24,4,12,4,"mode"],[24,8,12,8],[24,10,12,10],[24,14,12,14],[25,4,13,4,"nonce"],[25,9,13,9],[25,11,13,11],[25,27,13,27],[26,4,14,4,"runtimeVersion"],[26,18,14,18],[26,20,14,20],[26,36,14,36],[27,4,15,4,"signedExtensions"],[27,20,15,20],[27,22,15,22],[27,33,15,33],[28,4,16,4,"tip"],[28,7,16,7],[28,9,16,9],[28,27,16,27],[29,4,17,4,"version"],[29,11,17,11],[29,13,17,13],[30,2,18,0],[30,3,18,1],[31,2,19,0],[32,0,20,0],[33,0,21,0],[34,0,22,0],[35,0,23,0],[36,2,24,7],[36,8,24,13,"GenericSignerPayload"],[36,28,24,33],[36,37,24,42,"Struct"],[36,56,24,48],[36,57,24,48,"Struct"],[36,63,24,48],[36,64,24,49],[37,4,25,4],[37,5,25,5,"extraTypes"],[37,15,25,15],[38,4,26,4,"constructor"],[38,15,26,15,"constructor"],[38,16,26,16,"registry"],[38,24,26,24],[38,26,26,26,"value"],[38,31,26,31],[38,33,26,33],[39,6,27,8],[39,12,27,14,"extensionTypes"],[39,26,27,28],[39,29,27,31],[39,33,27,31,"objectSpread"],[39,46,27,43],[39,47,27,43,"objectSpread"],[39,59,27,43],[39,61,27,44],[39,62,27,45],[39,63,27,46],[39,65,27,48,"registry"],[39,73,27,56],[39,74,27,57,"getSignedExtensionTypes"],[39,97,27,80],[39,98,27,81],[39,99,27,82],[39,101,27,84,"registry"],[39,109,27,92],[39,110,27,93,"getSignedExtensionExtra"],[39,133,27,116],[39,134,27,117],[39,135,27,118],[39,136,27,119],[40,6,28,8],[40,11,28,13],[40,12,28,14,"registry"],[40,20,28,22],[40,22,28,24],[40,26,28,24,"objectSpread"],[40,39,28,36],[40,40,28,36,"objectSpread"],[40,52,28,36],[40,54,28,37],[40,55,28,38],[40,56,28,39],[40,58,28,41,"extensionTypes"],[40,72,28,55],[40,74,28,57,"knownTypes"],[40,84,28,67],[40,86,28,69],[41,8,28,71,"withSignedTransaction"],[41,29,28,92],[41,31,28,94],[42,6,28,101],[42,7,28,102],[42,8,28,103],[42,10,28,105,"value"],[42,15,28,110],[42,16,28,111],[43,6,29,8],[43,10,29,12],[43,11,29,13],[43,12,29,14,"extraTypes"],[43,22,29,24],[43,25,29,27],[43,26,29,28],[43,27,29,29],[44,6,30,8],[44,12,30,14,"getter"],[44,18,30,20],[44,21,30,24,"key"],[44,24,30,27],[44,28,30,32],[44,32,30,36],[44,33,30,37,"get"],[44,36,30,40],[44,37,30,41,"key"],[44,40,30,44],[44,41,30,45],[45,6,31,8],[46,6,32,8],[46,11,32,13],[46,17,32,19],[46,18,32,20,"key"],[46,21,32,23],[46,23,32,25,"type"],[46,27,32,29],[46,28,32,30],[46,32,32,34,"Object"],[46,38,32,40],[46,39,32,41,"entries"],[46,46,32,48],[46,47,32,49,"extensionTypes"],[46,61,32,63],[46,62,32,64],[46,64,32,66],[47,8,33,12],[47,12,33,16],[47,13,33,17,"knownTypes"],[47,23,33,27],[47,24,33,28,"key"],[47,27,33,31],[47,28,33,32],[47,30,33,34],[48,10,34,16],[48,14,34,20],[48,15,34,21],[48,16,34,22,"extraTypes"],[48,26,34,32],[48,27,34,33,"key"],[48,30,34,36],[48,31,34,37],[48,34,34,40,"type"],[48,38,34,44],[49,8,35,12],[50,8,36,12],[50,12,36,12,"objectProperty"],[50,25,36,26],[50,26,36,26,"objectProperty"],[50,40,36,26],[50,42,36,27],[50,46,36,31],[50,48,36,33,"key"],[50,51,36,36],[50,53,36,38,"getter"],[50,59,36,44],[50,60,36,45],[51,6,37,8],[52,4,38,4],[53,4,39,4],[53,8,39,8,"address"],[53,15,39,15,"address"],[53,16,39,15],[53,18,39,18],[54,6,40,8],[54,13,40,15],[54,17,40,19],[54,18,40,20,"getT"],[54,22,40,24],[54,23,40,25],[54,32,40,34],[54,33,40,35],[55,4,41,4],[56,4,42,4],[56,8,42,8,"blockHash"],[56,17,42,17,"blockHash"],[56,18,42,17],[56,20,42,20],[57,6,43,8],[57,13,43,15],[57,17,43,19],[57,18,43,20,"getT"],[57,22,43,24],[57,23,43,25],[57,34,43,36],[57,35,43,37],[58,4,44,4],[59,4,45,4],[59,8,45,8,"blockNumber"],[59,19,45,19,"blockNumber"],[59,20,45,19],[59,22,45,22],[60,6,46,8],[60,13,46,15],[60,17,46,19],[60,18,46,20,"getT"],[60,22,46,24],[60,23,46,25],[60,36,46,38],[60,37,46,39],[61,4,47,4],[62,4,48,4],[62,8,48,8,"era"],[62,11,48,11,"era"],[62,12,48,11],[62,14,48,14],[63,6,49,8],[63,13,49,15],[63,17,49,19],[63,18,49,20,"getT"],[63,22,49,24],[63,23,49,25],[63,28,49,30],[63,29,49,31],[64,4,50,4],[65,4,51,4],[65,8,51,8,"genesisHash"],[65,19,51,19,"genesisHash"],[65,20,51,19],[65,22,51,22],[66,6,52,8],[66,13,52,15],[66,17,52,19],[66,18,52,20,"getT"],[66,22,52,24],[66,23,52,25],[66,36,52,38],[66,37,52,39],[67,4,53,4],[68,4,54,4],[68,8,54,8,"method"],[68,14,54,14,"method"],[68,15,54,14],[68,17,54,17],[69,6,55,8],[69,13,55,15],[69,17,55,19],[69,18,55,20,"getT"],[69,22,55,24],[69,23,55,25],[69,31,55,33],[69,32,55,34],[70,4,56,4],[71,4,57,4],[71,8,57,8,"nonce"],[71,13,57,13,"nonce"],[71,14,57,13],[71,16,57,16],[72,6,58,8],[72,13,58,15],[72,17,58,19],[72,18,58,20,"getT"],[72,22,58,24],[72,23,58,25],[72,30,58,32],[72,31,58,33],[73,4,59,4],[74,4,60,4],[74,8,60,8,"runtimeVersion"],[74,22,60,22,"runtimeVersion"],[74,23,60,22],[74,25,60,25],[75,6,61,8],[75,13,61,15],[75,17,61,19],[75,18,61,20,"getT"],[75,22,61,24],[75,23,61,25],[75,39,61,41],[75,40,61,42],[76,4,62,4],[77,4,63,4],[77,8,63,8,"signedExtensions"],[77,24,63,24,"signedExtensions"],[77,25,63,24],[77,27,63,27],[78,6,64,8],[78,13,64,15],[78,17,64,19],[78,18,64,20,"getT"],[78,22,64,24],[78,23,64,25],[78,41,64,43],[78,42,64,44],[79,4,65,4],[80,4,66,4],[80,8,66,8,"tip"],[80,11,66,11,"tip"],[80,12,66,11],[80,14,66,14],[81,6,67,8],[81,13,67,15],[81,17,67,19],[81,18,67,20,"getT"],[81,22,67,24],[81,23,67,25],[81,28,67,30],[81,29,67,31],[82,4,68,4],[83,4,69,4],[83,8,69,8,"assetId"],[83,15,69,15,"assetId"],[83,16,69,15],[83,18,69,18],[84,6,70,8],[84,13,70,15],[84,17,70,19],[84,18,70,20,"getT"],[84,22,70,24],[84,23,70,25],[84,32,70,34],[84,33,70,35],[85,4,71,4],[86,4,72,4],[86,8,72,8,"version"],[86,15,72,15,"version"],[86,16,72,15],[86,18,72,18],[87,6,73,8],[87,13,73,15],[87,17,73,19],[87,18,73,20,"getT"],[87,22,73,24],[87,23,73,25],[87,32,73,34],[87,33,73,35],[88,4,74,4],[89,4,75,4],[89,8,75,8,"mode"],[89,12,75,12,"mode"],[89,13,75,12],[89,15,75,15],[90,6,76,8],[90,13,76,15],[90,17,76,19],[90,18,76,20,"getT"],[90,22,76,24],[90,23,76,25],[90,29,76,31],[90,30,76,32],[91,4,77,4],[92,4,78,4],[92,8,78,8,"metadataHash"],[92,20,78,20,"metadataHash"],[92,21,78,20],[92,23,78,23],[93,6,79,8],[93,13,79,15],[93,17,79,19],[93,18,79,20,"getT"],[93,22,79,24],[93,23,79,25],[93,37,79,39],[93,38,79,40],[94,4,80,4],[95,4,81,4],[95,8,81,8,"withSignedTransaction"],[95,29,81,29,"withSignedTransaction"],[95,30,81,29],[95,32,81,32],[96,6,82,8],[96,12,82,14,"val"],[96,15,82,17],[96,18,82,20],[96,22,82,24],[96,23,82,25,"getT"],[96,27,82,29],[96,28,82,30],[96,51,82,53],[96,52,82,54],[97,6,83,8],[97,13,83,15,"val"],[97,16,83,18],[97,17,83,19,"isTrue"],[97,23,83,25],[98,4,84,4],[99,4,85,4],[100,0,86,0],[101,0,87,0],[102,4,88,4,"toPayload"],[102,13,88,13,"toPayload"],[102,14,88,13],[102,16,88,16],[103,6,89,8],[103,12,89,14,"result"],[103,18,89,20],[103,21,89,23],[103,22,89,24],[103,23,89,25],[104,6,90,8],[104,12,90,14,"keys"],[104,16,90,18],[104,19,90,21,"Object"],[104,25,90,27],[104,26,90,28,"keys"],[104,30,90,32],[104,31,90,33],[104,35,90,37],[104,36,90,38],[104,37,90,39,"extraTypes"],[104,47,90,49],[104,48,90,50],[105,6,91,8],[106,6,92,8],[106,11,92,13],[106,15,92,17,"i"],[106,16,92,18],[106,19,92,21],[106,20,92,22],[106,22,92,24,"count"],[106,27,92,29],[106,30,92,32,"keys"],[106,34,92,36],[106,35,92,37,"length"],[106,41,92,43],[106,43,92,45,"i"],[106,44,92,46],[106,47,92,49,"count"],[106,52,92,54],[106,54,92,56,"i"],[106,55,92,57],[106,57,92,59],[106,59,92,61],[107,8,93,12],[107,14,93,18,"key"],[107,17,93,21],[107,20,93,24,"keys"],[107,24,93,28],[107,25,93,29,"i"],[107,26,93,30],[107,27,93,31],[108,8,94,12],[108,14,94,18,"value"],[108,19,94,23],[108,22,94,26],[108,26,94,30],[108,27,94,31,"getT"],[108,31,94,35],[108,32,94,36,"key"],[108,35,94,39],[108,36,94,40],[109,8,95,12],[110,8,96,12],[110,12,96,16],[110,14,96,18,"value"],[110,19,96,23],[110,31,96,35,"Option"],[110,50,96,41],[110,51,96,41,"Option"],[110,57,96,41],[110,58,96,42],[110,62,96,46,"value"],[110,67,96,51],[110,68,96,52,"isSome"],[110,74,96,58],[110,76,96,60],[111,10,97,16],[112,10,98,16],[113,10,99,16],[114,10,100,16],[115,10,101,16],[116,10,102,16,"result"],[116,16,102,22],[116,17,102,23,"key"],[116,20,102,26],[116,21,102,27],[116,24,102,30,"value"],[116,29,102,35],[116,30,102,36,"toJSON"],[116,36,102,42],[116,37,102,43],[116,38,102,44],[117,8,103,12],[118,6,104,8],[119,6,105,8],[119,13,105,15],[119,17,105,15,"objectSpread"],[119,30,105,27],[119,31,105,27,"objectSpread"],[119,43,105,27],[119,45,105,28,"result"],[119,51,105,34],[119,53,105,36],[120,8,106,12],[121,8,107,12],[122,8,108,12,"address"],[122,15,108,19],[122,17,108,21],[122,21,108,25],[122,22,108,26,"address"],[122,29,108,33],[122,30,108,34,"toString"],[122,38,108,42],[122,39,108,43],[122,40,108,44],[123,8,109,12,"assetId"],[123,15,109,19],[123,17,109,21],[123,21,109,25],[123,22,109,26,"assetId"],[123,29,109,33],[123,33,109,37],[123,37,109,41],[123,38,109,42,"assetId"],[123,45,109,49],[123,46,109,50,"isSome"],[123,52,109,56],[123,55,109,59],[123,59,109,63],[123,60,109,64,"assetId"],[123,67,109,71],[123,68,109,72,"toHex"],[123,73,109,77],[123,74,109,78],[123,75,109,79],[123,78,109,82],[123,82,109,86],[124,8,110,12,"blockHash"],[124,17,110,21],[124,19,110,23],[124,23,110,27],[124,24,110,28,"blockHash"],[124,33,110,37],[124,34,110,38,"toHex"],[124,39,110,43],[124,40,110,44],[124,41,110,45],[125,8,111,12,"blockNumber"],[125,19,111,23],[125,21,111,25],[125,25,111,29],[125,26,111,30,"blockNumber"],[125,37,111,41],[125,38,111,42,"toHex"],[125,43,111,47],[125,44,111,48],[125,45,111,49],[126,8,112,12,"era"],[126,11,112,15],[126,13,112,17],[126,17,112,21],[126,18,112,22,"era"],[126,21,112,25],[126,22,112,26,"toHex"],[126,27,112,31],[126,28,112,32],[126,29,112,33],[127,8,113,12,"genesisHash"],[127,19,113,23],[127,21,113,25],[127,25,113,29],[127,26,113,30,"genesisHash"],[127,37,113,41],[127,38,113,42,"toHex"],[127,43,113,47],[127,44,113,48],[127,45,113,49],[128,8,114,12,"metadataHash"],[128,20,114,24],[128,22,114,26],[128,26,114,30],[128,27,114,31,"metadataHash"],[128,39,114,43],[128,40,114,44,"isSome"],[128,46,114,50],[128,49,114,53],[128,53,114,57],[128,54,114,58,"metadataHash"],[128,66,114,70],[128,67,114,71,"toHex"],[128,72,114,76],[128,73,114,77],[128,74,114,78],[128,77,114,81],[128,81,114,85],[129,8,115,12,"method"],[129,14,115,18],[129,16,115,20],[129,20,115,24],[129,21,115,25,"method"],[129,27,115,31],[129,28,115,32,"toHex"],[129,33,115,37],[129,34,115,38],[129,35,115,39],[130,8,116,12,"mode"],[130,12,116,16],[130,14,116,18],[130,18,116,22],[130,19,116,23,"mode"],[130,23,116,27],[130,24,116,28,"toNumber"],[130,32,116,36],[130,33,116,37],[130,34,116,38],[131,8,117,12,"nonce"],[131,13,117,17],[131,15,117,19],[131,19,117,23],[131,20,117,24,"nonce"],[131,25,117,29],[131,26,117,30,"toHex"],[131,31,117,35],[131,32,117,36],[131,33,117,37],[132,8,118,12,"signedExtensions"],[132,24,118,28],[132,26,118,30],[132,30,118,34],[132,31,118,35,"signedExtensions"],[132,47,118,51],[132,48,118,52,"map"],[132,51,118,55],[132,52,118,57,"e"],[132,53,118,58],[132,57,118,63,"e"],[132,58,118,64],[132,59,118,65,"toString"],[132,67,118,73],[132,68,118,74],[132,69,118,75],[132,70,118,76],[133,8,119,12,"specVersion"],[133,19,119,23],[133,21,119,25],[133,25,119,29],[133,26,119,30,"runtimeVersion"],[133,40,119,44],[133,41,119,45,"specVersion"],[133,52,119,56],[133,53,119,57,"toHex"],[133,58,119,62],[133,59,119,63],[133,60,119,64],[134,8,120,12,"tip"],[134,11,120,15],[134,13,120,17],[134,17,120,21],[134,18,120,22,"tip"],[134,21,120,25],[134,22,120,26,"toHex"],[134,27,120,31],[134,28,120,32],[134,29,120,33],[135,8,121,12,"transactionVersion"],[135,26,121,30],[135,28,121,32],[135,32,121,36],[135,33,121,37,"runtimeVersion"],[135,47,121,51],[135,48,121,52,"transactionVersion"],[135,66,121,70],[135,67,121,71,"toHex"],[135,72,121,76],[135,73,121,77],[135,74,121,78],[136,8,122,12,"version"],[136,15,122,19],[136,17,122,21],[136,21,122,25],[136,22,122,26,"version"],[136,29,122,33],[136,30,122,34,"toNumber"],[136,38,122,42],[136,39,122,43],[136,40,122,44],[137,8,123,12,"withSignedTransaction"],[137,29,123,33],[137,31,123,35],[137,35,123,39],[137,36,123,40,"withSignedTransaction"],[138,6,124,8],[138,7,124,9],[138,8,124,10],[139,4,125,4],[140,4,126,4],[141,0,127,0],[142,0,128,0],[143,4,129,4,"toRaw"],[143,9,129,9,"toRaw"],[143,10,129,9],[143,12,129,12],[144,6,130,8],[144,12,130,14,"payload"],[144,19,130,21],[144,22,130,24],[144,26,130,28],[144,27,130,29,"toPayload"],[144,36,130,38],[144,37,130,39],[144,38,130,40],[145,6,131,8],[145,12,131,14,"data"],[145,16,131,18],[145,19,131,21],[145,23,131,21,"u8aToHex"],[145,36,131,29],[145,37,131,29,"u8aToHex"],[145,45,131,29],[145,47,131,30],[145,51,131,34],[145,52,131,35,"registry"],[145,60,131,43],[145,61,132,13,"createTypeUnsafe"],[145,77,132,29],[145,78,132,30],[145,96,132,48],[145,98,132,50],[145,99,132,51,"payload"],[145,106,132,58],[145,108,132,60],[146,8,132,62,"version"],[146,15,132,69],[146,17,132,71,"payload"],[146,24,132,78],[146,25,132,79,"version"],[147,6,132,87],[147,7,132,88],[147,8,132,89],[148,6,133,12],[149,6,133,12],[149,7,134,13,"toU8a"],[149,12,134,18],[149,13,134,19],[150,8,134,21,"method"],[150,14,134,27],[150,16,134,29],[151,6,134,34],[151,7,134,35],[151,8,134,36],[151,9,134,37],[152,6,135,8],[152,13,135,15],[153,8,136,12,"address"],[153,15,136,19],[153,17,136,21,"payload"],[153,24,136,28],[153,25,136,29,"address"],[153,32,136,36],[154,8,137,12,"data"],[154,12,137,16],[155,8,138,12,"type"],[155,12,138,16],[155,14,138,18],[156,6,139,8],[156,7,139,9],[157,4,140,4],[158,2,141,0],[159,0,141,1],[159,3]],"functionMap":{"names":["<global>","GenericSignerPayload","GenericSignerPayload#constructor","getter","GenericSignerPayload#get__address","GenericSignerPayload#get__blockHash","GenericSignerPayload#get__blockNumber","GenericSignerPayload#get__era","GenericSignerPayload#get__genesisHash","GenericSignerPayload#get__method","GenericSignerPayload#get__nonce","GenericSignerPayload#get__runtimeVersion","GenericSignerPayload#get__signedExtensions","GenericSignerPayload#get__tip","GenericSignerPayload#get__assetId","GenericSignerPayload#get__version","GenericSignerPayload#get__mode","GenericSignerPayload#get__metadataHash","GenericSignerPayload#get__withSignedTransaction","GenericSignerPayload#toPayload","signedExtensions.map$argument_0","GenericSignerPayload#toRaw"],"mappings":"AAA;OCuB;ICE;uBCI,sBD;KDQ;IGC;KHE;IIC;KJE;IKC;KLE;IMC;KNE;IOC;KPE;IQC;KRE;ISC;KTE;IUC;KVE;IWC;KXE;IYC;KZE;IaC;KbE;IcC;KdE;IeC;KfE;IgBC;KhBE;IiBC;KjBG;IkBI;wDC8B,mBD;KlBO;IoBI;KpBW;CDC"},"hasCjsExports":false},"type":"js/module"}]} |