mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 13:31:00 +00:00
1 line
21 KiB
Plaintext
1 line
21 KiB
Plaintext
{"dependencies":[{"name":"@polkadot/types-codec","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":22,"index":138},"end":{"line":4,"column":54,"index":170}}],"key":"fW1yxuTjZe66ggmM4ihNuGjKSV0=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":15,"index":187},"end":{"line":5,"column":40,"index":212}}],"key":"u0mzEw2nilnHoUWtEdZl0JKHutA=","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.GenericSignerPayload = void 0;\n const types_codec_1 = require(_dependencyMap[0], \"@polkadot/types-codec\");\n const util_1 = 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 types_codec_1.Struct {\n #extraTypes;\n constructor(registry, value) {\n const extensionTypes = (0, util_1.objectSpread)({}, registry.getSignedExtensionTypes(), registry.getSignedExtensionExtra());\n super(registry, (0, util_1.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, util_1.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 types_codec_1.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, util_1.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, util_1.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 exports.GenericSignerPayload = GenericSignerPayload;\n});","lineCount":155,"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,"GenericSignerPayload"],[7,30,3,28],[7,33,3,31],[7,38,3,36],[7,39,3,37],[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,"knownTypes"],[10,18,6,16],[10,21,6,19],[11,4,7,4,"address"],[11,11,7,11],[11,13,7,13],[11,22,7,22],[12,4,8,4,"assetId"],[12,11,8,11],[12,13,8,13],[12,39,8,39],[13,4,9,4,"blockHash"],[13,13,9,13],[13,15,9,15],[13,21,9,21],[14,4,10,4,"blockNumber"],[14,15,10,15],[14,17,10,17],[14,30,10,30],[15,4,11,4,"era"],[15,7,11,7],[15,9,11,9],[15,23,11,23],[16,4,12,4,"genesisHash"],[16,15,12,15],[16,17,12,17],[16,23,12,23],[17,4,13,4,"metadataHash"],[17,16,13,16],[17,18,13,18],[17,35,13,35],[18,4,14,4,"method"],[18,10,14,10],[18,12,14,12],[18,18,14,18],[19,4,15,4,"mode"],[19,8,15,8],[19,10,15,10],[19,14,15,14],[20,4,16,4,"nonce"],[20,9,16,9],[20,11,16,11],[20,27,16,27],[21,4,17,4,"runtimeVersion"],[21,18,17,18],[21,20,17,20],[21,36,17,36],[22,4,18,4,"signedExtensions"],[22,20,18,20],[22,22,18,22],[22,33,18,33],[23,4,19,4,"tip"],[23,7,19,7],[23,9,19,9],[23,27,19,27],[24,4,20,4,"version"],[24,11,20,11],[24,13,20,13],[25,2,21,0],[25,3,21,1],[26,2,22,0],[27,0,23,0],[28,0,24,0],[29,0,25,0],[30,0,26,0],[31,2,27,0],[31,8,27,6,"GenericSignerPayload"],[31,28,27,26],[31,37,27,35,"types_codec_1"],[31,50,27,48],[31,51,27,49,"Struct"],[31,57,27,55],[31,58,27,56],[32,4,28,4],[32,5,28,5,"extraTypes"],[32,15,28,15],[33,4,29,4,"constructor"],[33,15,29,15,"constructor"],[33,16,29,16,"registry"],[33,24,29,24],[33,26,29,26,"value"],[33,31,29,31],[33,33,29,33],[34,6,30,8],[34,12,30,14,"extensionTypes"],[34,26,30,28],[34,29,30,31],[34,30,30,32],[34,31,30,33],[34,33,30,35,"util_1"],[34,39,30,41],[34,40,30,42,"objectSpread"],[34,52,30,54],[34,54,30,56],[34,55,30,57],[34,56,30,58],[34,58,30,60,"registry"],[34,66,30,68],[34,67,30,69,"getSignedExtensionTypes"],[34,90,30,92],[34,91,30,93],[34,92,30,94],[34,94,30,96,"registry"],[34,102,30,104],[34,103,30,105,"getSignedExtensionExtra"],[34,126,30,128],[34,127,30,129],[34,128,30,130],[34,129,30,131],[35,6,31,8],[35,11,31,13],[35,12,31,14,"registry"],[35,20,31,22],[35,22,31,24],[35,23,31,25],[35,24,31,26],[35,26,31,28,"util_1"],[35,32,31,34],[35,33,31,35,"objectSpread"],[35,45,31,47],[35,47,31,49],[35,48,31,50],[35,49,31,51],[35,51,31,53,"extensionTypes"],[35,65,31,67],[35,67,31,69,"knownTypes"],[35,77,31,79],[35,79,31,81],[36,8,31,83,"withSignedTransaction"],[36,29,31,104],[36,31,31,106],[37,6,31,113],[37,7,31,114],[37,8,31,115],[37,10,31,117,"value"],[37,15,31,122],[37,16,31,123],[38,6,32,8],[38,10,32,12],[38,11,32,13],[38,12,32,14,"extraTypes"],[38,22,32,24],[38,25,32,27],[38,26,32,28],[38,27,32,29],[39,6,33,8],[39,12,33,14,"getter"],[39,18,33,20],[39,21,33,24,"key"],[39,24,33,27],[39,28,33,32],[39,32,33,36],[39,33,33,37,"get"],[39,36,33,40],[39,37,33,41,"key"],[39,40,33,44],[39,41,33,45],[40,6,34,8],[41,6,35,8],[41,11,35,13],[41,17,35,19],[41,18,35,20,"key"],[41,21,35,23],[41,23,35,25,"type"],[41,27,35,29],[41,28,35,30],[41,32,35,34,"Object"],[41,38,35,40],[41,39,35,41,"entries"],[41,46,35,48],[41,47,35,49,"extensionTypes"],[41,61,35,63],[41,62,35,64],[41,64,35,66],[42,8,36,12],[42,12,36,16],[42,13,36,17,"knownTypes"],[42,23,36,27],[42,24,36,28,"key"],[42,27,36,31],[42,28,36,32],[42,30,36,34],[43,10,37,16],[43,14,37,20],[43,15,37,21],[43,16,37,22,"extraTypes"],[43,26,37,32],[43,27,37,33,"key"],[43,30,37,36],[43,31,37,37],[43,34,37,40,"type"],[43,38,37,44],[44,8,38,12],[45,8,39,12],[45,9,39,13],[45,10,39,14],[45,12,39,16,"util_1"],[45,18,39,22],[45,19,39,23,"objectProperty"],[45,33,39,37],[45,35,39,39],[45,39,39,43],[45,41,39,45,"key"],[45,44,39,48],[45,46,39,50,"getter"],[45,52,39,56],[45,53,39,57],[46,6,40,8],[47,4,41,4],[48,4,42,4],[48,8,42,8,"address"],[48,15,42,15,"address"],[48,16,42,15],[48,18,42,18],[49,6,43,8],[49,13,43,15],[49,17,43,19],[49,18,43,20,"getT"],[49,22,43,24],[49,23,43,25],[49,32,43,34],[49,33,43,35],[50,4,44,4],[51,4,45,4],[51,8,45,8,"blockHash"],[51,17,45,17,"blockHash"],[51,18,45,17],[51,20,45,20],[52,6,46,8],[52,13,46,15],[52,17,46,19],[52,18,46,20,"getT"],[52,22,46,24],[52,23,46,25],[52,34,46,36],[52,35,46,37],[53,4,47,4],[54,4,48,4],[54,8,48,8,"blockNumber"],[54,19,48,19,"blockNumber"],[54,20,48,19],[54,22,48,22],[55,6,49,8],[55,13,49,15],[55,17,49,19],[55,18,49,20,"getT"],[55,22,49,24],[55,23,49,25],[55,36,49,38],[55,37,49,39],[56,4,50,4],[57,4,51,4],[57,8,51,8,"era"],[57,11,51,11,"era"],[57,12,51,11],[57,14,51,14],[58,6,52,8],[58,13,52,15],[58,17,52,19],[58,18,52,20,"getT"],[58,22,52,24],[58,23,52,25],[58,28,52,30],[58,29,52,31],[59,4,53,4],[60,4,54,4],[60,8,54,8,"genesisHash"],[60,19,54,19,"genesisHash"],[60,20,54,19],[60,22,54,22],[61,6,55,8],[61,13,55,15],[61,17,55,19],[61,18,55,20,"getT"],[61,22,55,24],[61,23,55,25],[61,36,55,38],[61,37,55,39],[62,4,56,4],[63,4,57,4],[63,8,57,8,"method"],[63,14,57,14,"method"],[63,15,57,14],[63,17,57,17],[64,6,58,8],[64,13,58,15],[64,17,58,19],[64,18,58,20,"getT"],[64,22,58,24],[64,23,58,25],[64,31,58,33],[64,32,58,34],[65,4,59,4],[66,4,60,4],[66,8,60,8,"nonce"],[66,13,60,13,"nonce"],[66,14,60,13],[66,16,60,16],[67,6,61,8],[67,13,61,15],[67,17,61,19],[67,18,61,20,"getT"],[67,22,61,24],[67,23,61,25],[67,30,61,32],[67,31,61,33],[68,4,62,4],[69,4,63,4],[69,8,63,8,"runtimeVersion"],[69,22,63,22,"runtimeVersion"],[69,23,63,22],[69,25,63,25],[70,6,64,8],[70,13,64,15],[70,17,64,19],[70,18,64,20,"getT"],[70,22,64,24],[70,23,64,25],[70,39,64,41],[70,40,64,42],[71,4,65,4],[72,4,66,4],[72,8,66,8,"signedExtensions"],[72,24,66,24,"signedExtensions"],[72,25,66,24],[72,27,66,27],[73,6,67,8],[73,13,67,15],[73,17,67,19],[73,18,67,20,"getT"],[73,22,67,24],[73,23,67,25],[73,41,67,43],[73,42,67,44],[74,4,68,4],[75,4,69,4],[75,8,69,8,"tip"],[75,11,69,11,"tip"],[75,12,69,11],[75,14,69,14],[76,6,70,8],[76,13,70,15],[76,17,70,19],[76,18,70,20,"getT"],[76,22,70,24],[76,23,70,25],[76,28,70,30],[76,29,70,31],[77,4,71,4],[78,4,72,4],[78,8,72,8,"assetId"],[78,15,72,15,"assetId"],[78,16,72,15],[78,18,72,18],[79,6,73,8],[79,13,73,15],[79,17,73,19],[79,18,73,20,"getT"],[79,22,73,24],[79,23,73,25],[79,32,73,34],[79,33,73,35],[80,4,74,4],[81,4,75,4],[81,8,75,8,"version"],[81,15,75,15,"version"],[81,16,75,15],[81,18,75,18],[82,6,76,8],[82,13,76,15],[82,17,76,19],[82,18,76,20,"getT"],[82,22,76,24],[82,23,76,25],[82,32,76,34],[82,33,76,35],[83,4,77,4],[84,4,78,4],[84,8,78,8,"mode"],[84,12,78,12,"mode"],[84,13,78,12],[84,15,78,15],[85,6,79,8],[85,13,79,15],[85,17,79,19],[85,18,79,20,"getT"],[85,22,79,24],[85,23,79,25],[85,29,79,31],[85,30,79,32],[86,4,80,4],[87,4,81,4],[87,8,81,8,"metadataHash"],[87,20,81,20,"metadataHash"],[87,21,81,20],[87,23,81,23],[88,6,82,8],[88,13,82,15],[88,17,82,19],[88,18,82,20,"getT"],[88,22,82,24],[88,23,82,25],[88,37,82,39],[88,38,82,40],[89,4,83,4],[90,4,84,4],[90,8,84,8,"withSignedTransaction"],[90,29,84,29,"withSignedTransaction"],[90,30,84,29],[90,32,84,32],[91,6,85,8],[91,12,85,14,"val"],[91,15,85,17],[91,18,85,20],[91,22,85,24],[91,23,85,25,"getT"],[91,27,85,29],[91,28,85,30],[91,51,85,53],[91,52,85,54],[92,6,86,8],[92,13,86,15,"val"],[92,16,86,18],[92,17,86,19,"isTrue"],[92,23,86,25],[93,4,87,4],[94,4,88,4],[95,0,89,0],[96,0,90,0],[97,4,91,4,"toPayload"],[97,13,91,13,"toPayload"],[97,14,91,13],[97,16,91,16],[98,6,92,8],[98,12,92,14,"result"],[98,18,92,20],[98,21,92,23],[98,22,92,24],[98,23,92,25],[99,6,93,8],[99,12,93,14,"keys"],[99,16,93,18],[99,19,93,21,"Object"],[99,25,93,27],[99,26,93,28,"keys"],[99,30,93,32],[99,31,93,33],[99,35,93,37],[99,36,93,38],[99,37,93,39,"extraTypes"],[99,47,93,49],[99,48,93,50],[100,6,94,8],[101,6,95,8],[101,11,95,13],[101,15,95,17,"i"],[101,16,95,18],[101,19,95,21],[101,20,95,22],[101,22,95,24,"count"],[101,27,95,29],[101,30,95,32,"keys"],[101,34,95,36],[101,35,95,37,"length"],[101,41,95,43],[101,43,95,45,"i"],[101,44,95,46],[101,47,95,49,"count"],[101,52,95,54],[101,54,95,56,"i"],[101,55,95,57],[101,57,95,59],[101,59,95,61],[102,8,96,12],[102,14,96,18,"key"],[102,17,96,21],[102,20,96,24,"keys"],[102,24,96,28],[102,25,96,29,"i"],[102,26,96,30],[102,27,96,31],[103,8,97,12],[103,14,97,18,"value"],[103,19,97,23],[103,22,97,26],[103,26,97,30],[103,27,97,31,"getT"],[103,31,97,35],[103,32,97,36,"key"],[103,35,97,39],[103,36,97,40],[104,8,98,12],[105,8,99,12],[105,12,99,16],[105,14,99,18,"value"],[105,19,99,23],[105,31,99,35,"types_codec_1"],[105,44,99,48],[105,45,99,49,"Option"],[105,51,99,55],[105,52,99,56],[105,56,99,60,"value"],[105,61,99,65],[105,62,99,66,"isSome"],[105,68,99,72],[105,70,99,74],[106,10,100,16],[107,10,101,16],[108,10,102,16],[109,10,103,16],[110,10,104,16],[111,10,105,16,"result"],[111,16,105,22],[111,17,105,23,"key"],[111,20,105,26],[111,21,105,27],[111,24,105,30,"value"],[111,29,105,35],[111,30,105,36,"toJSON"],[111,36,105,42],[111,37,105,43],[111,38,105,44],[112,8,106,12],[113,6,107,8],[114,6,108,8],[114,13,108,15],[114,14,108,16],[114,15,108,17],[114,17,108,19,"util_1"],[114,23,108,25],[114,24,108,26,"objectSpread"],[114,36,108,38],[114,38,108,40,"result"],[114,44,108,46],[114,46,108,48],[115,8,109,12],[116,8,110,12],[117,8,111,12,"address"],[117,15,111,19],[117,17,111,21],[117,21,111,25],[117,22,111,26,"address"],[117,29,111,33],[117,30,111,34,"toString"],[117,38,111,42],[117,39,111,43],[117,40,111,44],[118,8,112,12,"assetId"],[118,15,112,19],[118,17,112,21],[118,21,112,25],[118,22,112,26,"assetId"],[118,29,112,33],[118,33,112,37],[118,37,112,41],[118,38,112,42,"assetId"],[118,45,112,49],[118,46,112,50,"isSome"],[118,52,112,56],[118,55,112,59],[118,59,112,63],[118,60,112,64,"assetId"],[118,67,112,71],[118,68,112,72,"toHex"],[118,73,112,77],[118,74,112,78],[118,75,112,79],[118,78,112,82],[118,82,112,86],[119,8,113,12,"blockHash"],[119,17,113,21],[119,19,113,23],[119,23,113,27],[119,24,113,28,"blockHash"],[119,33,113,37],[119,34,113,38,"toHex"],[119,39,113,43],[119,40,113,44],[119,41,113,45],[120,8,114,12,"blockNumber"],[120,19,114,23],[120,21,114,25],[120,25,114,29],[120,26,114,30,"blockNumber"],[120,37,114,41],[120,38,114,42,"toHex"],[120,43,114,47],[120,44,114,48],[120,45,114,49],[121,8,115,12,"era"],[121,11,115,15],[121,13,115,17],[121,17,115,21],[121,18,115,22,"era"],[121,21,115,25],[121,22,115,26,"toHex"],[121,27,115,31],[121,28,115,32],[121,29,115,33],[122,8,116,12,"genesisHash"],[122,19,116,23],[122,21,116,25],[122,25,116,29],[122,26,116,30,"genesisHash"],[122,37,116,41],[122,38,116,42,"toHex"],[122,43,116,47],[122,44,116,48],[122,45,116,49],[123,8,117,12,"metadataHash"],[123,20,117,24],[123,22,117,26],[123,26,117,30],[123,27,117,31,"metadataHash"],[123,39,117,43],[123,40,117,44,"isSome"],[123,46,117,50],[123,49,117,53],[123,53,117,57],[123,54,117,58,"metadataHash"],[123,66,117,70],[123,67,117,71,"toHex"],[123,72,117,76],[123,73,117,77],[123,74,117,78],[123,77,117,81],[123,81,117,85],[124,8,118,12,"method"],[124,14,118,18],[124,16,118,20],[124,20,118,24],[124,21,118,25,"method"],[124,27,118,31],[124,28,118,32,"toHex"],[124,33,118,37],[124,34,118,38],[124,35,118,39],[125,8,119,12,"mode"],[125,12,119,16],[125,14,119,18],[125,18,119,22],[125,19,119,23,"mode"],[125,23,119,27],[125,24,119,28,"toNumber"],[125,32,119,36],[125,33,119,37],[125,34,119,38],[126,8,120,12,"nonce"],[126,13,120,17],[126,15,120,19],[126,19,120,23],[126,20,120,24,"nonce"],[126,25,120,29],[126,26,120,30,"toHex"],[126,31,120,35],[126,32,120,36],[126,33,120,37],[127,8,121,12,"signedExtensions"],[127,24,121,28],[127,26,121,30],[127,30,121,34],[127,31,121,35,"signedExtensions"],[127,47,121,51],[127,48,121,52,"map"],[127,51,121,55],[127,52,121,57,"e"],[127,53,121,58],[127,57,121,63,"e"],[127,58,121,64],[127,59,121,65,"toString"],[127,67,121,73],[127,68,121,74],[127,69,121,75],[127,70,121,76],[128,8,122,12,"specVersion"],[128,19,122,23],[128,21,122,25],[128,25,122,29],[128,26,122,30,"runtimeVersion"],[128,40,122,44],[128,41,122,45,"specVersion"],[128,52,122,56],[128,53,122,57,"toHex"],[128,58,122,62],[128,59,122,63],[128,60,122,64],[129,8,123,12,"tip"],[129,11,123,15],[129,13,123,17],[129,17,123,21],[129,18,123,22,"tip"],[129,21,123,25],[129,22,123,26,"toHex"],[129,27,123,31],[129,28,123,32],[129,29,123,33],[130,8,124,12,"transactionVersion"],[130,26,124,30],[130,28,124,32],[130,32,124,36],[130,33,124,37,"runtimeVersion"],[130,47,124,51],[130,48,124,52,"transactionVersion"],[130,66,124,70],[130,67,124,71,"toHex"],[130,72,124,76],[130,73,124,77],[130,74,124,78],[131,8,125,12,"version"],[131,15,125,19],[131,17,125,21],[131,21,125,25],[131,22,125,26,"version"],[131,29,125,33],[131,30,125,34,"toNumber"],[131,38,125,42],[131,39,125,43],[131,40,125,44],[132,8,126,12,"withSignedTransaction"],[132,29,126,33],[132,31,126,35],[132,35,126,39],[132,36,126,40,"withSignedTransaction"],[133,6,127,8],[133,7,127,9],[133,8,127,10],[134,4,128,4],[135,4,129,4],[136,0,130,0],[137,0,131,0],[138,4,132,4,"toRaw"],[138,9,132,9,"toRaw"],[138,10,132,9],[138,12,132,12],[139,6,133,8],[139,12,133,14,"payload"],[139,19,133,21],[139,22,133,24],[139,26,133,28],[139,27,133,29,"toPayload"],[139,36,133,38],[139,37,133,39],[139,38,133,40],[140,6,134,8],[140,12,134,14,"data"],[140,16,134,18],[140,19,134,21],[140,20,134,22],[140,21,134,23],[140,23,134,25,"util_1"],[140,29,134,31],[140,30,134,32,"u8aToHex"],[140,38,134,40],[140,40,134,42],[140,44,134,46],[140,45,134,47,"registry"],[140,53,134,55],[140,54,135,13,"createTypeUnsafe"],[140,70,135,29],[140,71,135,30],[140,89,135,48],[140,91,135,50],[140,92,135,51,"payload"],[140,99,135,58],[140,101,135,60],[141,8,135,62,"version"],[141,15,135,69],[141,17,135,71,"payload"],[141,24,135,78],[141,25,135,79,"version"],[142,6,135,87],[142,7,135,88],[142,8,135,89],[143,6,136,12],[144,6,136,12],[144,7,137,13,"toU8a"],[144,12,137,18],[144,13,137,19],[145,8,137,21,"method"],[145,14,137,27],[145,16,137,29],[146,6,137,34],[146,7,137,35],[146,8,137,36],[146,9,137,37],[147,6,138,8],[147,13,138,15],[148,8,139,12,"address"],[148,15,139,19],[148,17,139,21,"payload"],[148,24,139,28],[148,25,139,29,"address"],[148,32,139,36],[149,8,140,12,"data"],[149,12,140,16],[150,8,141,12,"type"],[150,12,141,16],[150,14,141,18],[151,6,142,8],[151,7,142,9],[152,4,143,4],[153,2,144,0],[154,2,145,0,"exports"],[154,9,145,7],[154,10,145,8,"GenericSignerPayload"],[154,30,145,28],[154,33,145,31,"GenericSignerPayload"],[154,53,145,51],[155,0,145,52],[155,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;AC0B;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":true},"type":"js/module"}]} |