mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 06:31:03 +00:00
1 line
23 KiB
Plaintext
1 line
23 KiB
Plaintext
{"dependencies":[{"name":"@polkadot/types-codec","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":1,"column":0,"index":0},"end":{"line":1,"column":47,"index":47}}],"key":"4J9mGJyxcRzjwnWeFPHBw1ClKiw=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":2,"column":0,"index":48},"end":{"line":2,"column":105,"index":153}}],"key":"ISHU1ovvPMrCldqRjtd1JhW9dyo=","exportNames":["*"],"imports":1}},{"name":"../constants.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":3,"column":0,"index":154},"end":{"line":3,"column":58,"index":212}}],"key":"w33QN4nlqAZn5CNK6M5HKbLWgBA=","exportNames":["*"],"imports":1}},{"name":"./ExtrinsicPayload.js","data":{"asyncType":null,"isESMImport":true,"locs":[{"start":{"line":4,"column":0,"index":213},"end":{"line":4,"column":66,"index":279}}],"key":"mnp6tPpk9J+pK4o4FByyVR4iWjI=","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, \"GenericExtrinsicSignatureV4\", {\n enumerable: true,\n get: function () {\n return GenericExtrinsicSignatureV4;\n }\n });\n var _polkadotTypesCodec = require(_dependencyMap[0], \"@polkadot/types-codec\");\n var _polkadotUtil = require(_dependencyMap[1], \"@polkadot/util\");\n var _constantsJs = require(_dependencyMap[2], \"../constants.js\");\n var _ExtrinsicPayloadJs = require(_dependencyMap[3], \"./ExtrinsicPayload.js\");\n const FAKE_SIGNATURE = new Uint8Array(256).fill(1);\n function toAddress(registry, address) {\n return registry.createTypeUnsafe('Address', [(0, _polkadotUtil.isU8a)(address) ? (0, _polkadotUtil.u8aToHex)(address) : address]);\n }\n /**\n * @name GenericExtrinsicSignatureV4\n * @description\n * A container for the [[Signature]] associated with a specific [[Extrinsic]]\n */\n class GenericExtrinsicSignatureV4 extends _polkadotTypesCodec.Struct {\n #signKeys;\n constructor(registry, value, {\n isSigned\n } = {}) {\n const signTypes = registry.getSignedExtensionTypes();\n super(registry, (0, _polkadotUtil.objectSpread)(\n // eslint-disable-next-line sort-keys\n {\n signer: 'Address',\n signature: 'ExtrinsicSignature'\n }, signTypes), GenericExtrinsicSignatureV4.decodeExtrinsicSignature(value, isSigned));\n this.#signKeys = Object.keys(signTypes);\n (0, _polkadotUtil.objectProperties)(this, this.#signKeys, k => this.get(k));\n }\n /** @internal */\n static decodeExtrinsicSignature(value, isSigned = false) {\n if (!value) {\n return _constantsJs.EMPTY_U8A;\n } else if (value instanceof GenericExtrinsicSignatureV4) {\n return value;\n }\n return isSigned ? value : _constantsJs.EMPTY_U8A;\n }\n /**\n * @description The length of the value when encoded as a Uint8Array\n */\n get encodedLength() {\n return this.isSigned ? super.encodedLength : 0;\n }\n /**\n * @description `true` if the signature is valid\n */\n get isSigned() {\n return !this.signature.isEmpty;\n }\n /**\n * @description The [[ExtrinsicEra]] (mortal or immortal) this signature applies to\n */\n get era() {\n return this.getT('era');\n }\n /**\n * @description The [[Index]] for the signature\n */\n get nonce() {\n return this.getT('nonce');\n }\n /**\n * @description The actual [[EcdsaSignature]], [[Ed25519Signature]] or [[Sr25519Signature]]\n */\n get signature() {\n // the second case here is when we don't have an enum signature, treat as raw\n return this.multiSignature.value || this.multiSignature;\n }\n /**\n * @description The raw [[ExtrinsicSignature]]\n */\n get multiSignature() {\n return this.getT('signature');\n }\n /**\n * @description The [[Address]] that signed\n */\n get signer() {\n return this.getT('signer');\n }\n /**\n * @description The [[Balance]] tip\n */\n get tip() {\n return this.getT('tip');\n }\n /**\n * @description The [[u32]] or [[MultiLocation]] assetId\n */\n get assetId() {\n return this.getT('assetId');\n }\n /**\n * @description the [[u32]] mode\n */\n get mode() {\n return this.getT('mode');\n }\n /**\n * @description The [[Hash]] for the metadata\n */\n get metadataHash() {\n return this.getT('metadataHash');\n }\n _injectSignature(signer, signature, payload) {\n // use the fields exposed to guide the getters\n for (let i = 0, count = this.#signKeys.length; i < count; i++) {\n const k = this.#signKeys[i];\n const v = payload.get(k);\n if (!(0, _polkadotUtil.isUndefined)(v)) {\n this.set(k, v);\n }\n }\n // additional fields (exposed in struct itself)\n this.set('signer', signer);\n this.set('signature', signature);\n return this;\n }\n /**\n * @description Adds a raw signature\n */\n addSignature(signer, signature, payload) {\n return this._injectSignature(toAddress(this.registry, signer), this.registry.createTypeUnsafe('ExtrinsicSignature', [signature]), new _ExtrinsicPayloadJs.GenericExtrinsicPayloadV4(this.registry, payload));\n }\n /**\n * @description Creates a payload from the supplied options\n */\n createPayload(method, options) {\n const {\n era,\n runtimeVersion: {\n specVersion,\n transactionVersion\n }\n } = options;\n return new _ExtrinsicPayloadJs.GenericExtrinsicPayloadV4(this.registry, (0, _polkadotUtil.objectSpread)({}, options, {\n era: era || _constantsJs.IMMORTAL_ERA,\n method: method.toHex(),\n specVersion,\n transactionVersion\n }));\n }\n /**\n * @description Generate a payload and applies the signature from a keypair\n */\n sign(method, account, options) {\n if (!account?.addressRaw) {\n throw new Error(`Expected a valid keypair for signing, found ${(0, _polkadotUtil.stringify)(account)}`);\n }\n const payload = this.createPayload(method, options);\n return this._injectSignature(toAddress(this.registry, account.addressRaw), this.registry.createTypeUnsafe('ExtrinsicSignature', [payload.sign(account)]), payload);\n }\n /**\n * @description Generate a payload and applies a fake signature\n */\n signFake(method, address, options) {\n if (!address) {\n throw new Error(`Expected a valid address for signing, found ${(0, _polkadotUtil.stringify)(address)}`);\n }\n const payload = this.createPayload(method, options);\n return this._injectSignature(toAddress(this.registry, address), this.registry.createTypeUnsafe('ExtrinsicSignature', [FAKE_SIGNATURE]), payload);\n }\n /**\n * @description Encodes the value as a Uint8Array as per the SCALE specifications\n * @param isBare true when the value has none of the type-specific prefixes (internal)\n */\n toU8a(isBare) {\n return this.isSigned ? super.toU8a(isBare) : _constantsJs.EMPTY_U8A;\n }\n }\n});","lineCount":183,"map":[[7,2,14,0,"Object"],[7,8,14,0],[7,9,14,0,"defineProperty"],[7,23,14,0],[7,24,14,0,"exports"],[7,31,14,0],[8,4,14,0,"enumerable"],[8,14,14,0],[9,4,14,0,"get"],[9,7,14,0],[9,18,14,0,"get"],[9,19,14,0],[10,6,14,0],[10,13,14,0,"GenericExtrinsicSignatureV4"],[10,40,14,0],[11,4,14,0],[12,2,14,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,6,3,0,"_constantsJs"],[15,18,3,0],[15,21,3,0,"require"],[15,28,3,0],[15,29,3,0,"_dependencyMap"],[15,43,3,0],[16,2,4,0],[16,6,4,0,"_ExtrinsicPayloadJs"],[16,25,4,0],[16,28,4,0,"require"],[16,35,4,0],[16,36,4,0,"_dependencyMap"],[16,50,4,0],[17,2,5,0],[17,8,5,6,"FAKE_SIGNATURE"],[17,22,5,20],[17,25,5,23],[17,29,5,27,"Uint8Array"],[17,39,5,37],[17,40,5,38],[17,43,5,41],[17,44,5,42],[17,45,5,43,"fill"],[17,49,5,47],[17,50,5,48],[17,51,5,49],[17,52,5,50],[18,2,6,0],[18,11,6,9,"toAddress"],[18,20,6,18,"toAddress"],[18,21,6,19,"registry"],[18,29,6,27],[18,31,6,29,"address"],[18,38,6,36],[18,40,6,38],[19,4,7,4],[19,11,7,11,"registry"],[19,19,7,19],[19,20,7,20,"createTypeUnsafe"],[19,36,7,36],[19,37,7,37],[19,46,7,46],[19,48,7,48],[19,49,7,49],[19,53,7,49,"isU8a"],[19,66,7,54],[19,67,7,54,"isU8a"],[19,72,7,54],[19,74,7,55,"address"],[19,81,7,62],[19,82,7,63],[19,85,7,66],[19,89,7,66,"u8aToHex"],[19,102,7,74],[19,103,7,74,"u8aToHex"],[19,111,7,74],[19,113,7,75,"address"],[19,120,7,82],[19,121,7,83],[19,124,7,86,"address"],[19,131,7,93],[19,132,7,94],[19,133,7,95],[20,2,8,0],[21,2,9,0],[22,0,10,0],[23,0,11,0],[24,0,12,0],[25,0,13,0],[26,2,14,7],[26,8,14,13,"GenericExtrinsicSignatureV4"],[26,35,14,40],[26,44,14,49,"Struct"],[26,63,14,55],[26,64,14,55,"Struct"],[26,70,14,55],[26,71,14,56],[27,4,15,4],[27,5,15,5,"signKeys"],[27,13,15,13],[28,4,16,4,"constructor"],[28,15,16,15,"constructor"],[28,16,16,16,"registry"],[28,24,16,24],[28,26,16,26,"value"],[28,31,16,31],[28,33,16,33],[29,6,16,35,"isSigned"],[30,4,16,44],[30,5,16,45],[30,8,16,48],[30,9,16,49],[30,10,16,50],[30,12,16,52],[31,6,17,8],[31,12,17,14,"signTypes"],[31,21,17,23],[31,24,17,26,"registry"],[31,32,17,34],[31,33,17,35,"getSignedExtensionTypes"],[31,56,17,58],[31,57,17,59],[31,58,17,60],[32,6,18,8],[32,11,18,13],[32,12,18,14,"registry"],[32,20,18,22],[32,22,18,24],[32,26,18,24,"objectSpread"],[32,39,18,36],[32,40,18,36,"objectSpread"],[32,52,18,36],[33,6,19,8],[34,6,20,8],[35,8,20,10,"signer"],[35,14,20,16],[35,16,20,18],[35,25,20,27],[36,8,20,29,"signature"],[36,17,20,38],[36,19,20,40],[37,6,20,61],[37,7,20,62],[37,9,20,64,"signTypes"],[37,18,20,73],[37,19,20,74],[37,21,20,76,"GenericExtrinsicSignatureV4"],[37,48,20,103],[37,49,20,104,"decodeExtrinsicSignature"],[37,73,20,128],[37,74,20,129,"value"],[37,79,20,134],[37,81,20,136,"isSigned"],[37,89,20,144],[37,90,20,145],[37,91,20,146],[38,6,21,8],[38,10,21,12],[38,11,21,13],[38,12,21,14,"signKeys"],[38,20,21,22],[38,23,21,25,"Object"],[38,29,21,31],[38,30,21,32,"keys"],[38,34,21,36],[38,35,21,37,"signTypes"],[38,44,21,46],[38,45,21,47],[39,6,22,8],[39,10,22,8,"objectProperties"],[39,23,22,24],[39,24,22,24,"objectProperties"],[39,40,22,24],[39,42,22,25],[39,46,22,29],[39,48,22,31],[39,52,22,35],[39,53,22,36],[39,54,22,37,"signKeys"],[39,62,22,45],[39,64,22,48,"k"],[39,65,22,49],[39,69,22,54],[39,73,22,58],[39,74,22,59,"get"],[39,77,22,62],[39,78,22,63,"k"],[39,79,22,64],[39,80,22,65],[39,81,22,66],[40,4,23,4],[41,4,24,4],[42,4,25,4],[42,11,25,11,"decodeExtrinsicSignature"],[42,35,25,35,"decodeExtrinsicSignature"],[42,36,25,36,"value"],[42,41,25,41],[42,43,25,43,"isSigned"],[42,51,25,51],[42,54,25,54],[42,59,25,59],[42,61,25,61],[43,6,26,8],[43,10,26,12],[43,11,26,13,"value"],[43,16,26,18],[43,18,26,20],[44,8,27,12],[44,15,27,19,"EMPTY_U8A"],[44,27,27,28],[44,28,27,28,"EMPTY_U8A"],[44,37,27,28],[45,6,28,8],[45,7,28,9],[45,13,29,13],[45,17,29,17,"value"],[45,22,29,22],[45,34,29,34,"GenericExtrinsicSignatureV4"],[45,61,29,61],[45,63,29,63],[46,8,30,12],[46,15,30,19,"value"],[46,20,30,24],[47,6,31,8],[48,6,32,8],[48,13,32,15,"isSigned"],[48,21,32,23],[48,24,33,14,"value"],[48,29,33,19],[48,32,34,14,"EMPTY_U8A"],[48,44,34,23],[48,45,34,23,"EMPTY_U8A"],[48,54,34,23],[49,4,35,4],[50,4,36,4],[51,0,37,0],[52,0,38,0],[53,4,39,4],[53,8,39,8,"encodedLength"],[53,21,39,21,"encodedLength"],[53,22,39,21],[53,24,39,24],[54,6,40,8],[54,13,40,15],[54,17,40,19],[54,18,40,20,"isSigned"],[54,26,40,28],[54,29,41,14],[54,34,41,19],[54,35,41,20,"encodedLength"],[54,48,41,33],[54,51,42,14],[54,52,42,15],[55,4,43,4],[56,4,44,4],[57,0,45,0],[58,0,46,0],[59,4,47,4],[59,8,47,8,"isSigned"],[59,16,47,16,"isSigned"],[59,17,47,16],[59,19,47,19],[60,6,48,8],[60,13,48,15],[60,14,48,16],[60,18,48,20],[60,19,48,21,"signature"],[60,28,48,30],[60,29,48,31,"isEmpty"],[60,36,48,38],[61,4,49,4],[62,4,50,4],[63,0,51,0],[64,0,52,0],[65,4,53,4],[65,8,53,8,"era"],[65,11,53,11,"era"],[65,12,53,11],[65,14,53,14],[66,6,54,8],[66,13,54,15],[66,17,54,19],[66,18,54,20,"getT"],[66,22,54,24],[66,23,54,25],[66,28,54,30],[66,29,54,31],[67,4,55,4],[68,4,56,4],[69,0,57,0],[70,0,58,0],[71,4,59,4],[71,8,59,8,"nonce"],[71,13,59,13,"nonce"],[71,14,59,13],[71,16,59,16],[72,6,60,8],[72,13,60,15],[72,17,60,19],[72,18,60,20,"getT"],[72,22,60,24],[72,23,60,25],[72,30,60,32],[72,31,60,33],[73,4,61,4],[74,4,62,4],[75,0,63,0],[76,0,64,0],[77,4,65,4],[77,8,65,8,"signature"],[77,17,65,17,"signature"],[77,18,65,17],[77,20,65,20],[78,6,66,8],[79,6,67,8],[79,13,67,16],[79,17,67,20],[79,18,67,21,"multiSignature"],[79,32,67,35],[79,33,67,36,"value"],[79,38,67,41],[79,42,67,45],[79,46,67,49],[79,47,67,50,"multiSignature"],[79,61,67,64],[80,4,68,4],[81,4,69,4],[82,0,70,0],[83,0,71,0],[84,4,72,4],[84,8,72,8,"multiSignature"],[84,22,72,22,"multiSignature"],[84,23,72,22],[84,25,72,25],[85,6,73,8],[85,13,73,15],[85,17,73,19],[85,18,73,20,"getT"],[85,22,73,24],[85,23,73,25],[85,34,73,36],[85,35,73,37],[86,4,74,4],[87,4,75,4],[88,0,76,0],[89,0,77,0],[90,4,78,4],[90,8,78,8,"signer"],[90,14,78,14,"signer"],[90,15,78,14],[90,17,78,17],[91,6,79,8],[91,13,79,15],[91,17,79,19],[91,18,79,20,"getT"],[91,22,79,24],[91,23,79,25],[91,31,79,33],[91,32,79,34],[92,4,80,4],[93,4,81,4],[94,0,82,0],[95,0,83,0],[96,4,84,4],[96,8,84,8,"tip"],[96,11,84,11,"tip"],[96,12,84,11],[96,14,84,14],[97,6,85,8],[97,13,85,15],[97,17,85,19],[97,18,85,20,"getT"],[97,22,85,24],[97,23,85,25],[97,28,85,30],[97,29,85,31],[98,4,86,4],[99,4,87,4],[100,0,88,0],[101,0,89,0],[102,4,90,4],[102,8,90,8,"assetId"],[102,15,90,15,"assetId"],[102,16,90,15],[102,18,90,18],[103,6,91,8],[103,13,91,15],[103,17,91,19],[103,18,91,20,"getT"],[103,22,91,24],[103,23,91,25],[103,32,91,34],[103,33,91,35],[104,4,92,4],[105,4,93,4],[106,0,94,0],[107,0,95,0],[108,4,96,4],[108,8,96,8,"mode"],[108,12,96,12,"mode"],[108,13,96,12],[108,15,96,15],[109,6,97,8],[109,13,97,15],[109,17,97,19],[109,18,97,20,"getT"],[109,22,97,24],[109,23,97,25],[109,29,97,31],[109,30,97,32],[110,4,98,4],[111,4,99,4],[112,0,100,0],[113,0,101,0],[114,4,102,4],[114,8,102,8,"metadataHash"],[114,20,102,20,"metadataHash"],[114,21,102,20],[114,23,102,23],[115,6,103,8],[115,13,103,15],[115,17,103,19],[115,18,103,20,"getT"],[115,22,103,24],[115,23,103,25],[115,37,103,39],[115,38,103,40],[116,4,104,4],[117,4,105,4,"_injectSignature"],[117,20,105,20,"_injectSignature"],[117,21,105,21,"signer"],[117,27,105,27],[117,29,105,29,"signature"],[117,38,105,38],[117,40,105,40,"payload"],[117,47,105,47],[117,49,105,49],[118,6,106,8],[119,6,107,8],[119,11,107,13],[119,15,107,17,"i"],[119,16,107,18],[119,19,107,21],[119,20,107,22],[119,22,107,24,"count"],[119,27,107,29],[119,30,107,32],[119,34,107,36],[119,35,107,37],[119,36,107,38,"signKeys"],[119,44,107,46],[119,45,107,47,"length"],[119,51,107,53],[119,53,107,55,"i"],[119,54,107,56],[119,57,107,59,"count"],[119,62,107,64],[119,64,107,66,"i"],[119,65,107,67],[119,67,107,69],[119,69,107,71],[120,8,108,12],[120,14,108,18,"k"],[120,15,108,19],[120,18,108,22],[120,22,108,26],[120,23,108,27],[120,24,108,28,"signKeys"],[120,32,108,36],[120,33,108,37,"i"],[120,34,108,38],[120,35,108,39],[121,8,109,12],[121,14,109,18,"v"],[121,15,109,19],[121,18,109,22,"payload"],[121,25,109,29],[121,26,109,30,"get"],[121,29,109,33],[121,30,109,34,"k"],[121,31,109,35],[121,32,109,36],[122,8,110,12],[122,12,110,16],[122,13,110,17],[122,17,110,17,"isUndefined"],[122,30,110,28],[122,31,110,28,"isUndefined"],[122,42,110,28],[122,44,110,29,"v"],[122,45,110,30],[122,46,110,31],[122,48,110,33],[123,10,111,16],[123,14,111,20],[123,15,111,21,"set"],[123,18,111,24],[123,19,111,25,"k"],[123,20,111,26],[123,22,111,28,"v"],[123,23,111,29],[123,24,111,30],[124,8,112,12],[125,6,113,8],[126,6,114,8],[127,6,115,8],[127,10,115,12],[127,11,115,13,"set"],[127,14,115,16],[127,15,115,17],[127,23,115,25],[127,25,115,27,"signer"],[127,31,115,33],[127,32,115,34],[128,6,116,8],[128,10,116,12],[128,11,116,13,"set"],[128,14,116,16],[128,15,116,17],[128,26,116,28],[128,28,116,30,"signature"],[128,37,116,39],[128,38,116,40],[129,6,117,8],[129,13,117,15],[129,17,117,19],[130,4,118,4],[131,4,119,4],[132,0,120,0],[133,0,121,0],[134,4,122,4,"addSignature"],[134,16,122,16,"addSignature"],[134,17,122,17,"signer"],[134,23,122,23],[134,25,122,25,"signature"],[134,34,122,34],[134,36,122,36,"payload"],[134,43,122,43],[134,45,122,45],[135,6,123,8],[135,13,123,15],[135,17,123,19],[135,18,123,20,"_injectSignature"],[135,34,123,36],[135,35,123,37,"toAddress"],[135,44,123,46],[135,45,123,47],[135,49,123,51],[135,50,123,52,"registry"],[135,58,123,60],[135,60,123,62,"signer"],[135,66,123,68],[135,67,123,69],[135,69,123,71],[135,73,123,75],[135,74,123,76,"registry"],[135,82,123,84],[135,83,123,85,"createTypeUnsafe"],[135,99,123,101],[135,100,123,102],[135,120,123,122],[135,122,123,124],[135,123,123,125,"signature"],[135,132,123,134],[135,133,123,135],[135,134,123,136],[135,136,123,138],[135,140,123,142,"GenericExtrinsicPayloadV4"],[135,159,123,167],[135,160,123,167,"GenericExtrinsicPayloadV4"],[135,185,123,167],[135,186,123,168],[135,190,123,172],[135,191,123,173,"registry"],[135,199,123,181],[135,201,123,183,"payload"],[135,208,123,190],[135,209,123,191],[135,210,123,192],[136,4,124,4],[137,4,125,4],[138,0,126,0],[139,0,127,0],[140,4,128,4,"createPayload"],[140,17,128,17,"createPayload"],[140,18,128,18,"method"],[140,24,128,24],[140,26,128,26,"options"],[140,33,128,33],[140,35,128,35],[141,6,129,8],[141,12,129,14],[142,8,129,16,"era"],[142,11,129,19],[143,8,129,21,"runtimeVersion"],[143,22,129,35],[143,24,129,37],[144,10,129,39,"specVersion"],[144,21,129,50],[145,10,129,52,"transactionVersion"],[146,8,129,71],[147,6,129,73],[147,7,129,74],[147,10,129,77,"options"],[147,17,129,84],[148,6,130,8],[148,13,130,15],[148,17,130,19,"GenericExtrinsicPayloadV4"],[148,36,130,44],[148,37,130,44,"GenericExtrinsicPayloadV4"],[148,62,130,44],[148,63,130,45],[148,67,130,49],[148,68,130,50,"registry"],[148,76,130,58],[148,78,130,60],[148,82,130,60,"objectSpread"],[148,95,130,72],[148,96,130,72,"objectSpread"],[148,108,130,72],[148,110,130,73],[148,111,130,74],[148,112,130,75],[148,114,130,77,"options"],[148,121,130,84],[148,123,130,86],[149,8,131,12,"era"],[149,11,131,15],[149,13,131,17,"era"],[149,16,131,20],[149,20,131,24,"IMMORTAL_ERA"],[149,32,131,36],[149,33,131,36,"IMMORTAL_ERA"],[149,45,131,36],[150,8,132,12,"method"],[150,14,132,18],[150,16,132,20,"method"],[150,22,132,26],[150,23,132,27,"toHex"],[150,28,132,32],[150,29,132,33],[150,30,132,34],[151,8,133,12,"specVersion"],[151,19,133,23],[152,8,134,12,"transactionVersion"],[153,6,135,8],[153,7,135,9],[153,8,135,10],[153,9,135,11],[154,4,136,4],[155,4,137,4],[156,0,138,0],[157,0,139,0],[158,4,140,4,"sign"],[158,8,140,8,"sign"],[158,9,140,9,"method"],[158,15,140,15],[158,17,140,17,"account"],[158,24,140,24],[158,26,140,26,"options"],[158,33,140,33],[158,35,140,35],[159,6,141,8],[159,10,141,12],[159,11,141,13,"account"],[159,18,141,20],[159,20,141,22,"addressRaw"],[159,30,141,32],[159,32,141,34],[160,8,142,12],[160,14,142,18],[160,18,142,22,"Error"],[160,23,142,27],[160,24,142,28],[160,71,142,75],[160,75,142,75,"stringify"],[160,88,142,84],[160,89,142,84,"stringify"],[160,98,142,84],[160,100,142,85,"account"],[160,107,142,92],[160,108,142,93],[160,110,142,95],[160,111,142,96],[161,6,143,8],[162,6,144,8],[162,12,144,14,"payload"],[162,19,144,21],[162,22,144,24],[162,26,144,28],[162,27,144,29,"createPayload"],[162,40,144,42],[162,41,144,43,"method"],[162,47,144,49],[162,49,144,51,"options"],[162,56,144,58],[162,57,144,59],[163,6,145,8],[163,13,145,15],[163,17,145,19],[163,18,145,20,"_injectSignature"],[163,34,145,36],[163,35,145,37,"toAddress"],[163,44,145,46],[163,45,145,47],[163,49,145,51],[163,50,145,52,"registry"],[163,58,145,60],[163,60,145,62,"account"],[163,67,145,69],[163,68,145,70,"addressRaw"],[163,78,145,80],[163,79,145,81],[163,81,145,83],[163,85,145,87],[163,86,145,88,"registry"],[163,94,145,96],[163,95,145,97,"createTypeUnsafe"],[163,111,145,113],[163,112,145,114],[163,132,145,134],[163,134,145,136],[163,135,145,137,"payload"],[163,142,145,144],[163,143,145,145,"sign"],[163,147,145,149],[163,148,145,150,"account"],[163,155,145,157],[163,156,145,158],[163,157,145,159],[163,158,145,160],[163,160,145,162,"payload"],[163,167,145,169],[163,168,145,170],[164,4,146,4],[165,4,147,4],[166,0,148,0],[167,0,149,0],[168,4,150,4,"signFake"],[168,12,150,12,"signFake"],[168,13,150,13,"method"],[168,19,150,19],[168,21,150,21,"address"],[168,28,150,28],[168,30,150,30,"options"],[168,37,150,37],[168,39,150,39],[169,6,151,8],[169,10,151,12],[169,11,151,13,"address"],[169,18,151,20],[169,20,151,22],[170,8,152,12],[170,14,152,18],[170,18,152,22,"Error"],[170,23,152,27],[170,24,152,28],[170,71,152,75],[170,75,152,75,"stringify"],[170,88,152,84],[170,89,152,84,"stringify"],[170,98,152,84],[170,100,152,85,"address"],[170,107,152,92],[170,108,152,93],[170,110,152,95],[170,111,152,96],[171,6,153,8],[172,6,154,8],[172,12,154,14,"payload"],[172,19,154,21],[172,22,154,24],[172,26,154,28],[172,27,154,29,"createPayload"],[172,40,154,42],[172,41,154,43,"method"],[172,47,154,49],[172,49,154,51,"options"],[172,56,154,58],[172,57,154,59],[173,6,155,8],[173,13,155,15],[173,17,155,19],[173,18,155,20,"_injectSignature"],[173,34,155,36],[173,35,155,37,"toAddress"],[173,44,155,46],[173,45,155,47],[173,49,155,51],[173,50,155,52,"registry"],[173,58,155,60],[173,60,155,62,"address"],[173,67,155,69],[173,68,155,70],[173,70,155,72],[173,74,155,76],[173,75,155,77,"registry"],[173,83,155,85],[173,84,155,86,"createTypeUnsafe"],[173,100,155,102],[173,101,155,103],[173,121,155,123],[173,123,155,125],[173,124,155,126,"FAKE_SIGNATURE"],[173,138,155,140],[173,139,155,141],[173,140,155,142],[173,142,155,144,"payload"],[173,149,155,151],[173,150,155,152],[174,4,156,4],[175,4,157,4],[176,0,158,0],[177,0,159,0],[178,0,160,0],[179,4,161,4,"toU8a"],[179,9,161,9,"toU8a"],[179,10,161,10,"isBare"],[179,16,161,16],[179,18,161,18],[180,6,162,8],[180,13,162,15],[180,17,162,19],[180,18,162,20,"isSigned"],[180,26,162,28],[180,29,163,14],[180,34,163,19],[180,35,163,20,"toU8a"],[180,40,163,25],[180,41,163,26,"isBare"],[180,47,163,32],[180,48,163,33],[180,51,164,14,"EMPTY_U8A"],[180,63,164,23],[180,64,164,23,"EMPTY_U8A"],[180,73,164,23],[181,4,165,4],[182,2,166,0],[183,0,166,1],[183,3]],"functionMap":{"names":["<global>","toAddress","GenericExtrinsicSignatureV4","GenericExtrinsicSignatureV4#constructor","objectProperties$argument_2","GenericExtrinsicSignatureV4.decodeExtrinsicSignature","GenericExtrinsicSignatureV4#get__encodedLength","GenericExtrinsicSignatureV4#get__isSigned","GenericExtrinsicSignatureV4#get__era","GenericExtrinsicSignatureV4#get__nonce","GenericExtrinsicSignatureV4#get__signature","GenericExtrinsicSignatureV4#get__multiSignature","GenericExtrinsicSignatureV4#get__signer","GenericExtrinsicSignatureV4#get__tip","GenericExtrinsicSignatureV4#get__assetId","GenericExtrinsicSignatureV4#get__mode","GenericExtrinsicSignatureV4#get__metadataHash","GenericExtrinsicSignatureV4#_injectSignature","GenericExtrinsicSignatureV4#addSignature","GenericExtrinsicSignatureV4#createPayload","GenericExtrinsicSignatureV4#sign","GenericExtrinsicSignatureV4#signFake","GenericExtrinsicSignatureV4#toU8a"],"mappings":"AAA;ACK;CDE;OEM;ICE;+CCM,kBD;KDC;IGE;KHU;III;KJI;IKI;KLE;IMI;KNE;IOI;KPE;IQI;KRG;ISI;KTE;IUI;KVE;IWI;KXE;IYI;KZE;IaI;KbE;IcI;KdE;IeC;Kfa;IgBI;KhBE;IiBI;KjBQ;IkBI;KlBM;ImBI;KnBM;IoBK;KpBI;CFC"},"hasCjsExports":false},"type":"js/module"}]} |