mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 12:21:01 +00:00
1 line
28 KiB
Plaintext
1 line
28 KiB
Plaintext
{"dependencies":[],"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, \"rpc\", {\n enumerable: true,\n get: function () {\n return rpc;\n }\n });\n const rpc = {\n call: {\n alias: ['state_callAt'],\n description: 'Perform a call to a builtin on the chain',\n params: [{\n name: 'method',\n type: 'Text'\n }, {\n name: 'data',\n type: 'Bytes'\n }, {\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'Bytes'\n },\n getChildKeys: {\n description: 'Retrieves the keys with prefix of a specific child storage',\n params: [{\n name: 'childStorageKey',\n type: 'StorageKey'\n }, {\n name: 'childDefinition',\n type: 'StorageKey'\n }, {\n name: 'childType',\n type: 'u32'\n }, {\n name: 'key',\n type: 'StorageKey'\n }, {\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'Vec<StorageKey>'\n },\n getChildReadProof: {\n description: 'Returns proof of storage for child key entries at a specific block state.',\n params: [{\n name: 'childStorageKey',\n type: 'PrefixedStorageKey'\n }, {\n name: 'keys',\n type: 'Vec<StorageKey>'\n }, {\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'ReadProof'\n },\n getChildStorage: {\n description: 'Retrieves the child storage for a key',\n params: [{\n name: 'childStorageKey',\n type: 'StorageKey'\n }, {\n name: 'childDefinition',\n type: 'StorageKey'\n }, {\n name: 'childType',\n type: 'u32'\n }, {\n name: 'key',\n type: 'StorageKey'\n }, {\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'StorageData'\n },\n getChildStorageHash: {\n description: 'Retrieves the child storage hash',\n params: [{\n name: 'childStorageKey',\n type: 'StorageKey'\n }, {\n name: 'childDefinition',\n type: 'StorageKey'\n }, {\n name: 'childType',\n type: 'u32'\n }, {\n name: 'key',\n type: 'StorageKey'\n }, {\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'Hash'\n },\n getChildStorageSize: {\n description: 'Retrieves the child storage size',\n params: [{\n name: 'childStorageKey',\n type: 'StorageKey'\n }, {\n name: 'childDefinition',\n type: 'StorageKey'\n }, {\n name: 'childType',\n type: 'u32'\n }, {\n name: 'key',\n type: 'StorageKey'\n }, {\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'u64'\n },\n getKeys: {\n deprecated: 'Use `api.rpc.state.getKeysPaged` to retrieve keys',\n description: 'Retrieves the keys with a certain prefix',\n params: [{\n name: 'key',\n type: 'StorageKey'\n }, {\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'Vec<StorageKey>'\n },\n getKeysPaged: {\n alias: ['state_getKeysPagedAt'],\n description: 'Returns the keys with prefix with pagination support.',\n params: [{\n name: 'key',\n type: 'StorageKey'\n }, {\n name: 'count',\n type: 'u32'\n }, {\n isOptional: true,\n name: 'startKey',\n type: 'StorageKey'\n }, {\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'Vec<StorageKey>'\n },\n getMetadata: {\n description: 'Returns the runtime metadata',\n params: [{\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'Metadata'\n },\n getPairs: {\n deprecated: 'Use `api.rpc.state.getKeysPaged` to retrieve keys',\n description: 'Returns the keys with prefix, leave empty to get all the keys (deprecated: Use getKeysPaged)',\n isUnsafe: true,\n params: [{\n name: 'prefix',\n type: 'StorageKey'\n }, {\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'Vec<KeyValue>'\n },\n getReadProof: {\n description: 'Returns proof of storage entries at a specific block state',\n params: [{\n name: 'keys',\n type: 'Vec<StorageKey>'\n }, {\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'ReadProof'\n },\n getRuntimeVersion: {\n alias: ['chain_getRuntimeVersion'],\n description: 'Get the runtime version',\n params: [{\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'RuntimeVersion'\n },\n getStorage: {\n alias: ['state_getStorageAt'],\n description: 'Retrieves the storage for a key',\n params: [{\n name: 'key',\n type: 'StorageKey'\n }, {\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'StorageData'\n },\n getStorageHash: {\n alias: ['state_getStorageHashAt'],\n description: 'Retrieves the storage hash',\n params: [{\n name: 'key',\n type: 'StorageKey'\n }, {\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'Hash'\n },\n getStorageSize: {\n alias: ['state_getStorageSizeAt'],\n description: 'Retrieves the storage size',\n params: [{\n name: 'key',\n type: 'StorageKey'\n }, {\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'u64'\n },\n queryStorage: {\n description: 'Query historical storage entries (by key) starting from a start block',\n isUnsafe: true,\n params: [{\n name: 'keys',\n type: 'Vec<StorageKey>'\n }, {\n name: 'fromBlock',\n type: 'Hash'\n }, {\n isOptional: true,\n name: 'toBlock',\n type: 'BlockHash'\n }],\n type: 'Vec<StorageChangeSet>'\n },\n queryStorageAt: {\n description: 'Query storage entries (by key) starting at block hash given as the second parameter',\n params: [{\n name: 'keys',\n type: 'Vec<StorageKey>'\n }, {\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'Vec<StorageChangeSet>'\n },\n subscribeRuntimeVersion: {\n alias: ['chain_subscribeRuntimeVersion', 'chain_unsubscribeRuntimeVersion'],\n description: 'Retrieves the runtime version via subscription',\n params: [],\n pubsub: ['runtimeVersion', 'subscribeRuntimeVersion', 'unsubscribeRuntimeVersion'],\n type: 'RuntimeVersion'\n },\n subscribeStorage: {\n description: 'Subscribes to storage changes for the provided keys',\n // NOTE Just marking it here to follow the logic - this is unsafe when no\n // keys are provided (i.e. subscribing to all), generally this is used\n // extensively with normal subscriptions\n // isUnsafe: true,\n params: [{\n isOptional: true,\n name: 'keys',\n type: 'Vec<StorageKey>'\n }],\n pubsub: ['storage', 'subscribeStorage', 'unsubscribeStorage'],\n type: 'StorageChangeSet'\n },\n traceBlock: {\n description: 'Provides a way to trace the re-execution of a single block',\n isUnsafe: true,\n params: [{\n name: 'block',\n type: 'Hash'\n }, {\n name: 'targets',\n type: 'Option<Text>'\n }, {\n name: 'storageKeys',\n type: 'Option<Text>'\n }, {\n name: 'methods',\n type: 'Option<Text>'\n }],\n type: 'TraceBlockResponse'\n },\n trieMigrationStatus: {\n description: 'Check current migration state',\n isUnsafe: true,\n params: [{\n isHistoric: true,\n isOptional: true,\n name: 'at',\n type: 'BlockHash'\n }],\n type: 'MigrationStatusResult'\n }\n };\n});","lineCount":341,"map":[[7,2,1,0,"Object"],[7,8,1,0],[7,9,1,0,"defineProperty"],[7,23,1,0],[7,24,1,0,"exports"],[7,31,1,0],[8,4,1,0,"enumerable"],[8,14,1,0],[9,4,1,0,"get"],[9,7,1,0],[9,18,1,0,"get"],[9,19,1,0],[10,6,1,0],[10,13,1,0,"rpc"],[10,16,1,0],[11,4,1,0],[12,2,1,0],[13,2,1,7],[13,8,1,13,"rpc"],[13,11,1,16],[13,14,1,19],[14,4,2,4,"call"],[14,8,2,8],[14,10,2,10],[15,6,3,8,"alias"],[15,11,3,13],[15,13,3,15],[15,14,3,16],[15,28,3,30],[15,29,3,31],[16,6,4,8,"description"],[16,17,4,19],[16,19,4,21],[16,61,4,63],[17,6,5,8,"params"],[17,12,5,14],[17,14,5,16],[17,15,6,12],[18,8,7,16,"name"],[18,12,7,20],[18,14,7,22],[18,22,7,30],[19,8,8,16,"type"],[19,12,8,20],[19,14,8,22],[20,6,9,12],[20,7,9,13],[20,9,10,12],[21,8,11,16,"name"],[21,12,11,20],[21,14,11,22],[21,20,11,28],[22,8,12,16,"type"],[22,12,12,20],[22,14,12,22],[23,6,13,12],[23,7,13,13],[23,9,14,12],[24,8,15,16,"isHistoric"],[24,18,15,26],[24,20,15,28],[24,24,15,32],[25,8,16,16,"isOptional"],[25,18,16,26],[25,20,16,28],[25,24,16,32],[26,8,17,16,"name"],[26,12,17,20],[26,14,17,22],[26,18,17,26],[27,8,18,16,"type"],[27,12,18,20],[27,14,18,22],[28,6,19,12],[28,7,19,13],[28,8,20,9],[29,6,21,8,"type"],[29,10,21,12],[29,12,21,14],[30,4,22,4],[30,5,22,5],[31,4,23,4,"getChildKeys"],[31,16,23,16],[31,18,23,18],[32,6,24,8,"description"],[32,17,24,19],[32,19,24,21],[32,79,24,81],[33,6,25,8,"params"],[33,12,25,14],[33,14,25,16],[33,15,26,12],[34,8,27,16,"name"],[34,12,27,20],[34,14,27,22],[34,31,27,39],[35,8,28,16,"type"],[35,12,28,20],[35,14,28,22],[36,6,29,12],[36,7,29,13],[36,9,30,12],[37,8,31,16,"name"],[37,12,31,20],[37,14,31,22],[37,31,31,39],[38,8,32,16,"type"],[38,12,32,20],[38,14,32,22],[39,6,33,12],[39,7,33,13],[39,9,34,12],[40,8,35,16,"name"],[40,12,35,20],[40,14,35,22],[40,25,35,33],[41,8,36,16,"type"],[41,12,36,20],[41,14,36,22],[42,6,37,12],[42,7,37,13],[42,9,38,12],[43,8,39,16,"name"],[43,12,39,20],[43,14,39,22],[43,19,39,27],[44,8,40,16,"type"],[44,12,40,20],[44,14,40,22],[45,6,41,12],[45,7,41,13],[45,9,42,12],[46,8,43,16,"isHistoric"],[46,18,43,26],[46,20,43,28],[46,24,43,32],[47,8,44,16,"isOptional"],[47,18,44,26],[47,20,44,28],[47,24,44,32],[48,8,45,16,"name"],[48,12,45,20],[48,14,45,22],[48,18,45,26],[49,8,46,16,"type"],[49,12,46,20],[49,14,46,22],[50,6,47,12],[50,7,47,13],[50,8,48,9],[51,6,49,8,"type"],[51,10,49,12],[51,12,49,14],[52,4,50,4],[52,5,50,5],[53,4,51,4,"getChildReadProof"],[53,21,51,21],[53,23,51,23],[54,6,52,8,"description"],[54,17,52,19],[54,19,52,21],[54,94,52,96],[55,6,53,8,"params"],[55,12,53,14],[55,14,53,16],[55,15,54,12],[56,8,55,16,"name"],[56,12,55,20],[56,14,55,22],[56,31,55,39],[57,8,56,16,"type"],[57,12,56,20],[57,14,56,22],[58,6,57,12],[58,7,57,13],[58,9,58,12],[59,8,59,16,"name"],[59,12,59,20],[59,14,59,22],[59,20,59,28],[60,8,60,16,"type"],[60,12,60,20],[60,14,60,22],[61,6,61,12],[61,7,61,13],[61,9,62,12],[62,8,63,16,"isHistoric"],[62,18,63,26],[62,20,63,28],[62,24,63,32],[63,8,64,16,"isOptional"],[63,18,64,26],[63,20,64,28],[63,24,64,32],[64,8,65,16,"name"],[64,12,65,20],[64,14,65,22],[64,18,65,26],[65,8,66,16,"type"],[65,12,66,20],[65,14,66,22],[66,6,67,12],[66,7,67,13],[66,8,68,9],[67,6,69,8,"type"],[67,10,69,12],[67,12,69,14],[68,4,70,4],[68,5,70,5],[69,4,71,4,"getChildStorage"],[69,19,71,19],[69,21,71,21],[70,6,72,8,"description"],[70,17,72,19],[70,19,72,21],[70,58,72,60],[71,6,73,8,"params"],[71,12,73,14],[71,14,73,16],[71,15,74,12],[72,8,75,16,"name"],[72,12,75,20],[72,14,75,22],[72,31,75,39],[73,8,76,16,"type"],[73,12,76,20],[73,14,76,22],[74,6,77,12],[74,7,77,13],[74,9,78,12],[75,8,79,16,"name"],[75,12,79,20],[75,14,79,22],[75,31,79,39],[76,8,80,16,"type"],[76,12,80,20],[76,14,80,22],[77,6,81,12],[77,7,81,13],[77,9,82,12],[78,8,83,16,"name"],[78,12,83,20],[78,14,83,22],[78,25,83,33],[79,8,84,16,"type"],[79,12,84,20],[79,14,84,22],[80,6,85,12],[80,7,85,13],[80,9,86,12],[81,8,87,16,"name"],[81,12,87,20],[81,14,87,22],[81,19,87,27],[82,8,88,16,"type"],[82,12,88,20],[82,14,88,22],[83,6,89,12],[83,7,89,13],[83,9,90,12],[84,8,91,16,"isHistoric"],[84,18,91,26],[84,20,91,28],[84,24,91,32],[85,8,92,16,"isOptional"],[85,18,92,26],[85,20,92,28],[85,24,92,32],[86,8,93,16,"name"],[86,12,93,20],[86,14,93,22],[86,18,93,26],[87,8,94,16,"type"],[87,12,94,20],[87,14,94,22],[88,6,95,12],[88,7,95,13],[88,8,96,9],[89,6,97,8,"type"],[89,10,97,12],[89,12,97,14],[90,4,98,4],[90,5,98,5],[91,4,99,4,"getChildStorageHash"],[91,23,99,23],[91,25,99,25],[92,6,100,8,"description"],[92,17,100,19],[92,19,100,21],[92,53,100,55],[93,6,101,8,"params"],[93,12,101,14],[93,14,101,16],[93,15,102,12],[94,8,103,16,"name"],[94,12,103,20],[94,14,103,22],[94,31,103,39],[95,8,104,16,"type"],[95,12,104,20],[95,14,104,22],[96,6,105,12],[96,7,105,13],[96,9,106,12],[97,8,107,16,"name"],[97,12,107,20],[97,14,107,22],[97,31,107,39],[98,8,108,16,"type"],[98,12,108,20],[98,14,108,22],[99,6,109,12],[99,7,109,13],[99,9,110,12],[100,8,111,16,"name"],[100,12,111,20],[100,14,111,22],[100,25,111,33],[101,8,112,16,"type"],[101,12,112,20],[101,14,112,22],[102,6,113,12],[102,7,113,13],[102,9,114,12],[103,8,115,16,"name"],[103,12,115,20],[103,14,115,22],[103,19,115,27],[104,8,116,16,"type"],[104,12,116,20],[104,14,116,22],[105,6,117,12],[105,7,117,13],[105,9,118,12],[106,8,119,16,"isHistoric"],[106,18,119,26],[106,20,119,28],[106,24,119,32],[107,8,120,16,"isOptional"],[107,18,120,26],[107,20,120,28],[107,24,120,32],[108,8,121,16,"name"],[108,12,121,20],[108,14,121,22],[108,18,121,26],[109,8,122,16,"type"],[109,12,122,20],[109,14,122,22],[110,6,123,12],[110,7,123,13],[110,8,124,9],[111,6,125,8,"type"],[111,10,125,12],[111,12,125,14],[112,4,126,4],[112,5,126,5],[113,4,127,4,"getChildStorageSize"],[113,23,127,23],[113,25,127,25],[114,6,128,8,"description"],[114,17,128,19],[114,19,128,21],[114,53,128,55],[115,6,129,8,"params"],[115,12,129,14],[115,14,129,16],[115,15,130,12],[116,8,131,16,"name"],[116,12,131,20],[116,14,131,22],[116,31,131,39],[117,8,132,16,"type"],[117,12,132,20],[117,14,132,22],[118,6,133,12],[118,7,133,13],[118,9,134,12],[119,8,135,16,"name"],[119,12,135,20],[119,14,135,22],[119,31,135,39],[120,8,136,16,"type"],[120,12,136,20],[120,14,136,22],[121,6,137,12],[121,7,137,13],[121,9,138,12],[122,8,139,16,"name"],[122,12,139,20],[122,14,139,22],[122,25,139,33],[123,8,140,16,"type"],[123,12,140,20],[123,14,140,22],[124,6,141,12],[124,7,141,13],[124,9,142,12],[125,8,143,16,"name"],[125,12,143,20],[125,14,143,22],[125,19,143,27],[126,8,144,16,"type"],[126,12,144,20],[126,14,144,22],[127,6,145,12],[127,7,145,13],[127,9,146,12],[128,8,147,16,"isHistoric"],[128,18,147,26],[128,20,147,28],[128,24,147,32],[129,8,148,16,"isOptional"],[129,18,148,26],[129,20,148,28],[129,24,148,32],[130,8,149,16,"name"],[130,12,149,20],[130,14,149,22],[130,18,149,26],[131,8,150,16,"type"],[131,12,150,20],[131,14,150,22],[132,6,151,12],[132,7,151,13],[132,8,152,9],[133,6,153,8,"type"],[133,10,153,12],[133,12,153,14],[134,4,154,4],[134,5,154,5],[135,4,155,4,"getKeys"],[135,11,155,11],[135,13,155,13],[136,6,156,8,"deprecated"],[136,16,156,18],[136,18,156,20],[136,69,156,71],[137,6,157,8,"description"],[137,17,157,19],[137,19,157,21],[137,61,157,63],[138,6,158,8,"params"],[138,12,158,14],[138,14,158,16],[138,15,159,12],[139,8,160,16,"name"],[139,12,160,20],[139,14,160,22],[139,19,160,27],[140,8,161,16,"type"],[140,12,161,20],[140,14,161,22],[141,6,162,12],[141,7,162,13],[141,9,163,12],[142,8,164,16,"isHistoric"],[142,18,164,26],[142,20,164,28],[142,24,164,32],[143,8,165,16,"isOptional"],[143,18,165,26],[143,20,165,28],[143,24,165,32],[144,8,166,16,"name"],[144,12,166,20],[144,14,166,22],[144,18,166,26],[145,8,167,16,"type"],[145,12,167,20],[145,14,167,22],[146,6,168,12],[146,7,168,13],[146,8,169,9],[147,6,170,8,"type"],[147,10,170,12],[147,12,170,14],[148,4,171,4],[148,5,171,5],[149,4,172,4,"getKeysPaged"],[149,16,172,16],[149,18,172,18],[150,6,173,8,"alias"],[150,11,173,13],[150,13,173,15],[150,14,173,16],[150,36,173,38],[150,37,173,39],[151,6,174,8,"description"],[151,17,174,19],[151,19,174,21],[151,74,174,76],[152,6,175,8,"params"],[152,12,175,14],[152,14,175,16],[152,15,176,12],[153,8,177,16,"name"],[153,12,177,20],[153,14,177,22],[153,19,177,27],[154,8,178,16,"type"],[154,12,178,20],[154,14,178,22],[155,6,179,12],[155,7,179,13],[155,9,180,12],[156,8,181,16,"name"],[156,12,181,20],[156,14,181,22],[156,21,181,29],[157,8,182,16,"type"],[157,12,182,20],[157,14,182,22],[158,6,183,12],[158,7,183,13],[158,9,184,12],[159,8,185,16,"isOptional"],[159,18,185,26],[159,20,185,28],[159,24,185,32],[160,8,186,16,"name"],[160,12,186,20],[160,14,186,22],[160,24,186,32],[161,8,187,16,"type"],[161,12,187,20],[161,14,187,22],[162,6,188,12],[162,7,188,13],[162,9,189,12],[163,8,190,16,"isHistoric"],[163,18,190,26],[163,20,190,28],[163,24,190,32],[164,8,191,16,"isOptional"],[164,18,191,26],[164,20,191,28],[164,24,191,32],[165,8,192,16,"name"],[165,12,192,20],[165,14,192,22],[165,18,192,26],[166,8,193,16,"type"],[166,12,193,20],[166,14,193,22],[167,6,194,12],[167,7,194,13],[167,8,195,9],[168,6,196,8,"type"],[168,10,196,12],[168,12,196,14],[169,4,197,4],[169,5,197,5],[170,4,198,4,"getMetadata"],[170,15,198,15],[170,17,198,17],[171,6,199,8,"description"],[171,17,199,19],[171,19,199,21],[171,49,199,51],[172,6,200,8,"params"],[172,12,200,14],[172,14,200,16],[172,15,201,12],[173,8,202,16,"isHistoric"],[173,18,202,26],[173,20,202,28],[173,24,202,32],[174,8,203,16,"isOptional"],[174,18,203,26],[174,20,203,28],[174,24,203,32],[175,8,204,16,"name"],[175,12,204,20],[175,14,204,22],[175,18,204,26],[176,8,205,16,"type"],[176,12,205,20],[176,14,205,22],[177,6,206,12],[177,7,206,13],[177,8,207,9],[178,6,208,8,"type"],[178,10,208,12],[178,12,208,14],[179,4,209,4],[179,5,209,5],[180,4,210,4,"getPairs"],[180,12,210,12],[180,14,210,14],[181,6,211,8,"deprecated"],[181,16,211,18],[181,18,211,20],[181,69,211,71],[182,6,212,8,"description"],[182,17,212,19],[182,19,212,21],[182,113,212,115],[183,6,213,8,"isUnsafe"],[183,14,213,16],[183,16,213,18],[183,20,213,22],[184,6,214,8,"params"],[184,12,214,14],[184,14,214,16],[184,15,215,12],[185,8,216,16,"name"],[185,12,216,20],[185,14,216,22],[185,22,216,30],[186,8,217,16,"type"],[186,12,217,20],[186,14,217,22],[187,6,218,12],[187,7,218,13],[187,9,219,12],[188,8,220,16,"isHistoric"],[188,18,220,26],[188,20,220,28],[188,24,220,32],[189,8,221,16,"isOptional"],[189,18,221,26],[189,20,221,28],[189,24,221,32],[190,8,222,16,"name"],[190,12,222,20],[190,14,222,22],[190,18,222,26],[191,8,223,16,"type"],[191,12,223,20],[191,14,223,22],[192,6,224,12],[192,7,224,13],[192,8,225,9],[193,6,226,8,"type"],[193,10,226,12],[193,12,226,14],[194,4,227,4],[194,5,227,5],[195,4,228,4,"getReadProof"],[195,16,228,16],[195,18,228,18],[196,6,229,8,"description"],[196,17,229,19],[196,19,229,21],[196,79,229,81],[197,6,230,8,"params"],[197,12,230,14],[197,14,230,16],[197,15,231,12],[198,8,232,16,"name"],[198,12,232,20],[198,14,232,22],[198,20,232,28],[199,8,233,16,"type"],[199,12,233,20],[199,14,233,22],[200,6,234,12],[200,7,234,13],[200,9,235,12],[201,8,236,16,"isHistoric"],[201,18,236,26],[201,20,236,28],[201,24,236,32],[202,8,237,16,"isOptional"],[202,18,237,26],[202,20,237,28],[202,24,237,32],[203,8,238,16,"name"],[203,12,238,20],[203,14,238,22],[203,18,238,26],[204,8,239,16,"type"],[204,12,239,20],[204,14,239,22],[205,6,240,12],[205,7,240,13],[205,8,241,9],[206,6,242,8,"type"],[206,10,242,12],[206,12,242,14],[207,4,243,4],[207,5,243,5],[208,4,244,4,"getRuntimeVersion"],[208,21,244,21],[208,23,244,23],[209,6,245,8,"alias"],[209,11,245,13],[209,13,245,15],[209,14,245,16],[209,39,245,41],[209,40,245,42],[210,6,246,8,"description"],[210,17,246,19],[210,19,246,21],[210,44,246,46],[211,6,247,8,"params"],[211,12,247,14],[211,14,247,16],[211,15,248,12],[212,8,249,16,"isHistoric"],[212,18,249,26],[212,20,249,28],[212,24,249,32],[213,8,250,16,"isOptional"],[213,18,250,26],[213,20,250,28],[213,24,250,32],[214,8,251,16,"name"],[214,12,251,20],[214,14,251,22],[214,18,251,26],[215,8,252,16,"type"],[215,12,252,20],[215,14,252,22],[216,6,253,12],[216,7,253,13],[216,8,254,9],[217,6,255,8,"type"],[217,10,255,12],[217,12,255,14],[218,4,256,4],[218,5,256,5],[219,4,257,4,"getStorage"],[219,14,257,14],[219,16,257,16],[220,6,258,8,"alias"],[220,11,258,13],[220,13,258,15],[220,14,258,16],[220,34,258,36],[220,35,258,37],[221,6,259,8,"description"],[221,17,259,19],[221,19,259,21],[221,52,259,54],[222,6,260,8,"params"],[222,12,260,14],[222,14,260,16],[222,15,261,12],[223,8,262,16,"name"],[223,12,262,20],[223,14,262,22],[223,19,262,27],[224,8,263,16,"type"],[224,12,263,20],[224,14,263,22],[225,6,264,12],[225,7,264,13],[225,9,265,12],[226,8,266,16,"isHistoric"],[226,18,266,26],[226,20,266,28],[226,24,266,32],[227,8,267,16,"isOptional"],[227,18,267,26],[227,20,267,28],[227,24,267,32],[228,8,268,16,"name"],[228,12,268,20],[228,14,268,22],[228,18,268,26],[229,8,269,16,"type"],[229,12,269,20],[229,14,269,22],[230,6,270,12],[230,7,270,13],[230,8,271,9],[231,6,272,8,"type"],[231,10,272,12],[231,12,272,14],[232,4,273,4],[232,5,273,5],[233,4,274,4,"getStorageHash"],[233,18,274,18],[233,20,274,20],[234,6,275,8,"alias"],[234,11,275,13],[234,13,275,15],[234,14,275,16],[234,38,275,40],[234,39,275,41],[235,6,276,8,"description"],[235,17,276,19],[235,19,276,21],[235,47,276,49],[236,6,277,8,"params"],[236,12,277,14],[236,14,277,16],[236,15,278,12],[237,8,279,16,"name"],[237,12,279,20],[237,14,279,22],[237,19,279,27],[238,8,280,16,"type"],[238,12,280,20],[238,14,280,22],[239,6,281,12],[239,7,281,13],[239,9,282,12],[240,8,283,16,"isHistoric"],[240,18,283,26],[240,20,283,28],[240,24,283,32],[241,8,284,16,"isOptional"],[241,18,284,26],[241,20,284,28],[241,24,284,32],[242,8,285,16,"name"],[242,12,285,20],[242,14,285,22],[242,18,285,26],[243,8,286,16,"type"],[243,12,286,20],[243,14,286,22],[244,6,287,12],[244,7,287,13],[244,8,288,9],[245,6,289,8,"type"],[245,10,289,12],[245,12,289,14],[246,4,290,4],[246,5,290,5],[247,4,291,4,"getStorageSize"],[247,18,291,18],[247,20,291,20],[248,6,292,8,"alias"],[248,11,292,13],[248,13,292,15],[248,14,292,16],[248,38,292,40],[248,39,292,41],[249,6,293,8,"description"],[249,17,293,19],[249,19,293,21],[249,47,293,49],[250,6,294,8,"params"],[250,12,294,14],[250,14,294,16],[250,15,295,12],[251,8,296,16,"name"],[251,12,296,20],[251,14,296,22],[251,19,296,27],[252,8,297,16,"type"],[252,12,297,20],[252,14,297,22],[253,6,298,12],[253,7,298,13],[253,9,299,12],[254,8,300,16,"isHistoric"],[254,18,300,26],[254,20,300,28],[254,24,300,32],[255,8,301,16,"isOptional"],[255,18,301,26],[255,20,301,28],[255,24,301,32],[256,8,302,16,"name"],[256,12,302,20],[256,14,302,22],[256,18,302,26],[257,8,303,16,"type"],[257,12,303,20],[257,14,303,22],[258,6,304,12],[258,7,304,13],[258,8,305,9],[259,6,306,8,"type"],[259,10,306,12],[259,12,306,14],[260,4,307,4],[260,5,307,5],[261,4,308,4,"queryStorage"],[261,16,308,16],[261,18,308,18],[262,6,309,8,"description"],[262,17,309,19],[262,19,309,21],[262,90,309,92],[263,6,310,8,"isUnsafe"],[263,14,310,16],[263,16,310,18],[263,20,310,22],[264,6,311,8,"params"],[264,12,311,14],[264,14,311,16],[264,15,312,12],[265,8,313,16,"name"],[265,12,313,20],[265,14,313,22],[265,20,313,28],[266,8,314,16,"type"],[266,12,314,20],[266,14,314,22],[267,6,315,12],[267,7,315,13],[267,9,316,12],[268,8,317,16,"name"],[268,12,317,20],[268,14,317,22],[268,25,317,33],[269,8,318,16,"type"],[269,12,318,20],[269,14,318,22],[270,6,319,12],[270,7,319,13],[270,9,320,12],[271,8,321,16,"isOptional"],[271,18,321,26],[271,20,321,28],[271,24,321,32],[272,8,322,16,"name"],[272,12,322,20],[272,14,322,22],[272,23,322,31],[273,8,323,16,"type"],[273,12,323,20],[273,14,323,22],[274,6,324,12],[274,7,324,13],[274,8,325,9],[275,6,326,8,"type"],[275,10,326,12],[275,12,326,14],[276,4,327,4],[276,5,327,5],[277,4,328,4,"queryStorageAt"],[277,18,328,18],[277,20,328,20],[278,6,329,8,"description"],[278,17,329,19],[278,19,329,21],[278,104,329,106],[279,6,330,8,"params"],[279,12,330,14],[279,14,330,16],[279,15,331,12],[280,8,332,16,"name"],[280,12,332,20],[280,14,332,22],[280,20,332,28],[281,8,333,16,"type"],[281,12,333,20],[281,14,333,22],[282,6,334,12],[282,7,334,13],[282,9,335,12],[283,8,336,16,"isHistoric"],[283,18,336,26],[283,20,336,28],[283,24,336,32],[284,8,337,16,"isOptional"],[284,18,337,26],[284,20,337,28],[284,24,337,32],[285,8,338,16,"name"],[285,12,338,20],[285,14,338,22],[285,18,338,26],[286,8,339,16,"type"],[286,12,339,20],[286,14,339,22],[287,6,340,12],[287,7,340,13],[287,8,341,9],[288,6,342,8,"type"],[288,10,342,12],[288,12,342,14],[289,4,343,4],[289,5,343,5],[290,4,344,4,"subscribeRuntimeVersion"],[290,27,344,27],[290,29,344,29],[291,6,345,8,"alias"],[291,11,345,13],[291,13,345,15],[291,14,345,16],[291,45,345,47],[291,47,345,49],[291,80,345,82],[291,81,345,83],[292,6,346,8,"description"],[292,17,346,19],[292,19,346,21],[292,67,346,69],[293,6,347,8,"params"],[293,12,347,14],[293,14,347,16],[293,16,347,18],[294,6,348,8,"pubsub"],[294,12,348,14],[294,14,348,16],[294,15,349,12],[294,31,349,28],[294,33,350,12],[294,58,350,37],[294,60,351,12],[294,87,351,39],[294,88,352,9],[295,6,353,8,"type"],[295,10,353,12],[295,12,353,14],[296,4,354,4],[296,5,354,5],[297,4,355,4,"subscribeStorage"],[297,20,355,20],[297,22,355,22],[298,6,356,8,"description"],[298,17,356,19],[298,19,356,21],[298,72,356,74],[299,6,357,8],[300,6,358,8],[301,6,359,8],[302,6,360,8],[303,6,361,8,"params"],[303,12,361,14],[303,14,361,16],[303,15,362,12],[304,8,363,16,"isOptional"],[304,18,363,26],[304,20,363,28],[304,24,363,32],[305,8,364,16,"name"],[305,12,364,20],[305,14,364,22],[305,20,364,28],[306,8,365,16,"type"],[306,12,365,20],[306,14,365,22],[307,6,366,12],[307,7,366,13],[307,8,367,9],[308,6,368,8,"pubsub"],[308,12,368,14],[308,14,368,16],[308,15,369,12],[308,24,369,21],[308,26,370,12],[308,44,370,30],[308,46,371,12],[308,66,371,32],[308,67,372,9],[309,6,373,8,"type"],[309,10,373,12],[309,12,373,14],[310,4,374,4],[310,5,374,5],[311,4,375,4,"traceBlock"],[311,14,375,14],[311,16,375,16],[312,6,376,8,"description"],[312,17,376,19],[312,19,376,21],[312,79,376,81],[313,6,377,8,"isUnsafe"],[313,14,377,16],[313,16,377,18],[313,20,377,22],[314,6,378,8,"params"],[314,12,378,14],[314,14,378,16],[314,15,379,12],[315,8,380,16,"name"],[315,12,380,20],[315,14,380,22],[315,21,380,29],[316,8,381,16,"type"],[316,12,381,20],[316,14,381,22],[317,6,382,12],[317,7,382,13],[317,9,383,12],[318,8,384,16,"name"],[318,12,384,20],[318,14,384,22],[318,23,384,31],[319,8,385,16,"type"],[319,12,385,20],[319,14,385,22],[320,6,386,12],[320,7,386,13],[320,9,387,12],[321,8,388,16,"name"],[321,12,388,20],[321,14,388,22],[321,27,388,35],[322,8,389,16,"type"],[322,12,389,20],[322,14,389,22],[323,6,390,12],[323,7,390,13],[323,9,391,12],[324,8,392,16,"name"],[324,12,392,20],[324,14,392,22],[324,23,392,31],[325,8,393,16,"type"],[325,12,393,20],[325,14,393,22],[326,6,394,12],[326,7,394,13],[326,8,395,9],[327,6,396,8,"type"],[327,10,396,12],[327,12,396,14],[328,4,397,4],[328,5,397,5],[329,4,398,4,"trieMigrationStatus"],[329,23,398,23],[329,25,398,25],[330,6,399,8,"description"],[330,17,399,19],[330,19,399,21],[330,50,399,52],[331,6,400,8,"isUnsafe"],[331,14,400,16],[331,16,400,18],[331,20,400,22],[332,6,401,8,"params"],[332,12,401,14],[332,14,401,16],[332,15,402,12],[333,8,403,16,"isHistoric"],[333,18,403,26],[333,20,403,28],[333,24,403,32],[334,8,404,16,"isOptional"],[334,18,404,26],[334,20,404,28],[334,24,404,32],[335,8,405,16,"name"],[335,12,405,20],[335,14,405,22],[335,18,405,26],[336,8,406,16,"type"],[336,12,406,20],[336,14,406,22],[337,6,407,12],[337,7,407,13],[337,8,408,9],[338,6,409,8,"type"],[338,10,409,12],[338,12,409,14],[339,4,410,4],[340,2,411,0],[340,3,411,1],[341,0,411,2],[341,3]],"functionMap":{"names":["<global>"],"mappings":"AAA"},"hasCjsExports":false},"type":"js/module"}]} |