mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 01:51:03 +00:00
1 line
19 KiB
Plaintext
1 line
19 KiB
Plaintext
{"dependencies":[{"name":"@babel/runtime/helpers/slicedToArray","data":{"asyncType":null,"isESMImport":false,"locs":[],"key":"5y7e5+zC7teYEEC6niD9f5zII1M=","exportNames":["*"],"imports":1}},{"name":"rxjs","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":4,"column":15,"index":127},"end":{"line":4,"column":30,"index":142}}],"key":"atDzfUGaJNRNtwyVumomzH/5ygw=","exportNames":["*"],"imports":1}},{"name":"@polkadot/util","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":15,"index":159},"end":{"line":5,"column":40,"index":184}}],"key":"u0mzEw2nilnHoUWtEdZl0JKHutA=","exportNames":["*"],"imports":1}},{"name":"../util/index.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":6,"column":19,"index":205},"end":{"line":6,"column":46,"index":232}}],"key":"H94lp+EitftSFqDHaenrSs5zKB0=","exportNames":["*"],"imports":1}},{"name":"./constants.js","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":7,"column":23,"index":257},"end":{"line":7,"column":48,"index":282}}],"key":"GyCTB975X6u9hfNjUsMXB4zkCjA=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n \"use strict\";\n\n var _slicedToArray = require(_dependencyMap[0], \"@babel/runtime/helpers/slicedToArray\").default;\n Object.defineProperty(exports, \"__esModule\", {\n value: true\n });\n exports.signingInfo = signingInfo;\n var rxjs_1 = require(_dependencyMap[1], \"rxjs\");\n var util_1 = require(_dependencyMap[2], \"@polkadot/util\");\n var index_js_1 = require(_dependencyMap[3], \"../util/index.js\");\n var constants_js_1 = require(_dependencyMap[4], \"./constants.js\");\n function latestNonce(api, address) {\n return api.derive.balances.account(address).pipe((0, rxjs_1.map)(function (_ref) {\n var accountNonce = _ref.accountNonce;\n return accountNonce;\n }));\n }\n function nextNonce(api, address) {\n if (api.call.accountNonceApi) {\n return api.call.accountNonceApi.accountNonce(address);\n } else {\n var _api$rpc$system;\n return (_api$rpc$system = api.rpc.system) != null && _api$rpc$system.accountNextIndex ? api.rpc.system.accountNextIndex(address) : latestNonce(api, address);\n }\n }\n function signingHeader(api) {\n return (0, rxjs_1.combineLatest)([api.rpc.chain.getHeader().pipe((0, rxjs_1.switchMap)(function (header) {\n return (\n // check for chains at genesis (until block 1 is produced, e.g. 6s), since\n // we do need to allow transactions at chain start (also dev/seal chains)\n header.parentHash.isEmpty ? (0, rxjs_1.of)(header)\n // in the case of the current block, we use the parent to minimize the\n // impact of forks on the system, but not completely remove it\n : api.rpc.chain.getHeader(header.parentHash).pipe((0, rxjs_1.catchError)(function () {\n return (0, rxjs_1.of)(header);\n }))\n );\n })), api.rpc.chain.getFinalizedHead().pipe((0, rxjs_1.switchMap)(function (hash) {\n return api.rpc.chain.getHeader(hash).pipe((0, rxjs_1.catchError)(function () {\n return (0, rxjs_1.of)(null);\n }));\n }))]).pipe((0, rxjs_1.map)(function (_ref2) {\n var _ref3 = _slicedToArray(_ref2, 2),\n current = _ref3[0],\n finalized = _ref3[1];\n return (\n // determine the hash to use, current when lag > max, else finalized\n !finalized || (0, index_js_1.unwrapBlockNumber)(current).sub((0, index_js_1.unwrapBlockNumber)(finalized)).gt(constants_js_1.MAX_FINALITY_LAG) ? current : finalized\n );\n }));\n }\n function babeOrAuraPeriod(api) {\n var _api$consts$babe, _api$consts$aura, _api$consts$timestamp;\n var period = ((_api$consts$babe = api.consts.babe) == null ? void 0 : _api$consts$babe.expectedBlockTime) || (// this will be present ones https://github.com/paritytech/polkadot-sdk/pull/3732 is merged\n // eslint-disable-next-line\n (_api$consts$aura = api.consts['aura']) == null ? void 0 : _api$consts$aura['slotDuration']) || ((_api$consts$timestamp = api.consts.timestamp) == null ? void 0 : _api$consts$timestamp.minimumPeriod.muln(2));\n return period && period.isZero && !period.isZero() ? period : undefined;\n }\n /**\n * @name signingInfo\n * @description Retrieves signing-related information for an account, including the nonce, block header, and mortal length.\n * @param {string} address The account address for which signing information is needed.\n * @param { BN | bigint | Uint8Array | number | string } nonce? (Optional) The nonce to use. If `undefined`, the latest nonce is retrieved.\n * @param { IExtrinsicEra | number } era? (Optional) The transaction era.\n * @example\n * ```javascript\n * const info = await api.derive.tx.signingInfo(\n * \"14mM9FRDDtwSYicjNxSvMfQkap8o4m9zHq7hNW4JpbSL4PPU\"\n * );\n * console.log(info);\n * ```\n */\n function signingInfo(_instanceId, api) {\n // no memo, we want to do this fresh on each run\n return function (address, nonce, era) {\n return (0, rxjs_1.combineLatest)([\n // retrieve nonce if none was specified\n (0, util_1.isUndefined)(nonce) ? latestNonce(api, address) : nonce === -1 ? nextNonce(api, address) : (0, rxjs_1.of)(api.registry.createType('Index', nonce)),\n // if no era (create) or era > 0 (mortal), do block retrieval\n (0, util_1.isUndefined)(era) || (0, util_1.isNumber)(era) && era > 0 ? signingHeader(api) : (0, rxjs_1.of)(null)]).pipe((0, rxjs_1.map)(function (_ref4) {\n var _api$consts$system;\n var _ref5 = _slicedToArray(_ref4, 2),\n nonce = _ref5[0],\n header = _ref5[1];\n return {\n header: header,\n mortalLength: Math.min(((_api$consts$system = api.consts.system) == null || (_api$consts$system = _api$consts$system.blockHashCount) == null ? void 0 : _api$consts$system.toNumber()) || constants_js_1.FALLBACK_MAX_HASH_COUNT, constants_js_1.MORTAL_PERIOD.div(babeOrAuraPeriod(api) || constants_js_1.FALLBACK_PERIOD).iadd(constants_js_1.MAX_FINALITY_LAG).toNumber()),\n nonce: nonce\n };\n }));\n };\n }\n});","lineCount":94,"map":[[2,2,1,0],[2,14,1,12],[4,2,1,13],[4,6,1,13,"_slicedToArray"],[4,20,1,13],[4,23,1,13,"require"],[4,30,1,13],[4,31,1,13,"_dependencyMap"],[4,45,1,13],[4,90,1,13,"default"],[4,97,1,13],[5,2,2,0,"Object"],[5,8,2,6],[5,9,2,7,"defineProperty"],[5,23,2,21],[5,24,2,22,"exports"],[5,31,2,29],[5,33,2,31],[5,45,2,43],[5,47,2,45],[6,4,2,47,"value"],[6,9,2,52],[6,11,2,54],[7,2,2,59],[7,3,2,60],[7,4,2,61],[8,2,3,0,"exports"],[8,9,3,7],[8,10,3,8,"signingInfo"],[8,21,3,19],[8,24,3,22,"signingInfo"],[8,35,3,33],[9,2,4,0],[9,6,4,6,"rxjs_1"],[9,12,4,12],[9,15,4,15,"require"],[9,22,4,22],[9,23,4,22,"_dependencyMap"],[9,37,4,22],[9,48,4,29],[9,49,4,30],[10,2,5,0],[10,6,5,6,"util_1"],[10,12,5,12],[10,15,5,15,"require"],[10,22,5,22],[10,23,5,22,"_dependencyMap"],[10,37,5,22],[10,58,5,39],[10,59,5,40],[11,2,6,0],[11,6,6,6,"index_js_1"],[11,16,6,16],[11,19,6,19,"require"],[11,26,6,26],[11,27,6,26,"_dependencyMap"],[11,41,6,26],[11,64,6,45],[11,65,6,46],[12,2,7,0],[12,6,7,6,"constants_js_1"],[12,20,7,20],[12,23,7,23,"require"],[12,30,7,30],[12,31,7,30,"_dependencyMap"],[12,45,7,30],[12,66,7,47],[12,67,7,48],[13,2,8,0],[13,11,8,9,"latestNonce"],[13,22,8,20,"latestNonce"],[13,23,8,21,"api"],[13,26,8,24],[13,28,8,26,"address"],[13,35,8,33],[13,37,8,35],[14,4,9,4],[14,11,9,11,"api"],[14,14,9,14],[14,15,9,15,"derive"],[14,21,9,21],[14,22,9,22,"balances"],[14,30,9,30],[14,31,9,31,"account"],[14,38,9,38],[14,39,9,39,"address"],[14,46,9,46],[14,47,9,47],[14,48,9,48,"pipe"],[14,52,9,52],[14,53,9,53],[14,54,9,54],[14,55,9,55],[14,57,9,57,"rxjs_1"],[14,63,9,63],[14,64,9,64,"map"],[14,67,9,67],[14,69,9,69],[14,79,9,69,"_ref"],[14,83,9,69],[15,6,9,69],[15,10,9,72,"accountNonce"],[15,22,9,84],[15,25,9,84,"_ref"],[15,29,9,84],[15,30,9,72,"accountNonce"],[15,42,9,84],[16,6,9,84],[16,13,9,91,"accountNonce"],[16,25,9,103],[17,4,9,103],[17,6,9,104],[17,7,9,105],[18,2,10,0],[19,2,11,0],[19,11,11,9,"nextNonce"],[19,20,11,18,"nextNonce"],[19,21,11,19,"api"],[19,24,11,22],[19,26,11,24,"address"],[19,33,11,31],[19,35,11,33],[20,4,12,4],[20,8,12,8,"api"],[20,11,12,11],[20,12,12,12,"call"],[20,16,12,16],[20,17,12,17,"accountNonceApi"],[20,32,12,32],[20,34,12,34],[21,6,13,8],[21,13,13,15,"api"],[21,16,13,18],[21,17,13,19,"call"],[21,21,13,23],[21,22,13,24,"accountNonceApi"],[21,37,13,39],[21,38,13,40,"accountNonce"],[21,50,13,52],[21,51,13,53,"address"],[21,58,13,60],[21,59,13,61],[22,4,14,4],[22,5,14,5],[22,11,15,9],[23,6,15,9],[23,10,15,9,"_api$rpc$system"],[23,25,15,9],[24,6,16,8],[24,13,16,15],[24,14,16,15,"_api$rpc$system"],[24,29,16,15],[24,32,16,15,"api"],[24,35,16,18],[24,36,16,19,"rpc"],[24,39,16,22],[24,40,16,23,"system"],[24,46,16,29],[24,59,16,15,"_api$rpc$system"],[24,74,16,15],[24,75,16,31,"accountNextIndex"],[24,91,16,47],[24,94,17,14,"api"],[24,97,17,17],[24,98,17,18,"rpc"],[24,101,17,21],[24,102,17,22,"system"],[24,108,17,28],[24,109,17,29,"accountNextIndex"],[24,125,17,45],[24,126,17,46,"address"],[24,133,17,53],[24,134,17,54],[24,137,18,14,"latestNonce"],[24,148,18,25],[24,149,18,26,"api"],[24,152,18,29],[24,154,18,31,"address"],[24,161,18,38],[24,162,18,39],[25,4,19,4],[26,2,20,0],[27,2,21,0],[27,11,21,9,"signingHeader"],[27,24,21,22,"signingHeader"],[27,25,21,23,"api"],[27,28,21,26],[27,30,21,28],[28,4,22,4],[28,11,22,11],[28,12,22,12],[28,13,22,13],[28,15,22,15,"rxjs_1"],[28,21,22,21],[28,22,22,22,"combineLatest"],[28,35,22,35],[28,37,22,37],[28,38,23,8,"api"],[28,41,23,11],[28,42,23,12,"rpc"],[28,45,23,15],[28,46,23,16,"chain"],[28,51,23,21],[28,52,23,22,"getHeader"],[28,61,23,31],[28,62,23,32],[28,63,23,33],[28,64,23,34,"pipe"],[28,68,23,38],[28,69,23,39],[28,70,23,40],[28,71,23,41],[28,73,23,43,"rxjs_1"],[28,79,23,49],[28,80,23,50,"switchMap"],[28,89,23,59],[28,91,23,61],[28,101,23,62,"header"],[28,107,23,68],[29,6,23,68],[30,8,24,8],[31,8,25,8],[32,8,26,8,"header"],[32,14,26,14],[32,15,26,15,"parentHash"],[32,25,26,25],[32,26,26,26,"isEmpty"],[32,33,26,33],[32,36,27,14],[32,37,27,15],[32,38,27,16],[32,40,27,18,"rxjs_1"],[32,46,27,24],[32,47,27,25,"of"],[32,49,27,27],[32,51,27,29,"header"],[32,57,27,35],[33,8,28,12],[34,8,29,12],[35,8,29,12],[35,10,30,14,"api"],[35,13,30,17],[35,14,30,18,"rpc"],[35,17,30,21],[35,18,30,22,"chain"],[35,23,30,27],[35,24,30,28,"getHeader"],[35,33,30,37],[35,34,30,38,"header"],[35,40,30,44],[35,41,30,45,"parentHash"],[35,51,30,55],[35,52,30,56],[35,53,30,57,"pipe"],[35,57,30,61],[35,58,30,62],[35,59,30,63],[35,60,30,64],[35,62,30,66,"rxjs_1"],[35,68,30,72],[35,69,30,73,"catchError"],[35,79,30,83],[35,81,30,85],[36,10,30,85],[36,17,30,91],[36,18,30,92],[36,19,30,93],[36,21,30,95,"rxjs_1"],[36,27,30,101],[36,28,30,102,"of"],[36,30,30,104],[36,32,30,106,"header"],[36,38,30,112],[36,39,30,113],[37,8,30,113],[37,10,30,114],[38,6,30,115],[39,4,30,115],[39,6,30,116],[39,7,30,117],[39,9,31,8,"api"],[39,12,31,11],[39,13,31,12,"rpc"],[39,16,31,15],[39,17,31,16,"chain"],[39,22,31,21],[39,23,31,22,"getFinalizedHead"],[39,39,31,38],[39,40,31,39],[39,41,31,40],[39,42,31,41,"pipe"],[39,46,31,45],[39,47,31,46],[39,48,31,47],[39,49,31,48],[39,51,31,50,"rxjs_1"],[39,57,31,56],[39,58,31,57,"switchMap"],[39,67,31,66],[39,69,31,68],[39,79,31,69,"hash"],[39,83,31,73],[40,6,31,73],[40,13,31,78,"api"],[40,16,31,81],[40,17,31,82,"rpc"],[40,20,31,85],[40,21,31,86,"chain"],[40,26,31,91],[40,27,31,92,"getHeader"],[40,36,31,101],[40,37,31,102,"hash"],[40,41,31,106],[40,42,31,107],[40,43,31,108,"pipe"],[40,47,31,112],[40,48,31,113],[40,49,31,114],[40,50,31,115],[40,52,31,117,"rxjs_1"],[40,58,31,123],[40,59,31,124,"catchError"],[40,69,31,134],[40,71,31,136],[41,8,31,136],[41,15,31,142],[41,16,31,143],[41,17,31,144],[41,19,31,146,"rxjs_1"],[41,25,31,152],[41,26,31,153,"of"],[41,28,31,155],[41,30,31,157],[41,34,31,161],[41,35,31,162],[42,6,31,162],[42,8,31,163],[42,9,31,164],[43,4,31,164],[43,6,31,165],[43,7,31,166],[43,8,32,5],[43,9,32,6],[43,10,32,7,"pipe"],[43,14,32,11],[43,15,32,12],[43,16,32,13],[43,17,32,14],[43,19,32,16,"rxjs_1"],[43,25,32,22],[43,26,32,23,"map"],[43,29,32,26],[43,31,32,28],[43,41,32,28,"_ref2"],[43,46,32,28],[44,6,32,28],[44,10,32,28,"_ref3"],[44,15,32,28],[44,18,32,28,"_slicedToArray"],[44,32,32,28],[44,33,32,28,"_ref2"],[44,38,32,28],[45,8,32,30,"current"],[45,15,32,37],[45,18,32,37,"_ref3"],[45,23,32,37],[46,8,32,39,"finalized"],[46,17,32,48],[46,20,32,48,"_ref3"],[46,25,32,48],[47,6,32,48],[48,8,33,4],[49,8,34,4],[49,9,34,5,"finalized"],[49,18,34,14],[49,22,34,18],[49,23,34,19],[49,24,34,20],[49,26,34,22,"index_js_1"],[49,36,34,32],[49,37,34,33,"unwrapBlockNumber"],[49,54,34,50],[49,56,34,52,"current"],[49,63,34,59],[49,64,34,60],[49,65,34,61,"sub"],[49,68,34,64],[49,69,34,65],[49,70,34,66],[49,71,34,67],[49,73,34,69,"index_js_1"],[49,83,34,79],[49,84,34,80,"unwrapBlockNumber"],[49,101,34,97],[49,103,34,99,"finalized"],[49,112,34,108],[49,113,34,109],[49,114,34,110],[49,115,34,111,"gt"],[49,117,34,113],[49,118,34,114,"constants_js_1"],[49,132,34,128],[49,133,34,129,"MAX_FINALITY_LAG"],[49,149,34,145],[49,150,34,146],[49,153,35,10,"current"],[49,160,35,17],[49,163,36,10,"finalized"],[50,6,36,19],[51,4,36,19],[51,6,36,20],[51,7,36,21],[52,2,37,0],[53,2,38,0],[53,11,38,9,"babeOrAuraPeriod"],[53,27,38,25,"babeOrAuraPeriod"],[53,28,38,26,"api"],[53,31,38,29],[53,33,38,31],[54,4,38,31],[54,8,38,31,"_api$consts$babe"],[54,24,38,31],[54,26,38,31,"_api$consts$aura"],[54,42,38,31],[54,44,38,31,"_api$consts$timestamp"],[54,65,38,31],[55,4,39,4],[55,8,39,10,"period"],[55,14,39,16],[55,17,39,19],[55,19,39,19,"_api$consts$babe"],[55,35,39,19],[55,38,39,19,"api"],[55,41,39,22],[55,42,39,23,"consts"],[55,48,39,29],[55,49,39,30,"babe"],[55,53,39,34],[55,74,39,19,"_api$consts$babe"],[55,90,39,19],[55,91,39,36,"expectedBlockTime"],[55,108,39,53],[55,114,40,8],[56,4,41,8],[57,4,41,8],[57,5,41,8,"_api$consts$aura"],[57,21,41,8],[57,24,42,8,"api"],[57,27,42,11],[57,28,42,12,"consts"],[57,34,42,18],[57,35,42,19],[57,41,42,25],[57,42,42,26],[57,63,42,8,"_api$consts$aura"],[57,79,42,8],[57,80,42,29],[57,94,42,43],[57,95,42,44],[57,102,42,44,"_api$consts$timestamp"],[57,123,42,44],[57,126,43,8,"api"],[57,129,43,11],[57,130,43,12,"consts"],[57,136,43,18],[57,137,43,19,"timestamp"],[57,146,43,28],[57,167,43,8,"_api$consts$timestamp"],[57,188,43,8],[57,189,43,30,"minimumPeriod"],[57,202,43,43],[57,203,43,44,"muln"],[57,207,43,48],[57,208,43,49],[57,209,43,50],[57,210,43,51],[58,4,44,4],[58,11,44,11,"period"],[58,17,44,17],[58,21,44,21,"period"],[58,27,44,27],[58,28,44,28,"isZero"],[58,34,44,34],[58,38,44,38],[58,39,44,39,"period"],[58,45,44,45],[58,46,44,46,"isZero"],[58,52,44,52],[58,53,44,53],[58,54,44,54],[58,57,44,57,"period"],[58,63,44,63],[58,66,44,66,"undefined"],[58,75,44,75],[59,2,45,0],[60,2,46,0],[61,0,47,0],[62,0,48,0],[63,0,49,0],[64,0,50,0],[65,0,51,0],[66,0,52,0],[67,0,53,0],[68,0,54,0],[69,0,55,0],[70,0,56,0],[71,0,57,0],[72,0,58,0],[73,0,59,0],[74,2,60,0],[74,11,60,9,"signingInfo"],[74,22,60,20,"signingInfo"],[74,23,60,21,"_instanceId"],[74,34,60,32],[74,36,60,34,"api"],[74,39,60,37],[74,41,60,39],[75,4,61,4],[76,4,62,4],[76,11,62,11],[76,21,62,12,"address"],[76,28,62,19],[76,30,62,21,"nonce"],[76,35,62,26],[76,37,62,28,"era"],[76,40,62,31],[77,6,62,31],[77,13,62,36],[77,14,62,37],[77,15,62,38],[77,17,62,40,"rxjs_1"],[77,23,62,46],[77,24,62,47,"combineLatest"],[77,37,62,60],[77,39,62,62],[78,6,63,8],[79,6,64,8],[79,7,64,9],[79,8,64,10],[79,10,64,12,"util_1"],[79,16,64,18],[79,17,64,19,"isUndefined"],[79,28,64,30],[79,30,64,32,"nonce"],[79,35,64,37],[79,36,64,38],[79,39,65,14,"latestNonce"],[79,50,65,25],[79,51,65,26,"api"],[79,54,65,29],[79,56,65,31,"address"],[79,63,65,38],[79,64,65,39],[79,67,66,14,"nonce"],[79,72,66,19],[79,77,66,24],[79,78,66,25],[79,79,66,26],[79,82,67,18,"nextNonce"],[79,91,67,27],[79,92,67,28,"api"],[79,95,67,31],[79,97,67,33,"address"],[79,104,67,40],[79,105,67,41],[79,108,68,18],[79,109,68,19],[79,110,68,20],[79,112,68,22,"rxjs_1"],[79,118,68,28],[79,119,68,29,"of"],[79,121,68,31],[79,123,68,33,"api"],[79,126,68,36],[79,127,68,37,"registry"],[79,135,68,45],[79,136,68,46,"createType"],[79,146,68,56],[79,147,68,57],[79,154,68,64],[79,156,68,66,"nonce"],[79,161,68,71],[79,162,68,72],[79,163,68,73],[80,6,69,8],[81,6,70,9],[81,7,70,10],[81,8,70,11],[81,10,70,13,"util_1"],[81,16,70,19],[81,17,70,20,"isUndefined"],[81,28,70,31],[81,30,70,33,"era"],[81,33,70,36],[81,34,70,37],[81,38,70,42],[81,39,70,43],[81,40,70,44],[81,42,70,46,"util_1"],[81,48,70,52],[81,49,70,53,"isNumber"],[81,57,70,61],[81,59,70,63,"era"],[81,62,70,66],[81,63,70,67],[81,67,70,71,"era"],[81,70,70,74],[81,73,70,77],[81,74,70,79],[81,77,71,14,"signingHeader"],[81,90,71,27],[81,91,71,28,"api"],[81,94,71,31],[81,95,71,32],[81,98,72,14],[81,99,72,15],[81,100,72,16],[81,102,72,18,"rxjs_1"],[81,108,72,24],[81,109,72,25,"of"],[81,111,72,27],[81,113,72,29],[81,117,72,33],[81,118,72,34],[81,119,73,5],[81,120,73,6],[81,121,73,7,"pipe"],[81,125,73,11],[81,126,73,12],[81,127,73,13],[81,128,73,14],[81,130,73,16,"rxjs_1"],[81,136,73,22],[81,137,73,23,"map"],[81,140,73,26],[81,142,73,28],[81,152,73,28,"_ref4"],[81,157,73,28],[82,8,73,28],[82,12,73,28,"_api$consts$system"],[82,30,73,28],[83,8,73,28],[83,12,73,28,"_ref5"],[83,17,73,28],[83,20,73,28,"_slicedToArray"],[83,34,73,28],[83,35,73,28,"_ref4"],[83,40,73,28],[84,10,73,30,"nonce"],[84,15,73,35],[84,18,73,35,"_ref5"],[84,23,73,35],[85,10,73,37,"header"],[85,16,73,43],[85,19,73,43,"_ref5"],[85,24,73,43],[86,8,73,43],[86,15,73,50],[87,10,74,8,"header"],[87,16,74,14],[87,18,74,8,"header"],[87,24,74,14],[88,10,75,8,"mortalLength"],[88,22,75,20],[88,24,75,22,"Math"],[88,28,75,26],[88,29,75,27,"min"],[88,32,75,30],[88,33,75,31],[88,35,75,31,"_api$consts$system"],[88,53,75,31],[88,56,75,31,"api"],[88,59,75,34],[88,60,75,35,"consts"],[88,66,75,41],[88,67,75,42,"system"],[88,73,75,48],[88,87,75,48,"_api$consts$system"],[88,105,75,48],[88,108,75,31,"_api$consts$system"],[88,126,75,31],[88,127,75,50,"blockHashCount"],[88,141,75,64],[88,162,75,31,"_api$consts$system"],[88,180,75,31],[88,181,75,66,"toNumber"],[88,189,75,74],[88,190,75,75],[88,191,75,76],[88,196,75,80,"constants_js_1"],[88,210,75,94],[88,211,75,95,"FALLBACK_MAX_HASH_COUNT"],[88,234,75,118],[88,236,75,120,"constants_js_1"],[88,250,75,134],[88,251,75,135,"MORTAL_PERIOD"],[88,264,75,148],[88,265,76,13,"div"],[88,268,76,16],[88,269,76,17,"babeOrAuraPeriod"],[88,285,76,33],[88,286,76,34,"api"],[88,289,76,37],[88,290,76,38],[88,294,76,42,"constants_js_1"],[88,308,76,56],[88,309,76,57,"FALLBACK_PERIOD"],[88,324,76,72],[88,325,76,73],[88,326,77,13,"iadd"],[88,330,77,17],[88,331,77,18,"constants_js_1"],[88,345,77,32],[88,346,77,33,"MAX_FINALITY_LAG"],[88,362,77,49],[88,363,77,50],[88,364,78,13,"toNumber"],[88,372,78,21],[88,373,78,22],[88,374,78,23],[88,375,78,24],[89,10,79,8,"nonce"],[89,15,79,13],[89,17,79,8,"nonce"],[90,8,80,4],[90,9,80,5],[91,6,80,5],[91,7,80,6],[91,8,80,7],[91,9,80,8],[92,4,80,8],[93,2,81,0],[94,0,81,1],[94,3]],"functionMap":{"names":["<global>","latestNonce","<anonymous>","nextNonce","signingHeader","babeOrAuraPeriod","signingInfo"],"mappings":"AAA;ACO;qECC,kCD;CDC;AGC;CHS;AIC;6DFE;mHEO;oEFC,gGE;4BFC;mBEI;CJC;AKC;CLO;AMe;WJE;QIkB;CNC"},"hasCjsExports":true},"type":"js/module"}]} |